Re: [expert] Playmidi reports `/dev/sequencer unknown' with Soundblaster PCI64V

2001-06-19 Thread Peter Møller Neergaard

On June 18, 2001, Laura Conrad wrote:

LC As I said, it's probably worth downloading alsaconf and letting it
LC figure this stuff out.  For some reason, mandrake didn't include
LC it with the 8.0 alsa stuff.

I have done so.  The only difference between your setup and mine is
the choice of sound card.

LC I'd be surprised, because I had this working on Mandrake 6.x.  My
LC guess is that you aren't loading all the right driver modules.
LC Here's what I has on 6.x in /etc/conf.modules:

Thanks, I tried downloading it.  However, sfxload still gave me an
error message that I do not have an AWE device.

And then, finally, after trying an evaluation version of the
commercial oss, I found the source of all my troubles:  though the
Ensoniq chip has MIDI support, my specific Card,the AudioPCI, does
not support MIDI playback (wave tables) in the hardware.  (I would
never have guessed that from the manual that to has the usual Windows
non-distinction between hardware and software.)

So I followed the advice that Oscar wrote on June 18, 2001, :

O On the other hand, If you can't config midi device, you always can
O use timidity to play midi files (it uses midi to wave). It's really
O good!.  

Thanks! AT LAST IT WORKED!

I really appreciate all your help and patience with trying to get the
card to work correctly.

Best

Peter
-- 
http://cs-people.bu.edu/turtle/contact.html
``Deserves death! I daresay he does. Many that live deserve death. 
And some that die deserve life. Can you give it to them?  
Then do not be too eager to deal out death in judgement.'' -- Tolkien





Re: [expert] GNU-Cash nightmare..... Pls Help me out .

2001-06-19 Thread Steve Kieu

Hi,

I fixed that problem but anohter one follows, in fact
I am dissapointed with guppi, dont know if they
release stable release it should not be like that.
Configure scripts doesn't detect system correctly,
after running configure without problem, there are
many when running make. Like libdb1 ; my system at
first has not installed the devel package, configure
doesn't say anything, until I ran make and ld gives me
: -ldb1 not found ! (sigh)

Now that error got me stumped. Please help.

../libguppiplot/.libs/libguppiplot.so: undefined
reference to `glade_xml_get_widget'
../libguppiplot/.libs/libguppiplot.so: undefined
reference to `glade_xml_new'
collect2: ld returned 1 exit status
make[3]: *** [demo] Error 1


Thank you all,



=
S.KIEU

_
http://messenger.yahoo.com.au - Yahoo! Messenger
- Voice chat, mail alerts, stock quotes and favourite news and lots more!




[expert] Netfilter DNAT????

2001-06-19 Thread rob1tt

I am trying to set up net filter so that.

anyone on the Internet, connects to port 80 (http) on eth0 on ip 
212.xxx.xxx.44.

The request is transparantly forwarded out on eth1 to ip 212.xxx.xxx.43 on 
port 80 (a second machine)

As I understand It this can be done with DNAT. Is this correct?

if so, should the following work.

(modules iptable and iptable_nat are loaded (among other)

so.

# turn on forwarding (seems to set the value ok)
echo 1  /proc/sys/net/ipv4/ip_forward

#add the prerout chain (is this necessary, it does not show up as standard)
iptables -N PREROUTING

# Set the default policies
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP
iptables -t nat -P PREROUTING DROP

#set ping to work.
iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
iptables -A INPUT -p icmp --icmp-type echo-reply -j ACCEPT

#Set the forward
iptables -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to 212.219.204.43


I have tried a few combinations of the above, the chain appears and looks 
ok but when i try to connect it just times out.
my routing is ok as I can ping the machines ok.

Anyone got any ideas?

Rob.





[expert] LM 8.0 - Pbm with USB printer Epson Stylus Photo 870

2001-06-19 Thread Frederic Soulier

Hi,

The only time I could print using the USB port of my printer was during
the installation,
since then trying to use the USB port has locked my system hard more
than once :(
(printing from the // port works fine)

I have added cups, usb and usbd to /etc/security/msec/server.4 and
/etc/security/msec/server.5

My cups packages:
 cups-1.1.7-1.1mdk
 cups-common-1.1.7-1.1mdk
 libcups1-1.1.7-1.1mdk
 libcups1-devel-1.1.7-1.1mdk

I had a look at:

http://forum.mandrakesoft.com/article.php?sid=944mode=threadorder=0thold=0
but if I try to use printerdrake, first if I create a new printer it
does not ask
on which port I want it (it should at least detect both // and USB), it
seems
to default to USB (that's how ep870_3 was created, see lpstat below) and
when I want
to test it, the machine locks up after 2/3 seconds of printing...

#service usbd status (before printer switched on)
usbd dead but pid file exists

So I restart it...
#service cups restart

#service usbd status (before printer switched on, after restart)
usbd (pid 11139) is running...

 printer being switched on
/var/log/messages
Jun 19 10:33:26 wallaby kernel: hub.c: USB new device connect on
bus1/2/3, assigned device number 6
Jun 19 10:33:26 wallaby kernel: printer.c: usblp0: device node
registration failed
Jun 19 10:33:26 wallaby kernel: printer.c: usblp0: USB Bidirectional
printer dev 6 if 0 alt 0


$lpstat -t (printer is switched on)
 scheduler is running
 system default destination: ep870_1
 device for ep870_1: parallel:/dev/lp0
 device for ep870_2: parallel:/dev/lp0
 device for ep870_3: usb:/dev/usb/lp0
 ep870_1 accepting requests
 ep870_2 accepting requests
 ep870_3 accepting requests
 printer ep870_1 is idle.
 printer ep870_2 is idle.
 printer ep870_3 disabled -
 Unable to open USB port device file: No such device
 ep870_3-4   root242688   Sun Jun 17
12:09:49 2001


...
 printer being switched off
Jun 19 10:36:13 wallaby kernel: usb.c: USB disconnect on device 6
Jun 19 10:36:13 wallaby kernel: usb.c: deregistering driver usblp

#service usbd status (after printer switched off)
usbd dead but pid file exists


note: I have got an external USB drive using usb-storage and a USB Web
cam
  that work just fine, so the pbm seems to be USB printer specific.

Any help appreciated.

Cheers,
Fred




Re: [expert] GNU-Cash nightmare..... Pls Help me out .

2001-06-19 Thread Steve Kieu

Hi,

Yes I got python,you can see...

[sk@steve linux]$ rpm -q -a | grep python
python-2.0-9mdk
python-numeric-17.3.0-3mdk
rpm-python-4.0-26mdk
python-devel-2.0-9mdk
[sk@steve linux]$ 

[sk@steve linux]$ rpm -q -a | grep xml
libxml-devel-1.8.11-1mdk
libxml-1.8.11-1mdk
[sk@steve linux]$ 

Back the binary package, I got exact the problem which
has been reported several times in the gnucash
mailling list, when start gnucash it complains about
not defined
PYTHONHOME ; then import site failled then aborted
(sorry I could not get the exact message). If I
`export PYTHONHOME=/usr/lib/python2.0 then the first
line gone but the rest is still...

here are the packages I downloaded and install:

libguppi11-0.35.5-6mdk.i586.rpm
gnucash-1.6.0-1.i586.rpm
g-wrap-1.1.10-2mdk.i586.rpm

Thank you for your help


--- Arnold Troeger [EMAIL PROTECTED] wrote: 
Steve Kieu wrote:
 
  Hi,
 
  It is really a nightmare. I downloaded
  gnugnucash-1.6.0-1.i586.rpm
  from gnucash site and happy to see that it is
 packaged
  for LM 8.0; Install it using rpm, after satisfying
 all
  dependancies ; But when I start gnucash it says:
  about not defined PYTHONHOME bla bla..; I  search
 and
  find that many people having the same and  I  did
 try
  to compile guppi with the hope that I could
  --disable-python in guppi
 
  But when I configure the source Guppi 0.35.5 I got
 the
  error message
 
  checking for GDK_PIXBUF - version = 0.8.0... yes
  checking for GnomeCanvasPixbuf libraries =
 0.8.0...
  Unknown library `print'
  configure: error: You need at least GNOME Canvas
  Pixbuf 0.8.0 for this version of Guppi3
 
  What should I do next?
 
  Thanks in advance.
 
  =
  S.KIEU
 
 

_
  http://messenger.yahoo.com.au - Yahoo! Messenger
  - Voice chat, mail alerts, stock quotes and
 favourite news and lots more!
 
 Steve,
 Let me look at this tonight when I get home.  I
 built that RPM and have it
 working.  Do you have python installed on your
 machine?  Guppi and g-wrap were
 the only two packages I had to build from source. 
 The python packages I got
 from the Mandrake 8.0 CDs
 
 Best regards,
 Arnold
 
 
 --
 Arnold Troeger  Unocal
 Thailand
 Phone:  011-66-2-545-5456   5th Floor,
 Tower 3, SCB Park Plaza
 FAX:011-66-2-545-5374   19
 Ratchadapisek Road, Chatuchak
 Email:  [EMAIL PROTECTED]   Bangkok
 10900, Thailand


 Microsoft Windows:  for when your machine is just
 too fast
 
 
 


=
S.KIEU

_
http://messenger.yahoo.com.au - Yahoo! Messenger
- Voice chat, mail alerts, stock quotes and favourite news and lots more!




Re: [expert] Logitech Wingman Force 3D Joystick

2001-06-19 Thread etharp

I have the same joystick, I was wondering what games do you intend to use it 
for? 

On Tuesday 19 June 2001 01:01, Andreas J. Guelzow wrote:
 Hi,

 does anybody have succeeded in using this joystick with Mandrake 8.0
 (kernel 2.4.x)?

 Thanks for any pointers.

 my experience (while trying a few things)

 info:Jun 18 14:40:49 kirkman kernel: usb.c: registered new driver usbdevfs
 info:Jun 18 14:40:49 kirkman kernel: usb.c: registered new driver hub
 info:Jun 18 14:40:49 kirkman kernel: usb-uhci.c: $Revision: 1.251 $ time
 23:13:16 Apr 15 2001
 info:Jun 18 14:40:49 kirkman kernel: usb-uhci.c: High bandwidth mode
 enabled info:Jun 18 14:40:49 kirkman kernel: usb-uhci.c: USB UHCI at I/O
 0xd400, IRQ 9
 info:Jun 18 14:40:49 kirkman kernel: usb.c: new USB bus registered,
 assigned bus number 1
 info:Jun 18 15:09:46 kirkman kernel: usb.c: registered new driver iforce

 warnings:Jun 18 14:40:50 kirkman kernel: usb.c: USB device 2 (vend/prod
 0x46d/0xc283) is not claimed by any active driver.
 warnings:Jun 18 15:13:24 kirkman kernel: usb.c: USB device 3 (vend/prod
 0x46d/0xc283) is not claimed by any active driver.

 Andreas




[expert] LM 8.0 - Samba timeout pbm

2001-06-19 Thread Frederic Soulier

Hi

I have got Samba running on my LAN
 1 Samba server
 1 Windows 2000 client (laptop)
 1 Windows 2000 client (vmware)


samba-2.0.9-1.3mdk
samba-common-2.0.9-1.3mdk
samba-client-2.0.9-1.3mdk

It works but I often get the fowlloing messages from either client:
 The semaphore timeout period has expired
when I try to connect to one of the computer on the network or to a
network share.

Then if I retry a few seconds later, it works...
The ennoying thing is that it takes a while for the client to give this
message
(20 seconds at least) before you can retry.

note: it happened with 7.1, 7.2 as well but I have never been able to
pinpoint the
  cause of this problem

I have just configured Samba at work on a RH 7.0 machine (yeah, it is
sort of
difficult to get Linux in a company, then when you succeed they buy
RH...)
and I do not get this error when I access the Linux box shown as Samba
server...

I have trying to find answers elsewhere, some people seem to get this
pbm as well
but I could not find much explanation.

Any help much appreciated.

Cheers,
Fred




RE: [expert] LM 8.0 - Pbm with USB printer Epson Stylus Photo 870

2001-06-19 Thread Kevin Krieser

I had the same problem with LM8 and an USB printer.

I ended up fixing it in a roundabout way, since I had problems with IRQ
sharing (a SCSI card and sound card was sharing an IRQ with the USB port,
and the sound card gave me staticly sound, and the SCSI card was giving me
parity errors).  I ended up moving my sound card to a different port, and
building a customized kernel from the clean 2.4.4 kernel sources.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Frederic Soulier
Sent: Tuesday, June 19, 2001 5:05 AM
To: [EMAIL PROTECTED]
Subject: [expert] LM 8.0 - Pbm with USB printer Epson Stylus Photo 870


Hi,

The only time I could print using the USB port of my printer was during
the installation,
since then trying to use the USB port has locked my system hard more
than once :(
(printing from the // port works fine)

I have added cups, usb and usbd to /etc/security/msec/server.4 and
/etc/security/msec/server.5

My cups packages:
 cups-1.1.7-1.1mdk
 cups-common-1.1.7-1.1mdk
 libcups1-1.1.7-1.1mdk
 libcups1-devel-1.1.7-1.1mdk

I had a look at:

http://forum.mandrakesoft.com/article.php?sid=944mode=threadorder=0thold=
0
but if I try to use printerdrake, first if I create a new printer it
does not ask
on which port I want it (it should at least detect both // and USB), it
seems
to default to USB (that's how ep870_3 was created, see lpstat below) and
when I want
to test it, the machine locks up after 2/3 seconds of printing...

#service usbd status (before printer switched on)
usbd dead but pid file exists

So I restart it...
#service cups restart

#service usbd status (before printer switched on, after restart)
usbd (pid 11139) is running...

 printer being switched on
/var/log/messages
Jun 19 10:33:26 wallaby kernel: hub.c: USB new device connect on
bus1/2/3, assigned device number 6
Jun 19 10:33:26 wallaby kernel: printer.c: usblp0: device node
registration failed
Jun 19 10:33:26 wallaby kernel: printer.c: usblp0: USB Bidirectional
printer dev 6 if 0 alt 0


$lpstat -t (printer is switched on)
 scheduler is running
 system default destination: ep870_1
 device for ep870_1: parallel:/dev/lp0
 device for ep870_2: parallel:/dev/lp0
 device for ep870_3: usb:/dev/usb/lp0
 ep870_1 accepting requests
 ep870_2 accepting requests
 ep870_3 accepting requests
 printer ep870_1 is idle.
 printer ep870_2 is idle.
 printer ep870_3 disabled -
 Unable to open USB port device file: No such device
 ep870_3-4   root242688   Sun Jun 17
12:09:49 2001


...
 printer being switched off
Jun 19 10:36:13 wallaby kernel: usb.c: USB disconnect on device 6
Jun 19 10:36:13 wallaby kernel: usb.c: deregistering driver usblp

#service usbd status (after printer switched off)
usbd dead but pid file exists


note: I have got an external USB drive using usb-storage and a USB Web
cam
  that work just fine, so the pbm seems to be USB printer specific.

Any help appreciated.

Cheers,
Fred






Re: [expert] Wine without Windows...

2001-06-19 Thread Mike Rambo

Vincent A. Primavera wrote:
 
 Hello,
 I understand that it is possible to run Wine without having Windows
 installed previously...  Has anyone done this?  And if so, how is it working
 out?  With which applications?
 
 Thank you,
 Vincent A. Primavera

If you mean without having a full blown windows install online you are
correct. If you mean without any part of windows, that is problematic.

You do not necessarily need a full windows install to run windows apps
under wine but you usually will need some of the windows dll's to get
most apps to work. We use wine to run a database server for some library
software most of the schools in the district use. The database server
(FAIRCOM) is designed to run as a NT service but will also run quite
happily in the foreground under wine on a linux server but we had to
have something like 8 or 10 of the windows dll's to make it work. I have
had similar experiences with the other apps I've tried (although that is
only a couple of packages).

Hope this helps.


-- 
Mike Rambo
[EMAIL PROTECTED]




Re: [expert] gtk-- rpms

2001-06-19 Thread Laurent Duperval

On 18 Jun, don wrote:
 On Monday 18 June 2001 12:44, you wrote:
 Hi,

 Where does one fing the gtk-- rpms? I looked on rpmfind.net but it isn't
 there. It also doesn't look like is distributed with the 8.0 distro.

 Thanks,

 L
 
 Acrually the gtk libraries are included in the GNOME RPMS
 and KDE RPMS
 

These aren't the gtk libraries, they're the C++ bindings for gtk+.

L

-- 
Laurent Duperval mailto:[EMAIL PROTECTED]

Ne vous moquez pas maître. C'est le titillement de la recherche scientifique
qui me fit sortir du lit, malgré l'aube matinale de l'après-midi!
   -Le disciple





[expert] mdk 8, libsafe, rebuilding srpms

2001-06-19 Thread expert-mandrake

Hi!

Can somebody tell me the reason why all the srpms i rebuild
are dependent on libsafe?

I also don't understand why the other packages keep on looking
for libsafe even if it is already installed.

I already tried removing libsafe-2.0-2mdk and installing
libsafe-2.0-3mdk but it did not solve the problem.

 $ cat /etc/mandrake-release
 Linux Mandrake release 8.0 (Traktopel) for i586
 
 $ rpm -ivh gftp-2.0.8-1.1mdk.i686.rpm
 error: failed dependencies:
 libsafe.so.2.0 is needed by gftp-2.0.8-1.1mdk
 
 $ rpm -ivh libsafe-2.0-3mdk.i686.rpm
 error: failed dependencies:
 libsafe.so.2.0 is needed by libsafe-2.0-3mdk
 
 $ rpm -Uvh libsafe-2.0-3mdk.i686.rpm
 error: failed dependencies:
 libsafe.so.2.0 is needed by libsafe-2.0-3mdk
 
 $ rpm -qa | grep libsafe
 libsafe-2.0-2mdk
 
 $ rpm -ql libsafe
 /lib/libsafe.so.2
 /lib/libsafe.so.2.0/
 CUT





[expert] multiple monitors

2001-06-19 Thread Magnus Stenemo

Hello!

I've got two graphics cards, one pci and one agp.

I would like to have /dev/tty6 to point to the pci card. That card is 
connected to my TV so I can watch divx on that.

Does anyone got any idea of how I could set this up??

//Magnus




[expert] Installer Problems?

2001-06-19 Thread Tim Hermans

Is it just me or is the Mandrake installer incredibly buggy?

I started with Mandrake at version 7.0.  I have since upgraded through 7.1,
7.2, and am now trying 8.0.

The upgrade from 7.0 to 7.1 went smoothly and easily.  But going from 7.1 to
7.2 was even easier:  the installer bypassed any options I may have wanted
and just did its own thing.  Now going from 7.2 to 8.0 seems even worse.

Going to 7.2 I chose expert mode and Update.  The installer quickly went
straight to Install system.  But it did not allow me to choose which
packages I wanted to upgrade.  OK, I thought, it'll just figure out what
packages I have and upgrade those.  But instead it seems to have installed
pretty much every package on the CD's.  It asked me for all four CDs.

When it finished it had installed stuff I had removed (like ALL of KDE), and
it had removed some of what I had installed later (that were part of the
Mandrake suite, like ncftp).  I was pretty annoyed.

There was no way to cancel, the system did not respond to mouse clicks.

Now upgrading to 8.0 it looks ominously worse.  My mouse does not work at
all.  I choose Expert and Update and am asked to Configure mouse.
None of the options I choose, including the one which has always worked
before, have any effect.

If I choose No mouse  I get the following error:  unknown device none
(caller is install_steps_gtk:/usr/bin/perl-install/install_steps_gtk.pm:
192).

I can get no further than this step.

I notice too the information box at the bottom of the screen is often wrong
or out of sync, and the same goes for the list of tasks on the left of the
screen.  Finished tasks get a green star, in process ones get a gold, and
upcoming ones get a red.  Right now I am configuring a mouse, but the next
task, which I have not yet got to, Choose your keyboard, already has a
green star.

Has anyone else seen this?By the way I have seen these same things on 3
very different systems (two desktops and one laptop), so it's not just some
hardware anomaly.

The graphics keep getting prettier.  Which is nice.

Tim





[expert] Installation type

2001-06-19 Thread pineault

Hi:

I am not a developper but need to be able to compile
a number of programs developed by others.  In order
to have the compilers, libraries etc... required,
do I need to choose Development or is it OK to
install as a Workstation?

Also I would like to stick to Xfree86-3.  Do I have
to do an expert install for that or can I fix that
after installation?

Thanks for your time,

Serge Pineault




Re: [expert] reboot/halt freeze

2001-06-19 Thread Tom Welsh

I looked at the links and they appear intact as you described them.  There
is one other error message I get before it freezes that might be
informative:

Mainloop returned consoleInit: no such device.

Thanks
Tom
- Original Message -
From: Jay DeKing [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 18, 2001 7:08 PM
Subject: Re: [expert] reboot/halt freeze


 I had the same problem, sans the modprobe error. It confounded me for
some
 time, but I finally tracked this down.

 Check your /etc/init.d/rc0.d and /etc/init.d/rc6.d directories for links
to
 killall - mine is S00killall in both directories. On my machine they are
 links to ../init.d/killall.

 Then check /etc/init.d/rc0.d for a link to halt. Mine is S01halt, and it
 links to ../init.d/halt.

 Finally, check /etc/init.d/rc6.d for a link to reboot. Mine is
S01reboot,
and
 it links to ../init.d/halt as well because halt serves both to shut down
and
 to reboot the machine.

 All of these links were suddenly missing on my machine - not sure why. I
 recreated them, and now it shuts down and reboots fine.

 Good luck,
 Jay
 --
 Support your local law enforcement agency -
  this week commit the crime of your choice!


 On Monday 18 June 2001 17:12, Tom Welsh wrote:
  I have recently have had problems rebooting/shutting down (it was fine
for
  a couple of weeks after installing 8.0). The console will freeze with
the
  following last two errors:
 
  INIT: no more processes in the this
  runlevel.
  modprobe: cant locate module
  char-major-13.
 
  Basically I cannot type anything at the console. If I switch to a
  different virtual console I will get a login prompt but wont be able
to
  type anything in. Also, if I slogin/telnet to the machine, I can get
it
to
  reboot, but not at the console.
 
  Any Ideas?
 
  Thanks









Re: [expert] File Listing Of All Ports - In Search Of...

2001-06-19 Thread Rusty Carruth

Sevatio [EMAIL PROTECTED] wrote:
 Hi,
 
 I'm in search of a file that lists all ports and their descriptions.  
 Could someone help me recall the location of this file?

/etc/services maybe?

rc





RE: [expert] File Listing Of All Ports - In Search Of...

2001-06-19 Thread David Joham


greetings!

/etc/services is probably what you are looking for.

HTH

David

-Original Message-
From: Sevatio [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 19, 2001 11:40 AM
To: [EMAIL PROTECTED]
Subject: [expert] File Listing Of All Ports - In Search Of...


Hi,

I'm in search of a file that lists all ports and their descriptions.  
Could someone help me recall the location of this file?

TIA,
Sevatio




[expert] how to scroll 3lscroo with wheelmouse?

2001-06-19 Thread mp

hy!
i suppose lm8 uses imwheel and the /etc/imwheel.rc.
I looked at the man imwheel and, uff, i dont get a single word of it. 

Can anyone tell me which option to change, so that a wheel scroll
doesnt scroll a page up or down but only 3 lines a time?
thank you!
philipp




Re: [expert] GNU-Cash nightmare..... Pls Help me out .

2001-06-19 Thread Dimitris Sagias

Updating to Python 2.1 from cooker did the trick for me.

On Monday 18 June 2001 05:17 pm, Steve Kieu wrote:
 Hi,

 It is really a nightmare. I downloaded
 gnugnucash-1.6.0-1.i586.rpm
 from gnucash site and happy to see that it is packaged
 for LM 8.0; Install it using rpm, after satisfying all
 dependancies ; But when I start gnucash it says:
 about not defined PYTHONHOME bla bla..; I  search and
 find that many people having the same and  I  did try
 to compile guppi with the hope that I could
 --disable-python in guppi

 But when I configure the source Guppi 0.35.5 I got the
 error message

 checking for GDK_PIXBUF - version = 0.8.0... yes
 checking for GnomeCanvasPixbuf libraries = 0.8.0...
 Unknown library `print'
 configure: error: You need at least GNOME Canvas
 Pixbuf 0.8.0 for this version of Guppi3

 What should I do next?

 Thanks in advance.


 =
 S.KIEU

 ___
__ http://messenger.yahoo.com.au - Yahoo! Messenger
 - Voice chat, mail alerts, stock quotes and favourite news and lots more!




[expert] apache and php

2001-06-19 Thread Doug Gough

I've read some of the docs, looked through the config files, and puzzled 
over this for 2 whole days.I can't get Apache to treat php files as 
anything other than plain text. I know I'm missing something obvious, but I 
don't know what. I wonder if someone who has php working with apache would 
be willing to send me thier config files (httpd.conf, commonhttpd.conf, ?) 
or at least the relevant parts, so I could compare them with my own.

Hal Wigoda kindly responded to my first request as follows:

You have to add the php_modiule to apache
and modify the apache httpd.conf file to process php files.

I have done this ( I think) but still no luck. There is a test in the 
httpd.conf file that says:
IfDefine HAVE_PHP4
LoadModule php4_module  extramodules/libphp4.so
/IfDefine

HAVE_PHP4 is obviously some kind of test, but what is it testing? According 
to the Apache docs, HAVE_PHP4 would have to return a true value in order 
for the module to load. Apparently it is not returning true, even though 
I have installed PHP4 from the Mandrake RPM. Does support for this module 
have to be defined when Apache is compiled, even though it is a DSO? (or is 
it a DSO?)

Anyway, I am thoroughly confused, and any help would be appreciated :-)


Thank You
Doug Gough
Computer Services
Pacific Academy






Re: [expert] simple Ping question

2001-06-19 Thread Pierre Fortin

brian wrote:
 
 Can someone explain something about the response I get from some ping test?
 
 At work I have the whole Class C subnet x.x.77.1-255. When I ping from an
 internal PC (x.x.77.216) to an IP that no PC's are using(x.x.77.201), I get
 a resonse of Destination Host Unreachable.

This means the destination is not in your routing table which is checked before
ever trying to send a ping into the local void.

 If I ping the same IP (x.x.77.201) from home (totally different IP subnet)  I
 get no response at all. The pings just fall into the void.

Expected.

 Why is there a difference in the response I receive internally and
 externally?

Double-check x.x.77.216's config, especially the netmask.  
Any chance it's 255.255.255.240 or thereabouts...?

What's the output of route -n...?

 -Brian

Pierre




[expert] Help please: file size limit exceeded

2001-06-19 Thread s

Hi all, I sure could use some help.  As the subject states this is my problem 
on my gateway machine.  I have used reiserfs and interactive bastille.  I 
tried to reconfigure bastille and told it not limit number of process and I 
put 'ulimit -f unlimited' in my /etc/profile file (per the only english 
suggestion I could find on google).  This occurs when I try to su to root 
(pretty important task for me).   I can still open other apps and even log in 
as root and do stuff, but not su to root (is the only thing I've identified 
as a problem as of yet).

Anyone know how I can fix this, even at the risk of giving up a tad of 
security?  

TIA,
-s





Re: [expert] apache and php

2001-06-19 Thread Craig Sprout

Doug Gough wrote:
 
 I've read some of the docs, looked through the config files, and puzzled
 over this for 2 whole days.I can't get Apache to treat php files as
 anything other than plain text. I know I'm missing something obvious, but I
 don't know what. I wonder if someone who has php working with apache would
 be willing to send me thier config files (httpd.conf, commonhttpd.conf, ?)
 or at least the relevant parts, so I could compare them with my own.

Doug--

You are on the right track.  The relevant portions are as follows:

AddType application/x-httpd-php .php .php3
AddType application/x-httpd-php-source .phps

(I left the .php3 in there, as I have several scripts that have the
.php3 extension.)

This should do the trick.

-- 
Craig Sprout
Network Administrator
Crown Parts and Machine, Inc.
http://www.crownpartsandmachine.com





Re: [expert] simple Ping question

2001-06-19 Thread Al Andersen

Talk to your SA at work and ask them if your firewall is configured to ignore 
pings from the outside world. If it is, you'll never get an acknowledgement 
for any ping you send there from an outside connection.

-Al

brian wrote:

 Can someone explain something about the response I get from some ping test?

 At work I have the whole Class C subnet x.x.77.1-255. When I ping from an
 internal PC (x.x.77.216) to an IP that no PC's are using(x.x.77.201), I get
 a resonse of Destination Host Unreachable.

 If I ping the same IP (x.x.77.201) from home (totally different IP subnet) 
 I get no response at all. The pings just fall into the void.

 Why is there a difference in the response I receive internally and
 externally?

 -Brian




[expert] So many problems...

2001-06-19 Thread Lyric


Alright, I'm sititng here trying to get everythign to play nice, but
finding problems left and right

Here are the two key problems I've got now,  any help would be
appreciated;

1.  The Matrox drivers for the G450 Dual Head card (running in single head
mode right now) aren't working properly.  Everytime I try to exist from x,
or change to a different tty, I get a black screen and a message from teh
monitor that the scan fredquency is out of range.  How do I stop this...
While most of what I do will be in console, I'm using this to replace my
windows machine as well so I need both, without rebooting...

2.  Every tiem I try to access a disc in either the IDE CD-ROM drive or
the SCSI CD-R/RW drive I get a kernel panic, cannot mount read/write
filesystem.  I can't live with that at all.  Most of the data I need to
replace on this machine is on CD-R discs now.

Any help with these two problems would be much appreciated.  The IDE
CD-ROM drive is actually a Pioneer DVD-ROM 114 drive and the CD-R/RW drive
is a SCSI Sony CRX140S.  I am using correct SCSI termination on that
drive.

Thanks


Current Linux kernel 2.4.3-20mdk uptime: 14 days 18 hours 48 minutes.





[expert] xcdroast segfaults

2001-06-19 Thread Francisco Alcaraz Ariza



Go to Mandrake cooker; select a server and dowload:

cdrecord-1.10-1mdk.i586.rpm
cdrecord-cdda2way-1.10-1.i586.rpm
mandrakedesk-8.0-10mdk.i586.rpm
mkisofs-1.13-7mdk.i586.rpm
xcdroast-0.98-8mdk.i586.rpm

Put them in a directory and type from that:
rpm -Uvh *.rpm --force --nodeps

And then you'll can run xcdroast as root and as user, without core dump
problem.

Good luck!

Francisco Alcaraz
Murcia (Spain)





Re: [expert] xcdroast segfaults

2001-06-19 Thread silkythreads

http://www.xcdroast.org/

Right there on the HOME page.  hope it helps you.

Wolfgang Bornath wrote:

 Hi folks,

 Installed version is LM 8.0 on a plain normal desktop w/ 192MB RAM.
 Today it seemed to be a good day to gather all my photographs and burn
 them on CD. I have a SCSI connected Plextor writer.

 First I was very surprised that LM 8.0 doesn't include xcdroast. I
 couldn't find it on all 7 CDs (PowerPack Edition). Then I looked at
 rpmfind and the only xcdroast version listed there for Mandrake was in
 the cooker branch of the ftp mirror servers.

 So I d'led  xcdroast-0.98-8mdk.i586.rpm and installed it without any
 error message.

 I started the program as root and set it up. Then I made the iso file
 from all the picture directories. That went well too. But at the moment I
 clicked on the button to burn the iso to the cd xcdroast segfaulted and
 coredumped. Unfortunately I was able to repeat that twice before I gave
 up.

 Any idea?

 wobo
 --
 GPG-Fingerprint: FE5A 0891 7027 8D1B 4E3F  73C1 AD9B D732 A698 82EE
 For Public Key mailto [EMAIL PROTECTED] with Subject: GPG-Request
 ---
 ISDN4LINUX-FAQ -- Deutsch: http://www.wolf-b.de/i4l/i4lfaq-de.html

--

 [EMAIL PROTECTED]

 Registered Linux User # 166678



begin:vcard 
n:Williams;Donna
x-mozilla-html:FALSE
org:General Dynamics - Electronic Systems
adr:;;;Orlando, FL;32801;;
version:2.1
email;internet:[EMAIL PROTECTED]
title:MTS S - Software Test Engineer / IT
note;quoted-printable:Registered Linux User # 166678=0D=0A=0D=0ASmall minds discuss people=3B=0D=0AAverage minds discuss events=3B=0D=0AGreat minds discuss ideas.
fn:Donna
end:vcard



Re: [expert] xcdroast segfaults

2001-06-19 Thread silkythreads

I'm sorry it just occurred to me you might not be able to get to this
!

So... here it is..

Mandrake 8.0 default GTK-Theme crashes X-CD-Roast
   Due a bug in the eazel-engine used by Mandrake as
default theme for
   GTK-apps, X-CD-Roast segfaults when clicking on the
Write-Tracks Menu.

   NEW: Workaround for now: comment out line 2208 in
create.c
   (gtk_widget_grab_default (b1);), recompile and it
won't crash there any longer.
   Otherwise do switch to another gtk-theme.

Wolfgang Bornath wrote:

 Hi folks,

 Installed version is LM 8.0 on a plain normal desktop w/ 192MB RAM.
 Today it seemed to be a good day to gather all my photographs and burn
 them on CD. I have a SCSI connected Plextor writer.

 First I was very surprised that LM 8.0 doesn't include xcdroast. I
 couldn't find it on all 7 CDs (PowerPack Edition). Then I looked at
 rpmfind and the only xcdroast version listed there for Mandrake was in
 the cooker branch of the ftp mirror servers.

 So I d'led  xcdroast-0.98-8mdk.i586.rpm and installed it without any
 error message.

 I started the program as root and set it up. Then I made the iso file
 from all the picture directories. That went well too. But at the moment I
 clicked on the button to burn the iso to the cd xcdroast segfaulted and
 coredumped. Unfortunately I was able to repeat that twice before I gave
 up.

 Any idea?

 wobo
 --
 GPG-Fingerprint: FE5A 0891 7027 8D1B 4E3F  73C1 AD9B D732 A698 82EE
 For Public Key mailto [EMAIL PROTECTED] with Subject: GPG-Request
 ---
 ISDN4LINUX-FAQ -- Deutsch: http://www.wolf-b.de/i4l/i4lfaq-de.html

--

 [EMAIL PROTECTED]

 Registered Linux User # 166678



begin:vcard 
n:Williams;Donna
x-mozilla-html:FALSE
org:General Dynamics - Electronic Systems
adr:;;;Orlando, FL;32801;;
version:2.1
email;internet:[EMAIL PROTECTED]
title:MTS S - Software Test Engineer / IT
note;quoted-printable:Registered Linux User # 166678=0D=0A=0D=0ASmall minds discuss people=3B=0D=0AAverage minds discuss events=3B=0D=0AGreat minds discuss ideas.
fn:Donna
end:vcard



[expert] Cannot get koffice to build

2001-06-19 Thread Praedor S. Tempus

I am presently running Mandrake 8.0 with updates.

I downloaded the source rpm for the latest cooker koffice.  I do this 
periodically because, well, thus far the app has just not been really useable 
so I keep hoping that each NEXT version will get to a useable point.

The rpm is koffice-1.1-0.beta2.3mdk.src.rpm.  I try to build it but it fails 
with:
In file included from libkwordpart_la.all_cc.cc:24:
tabledia.cc:239:2: warning: #warning TODO
In file included from libkwordpart_la.all_cc.cc:4:
kwview.cc: In method `void KWView::setupPrinter (KPrinter )':
kwview.cc:684: no matching function for call to
`KPrinter::setCurrentPage (int)'
In file included from libkwordpart_la.all_cc.cc:5:
kwcanvas.cc: In method `void KWCanvas::print (QPainter *, KPrinter *)':
kwcanvas.cc:130: no matching function for call to `KPrinter::pageList
()'
make[3]: *** [libkwordpart_la.all_cc.lo] Error 1
make[3]: Leaving directory `/usr/src/RPM/BUILD/koffice-1.1/kword'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/src/RPM/BUILD/koffice-1.1/kword'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/RPM/BUILD/koffice-1.1'
make: *** [all-recursive-am] Error 2
Bad exit status from /var/tmp/rpm-tmp.77542 (%build)

Now obviously it is buildable somehow or it wouldn't be available as a binary 
rpm in cooker.  I can't simply download and install that because it is 
dependent on glibc-2.2.3 and I fear that upgrading that will wreck everything 
(anyone have any information to say it wont break stuff?  Is it safe to go 
from glibc-2.2.2 to 2.2.3?).  Has anyone managed to get this koffice to 
build?  What does the above error actually mean?  Anyone have any help to toss my way?




Re: [expert] xcdroast segfaults

2001-06-19 Thread Vincent Danen

On Tue Jun 19, 2001 at 07:25:05PM -0400, silkythreads wrote:

Or upgrade mandrake_desk from updates, which fixes the default GTK theme.

 I'm sorry it just occurred to me you might not be able to get to this
 !
 
 So... here it is..
 
 Mandrake 8.0 default GTK-Theme crashes X-CD-Roast
Due a bug in the eazel-engine used by Mandrake as
 default theme for
GTK-apps, X-CD-Roast segfaults when clicking on the
 Write-Tracks Menu.
 
NEW: Workaround for now: comment out line 2208 in
 create.c
(gtk_widget_grab_default (b1);), recompile and it
 won't crash there any longer.
Otherwise do switch to another gtk-theme.

-- 
[EMAIL PROTECTED], OpenPGP key available on www.keyserver.net
1024D/FE6F2AFD   88D8 0D23 8D4B 3407 5BD7  66F9 2043 D0E5 FE6F 2AFD
 - Danen Consulting Serviceswww.danen.net, www.freezer-burn.org
 - MandrakeSoft, Inc. Security  www.linux-mandrake.com

Current Linux kernel 2.4.3-20mdk-win4lin uptime: 1 day 1 hour 40 minutes.

 PGP signature


Re: [expert] 8.0 install fails, kernel panic.

2001-06-19 Thread Jarmo

20.6.2001 2:15:38, silkythreads [EMAIL PROTECTED] wrote:

Have you checked your machines Date/time lately ???

I got your message with this DTG -  00/06/19 01:58 AM

I'd say your year's are off a little 


OOPS!

Bran new fujitsu-siemens lifebook with win98...seems that beginning to forget
WIN-HOWTO -)

So time has nothing to do with my home computer where problem exists.

For curiosity made yesterday lm 7.2 expert/developement installation
and no problem in booting...Installation took 10 mins between cd in--
startx !!
Working like sunThink,my HW can't be reason...there must be
changes in new 8.0 what differs from 7.2 .
I'd say 7.2 is more ata-100 compatible than 8.0...

Greetings
Jarmo





Re: [expert] GNU-Cash nightmare..... Pls Help me out .

2001-06-19 Thread Steve Kieu

Hi,

I just upgraded to python 2.1 and it works ok by now.

Thanks 



=
S.KIEU

_
http://messenger.yahoo.com.au - Yahoo! Messenger
- Voice chat, mail alerts, stock quotes and favourite news and lots more!




[expert] Test (Ignore!)

2001-06-19 Thread Sergio P.Korlowsky


Test to see if my email server is working properly ;-)

sk





Re: [expert] GNU-Cash nightmare..... Pls Help me out .

2001-06-19 Thread Andrew George

On Tue, 19 Jun 2001 09:17, Steve Kieu wrote:
 Hi,

 It is really a nightmare. I downloaded
 gnugnucash-1.6.0-1.i586.rpm
 from gnucash site and happy to see that it is packaged
 for LM 8.0; Install it using rpm, after satisfying all
 dependancies ; But when I start gnucash it says:
 about not defined PYTHONHOME bla bla..; I  search and
 find that many people having the same and  I  did try
 to compile guppi with the hope that I could
 --disable-python in guppi

 But when I configure the source Guppi 0.35.5 I got the
 error message

 checking for GDK_PIXBUF - version = 0.8.0... yes
 checking for GnomeCanvasPixbuf libraries = 0.8.0...
 Unknown library `print'
 configure: error: You need at least GNOME Canvas
 Pixbuf 0.8.0 for this version of Guppi3

 What should I do next?

 Thanks in advance.

Hi
This is all part of the dependancy extravaganza that is the current Gnucash 
release (and I've got a major fear that other gtk based apps might get their 
in future).
All I can suggest, move over to Moneydance or start installing libraries and 
packages by the truckload (or even keep the existing version of gnucash 
perhaps?)

Andrew




Re: [expert] apache and php

2001-06-19 Thread OOzy Pal

Hello

Hmm this weird. All what I did is I  installed Apache
and php using the Mandrake Software Manger. Make sure
you install the following packages

mod_php-4.0.4pl1-6mdk
php-common-4.0.4pl1-6mdk
php-4.0.4pl1-6mdk

I am not sure if you actually need all of them. Just
fire up you software manager and search for php and
install the packages.


--- Doug Gough [EMAIL PROTECTED] wrote:
 I've read some of the docs, looked through the
 config files, and puzzled 
 over this for 2 whole days.I can't get Apache to
 treat php files as 
 anything other than plain text. I know I'm missing
 something obvious, but I 
 don't know what. I wonder if someone who has php
 working with apache would 
 be willing to send me thier config files
 (httpd.conf, commonhttpd.conf, ?) 
 or at least the relevant parts, so I could compare
 them with my own.
 
 Hal Wigoda kindly responded to my first request as
 follows:
 
 You have to add the php_modiule to apache
 and modify the apache httpd.conf file to process php
 files.
 
 I have done this ( I think) but still no luck. There
 is a test in the 
 httpd.conf file that says:
 IfDefine HAVE_PHP4
 LoadModule php4_module extramodules/libphp4.so
 /IfDefine
 
 HAVE_PHP4 is obviously some kind of test, but what
 is it testing? According 
 to the Apache docs, HAVE_PHP4 would have to return a
 true value in order 
 for the module to load. Apparently it is not
 returning true, even though 
 I have installed PHP4 from the Mandrake RPM. Does
 support for this module 
 have to be defined when Apache is compiled, even
 though it is a DSO? (or is 
 it a DSO?)
 
 Anyway, I am thoroughly confused, and any help would
 be appreciated :-)
 
 
 Thank You
 Doug Gough
 Computer Services
 Pacific Academy
 
 
 

=
Regards,
OOzy

What is the purpose of life?

__
Do You Yahoo!?
Spot the hottest trends in music, movies, and more.
http://buzz.yahoo.com/




Re: [expert] the kernel that won't boot...

2001-06-19 Thread Mark Weaver

ha! never mind...figured it out.  ;P

-- 

Mark
*

what knowledge I have managed to accumlate over the years
at times becomes obscured and even hidden amidst the vast
emotional onslaught of my children. You never finish being a parent.  :)
On Mon, 18 Jun 2001, Mark Weaver wrote:

 I don't know...maybe I'm missing something crucial here, but isn't the
 kernel supposed to boot after you've experienced a flawless compile? I
 can't get any of the 2.4.x kernels to boot on my Mdk 7.2 system. Just to
 see if it was a problem with ReiserFS I reloaded and changed the type of
 FS on my drives back to ext2fs and STILL when the kernel begins to boot
 it will get as far as re-mounting the ROOT fs as read/write, then this
 happens;

 Checking loopback filesystem  [ OK ]
 Mounting loopback filesystem  [ OK ]
 Setting Profile to: _ (at this point it just sits there and the cursor
   blinks until I decide to hard boot the machine)

 I was told previously that when I was running ReiserFS that there was a
 incompatable difference between the 2.2.x Reiser and the 2.4.x version of
 ReiserFS. So what stinkin profile is this silly bugger attempting to set?
 I've never seen a kernel behave this way.

 And this was a standard developer's install out-a the box. nothing
 special or fancy. Standard ext2fs partitions. As I said before I've
 changed AND freshly formatted the drives before doing this install to make
 sure that there wasn't a chance for Reiser to complain or anything.

 The kernel config was some what plain and standard in it's config. no
 strange or exotic drivers needed and the compile/make
 modules/modules_install went off without one single error.

 Any ideas?







[expert] xcdroast segfaults

2001-06-19 Thread Wolfgang Bornath

Hi folks,

Installed version is LM 8.0 on a plain normal desktop w/ 192MB RAM.
Today it seemed to be a good day to gather all my photographs and burn
them on CD. I have a SCSI connected Plextor writer.

First I was very surprised that LM 8.0 doesn't include xcdroast. I
couldn't find it on all 7 CDs (PowerPack Edition). Then I looked at
rpmfind and the only xcdroast version listed there for Mandrake was in
the cooker branch of the ftp mirror servers.

So I d'led  xcdroast-0.98-8mdk.i586.rpm and installed it without any
error message.

I started the program as root and set it up. Then I made the iso file
from all the picture directories. That went well too. But at the moment I
clicked on the button to burn the iso to the cd xcdroast segfaulted and
coredumped. Unfortunately I was able to repeat that twice before I gave
up.

Any idea?

wobo
-- 
GPG-Fingerprint: FE5A 0891 7027 8D1B 4E3F  73C1 AD9B D732 A698 82EE
For Public Key mailto [EMAIL PROTECTED] with Subject: GPG-Request
---
ISDN4LINUX-FAQ -- Deutsch: http://www.wolf-b.de/i4l/i4lfaq-de.html




Re: [expert] gtk-- rpms

2001-06-19 Thread Laurent Duperval

On 18 Jun, Julia A. Case wrote:
 Quoting Laurent Duperval ([EMAIL PROTECTED]):
 Hi,
 
 Where does one fing the gtk-- rpms? I looked on rpmfind.net but it isn't
 there. It also doesn't look like is distributed with the 8.0 distro.
 
 try
 http://www.gnome.org
 

Thanks, I thought there were Mandrake-specific binaries somewhere. Guess
not.

L

-- 
Laurent Duperval mailto:[EMAIL PROTECTED]

Je suis le plus fort! ... Je suis encore plus fort que tout à l'heure! ...
Tiens... pour me définir, le mot fort ne l'est plus assez!
  -Léonard le génie





[expert] rivafb (was: flickering)

2001-06-19 Thread Serdar Ozler

I have sent a message named flickering about my 60Hz
refresh rate problem in text mode.

I have found a solution that requires using rivafb
(framebuffer device) for nVidia's Riva and GeForce.

Now, my problem is that I cannot force Mandrake to use
this driver. I have tried to add
video=riva:800x600-32@100 to the kernel parameters
in lilo.conf, but it didn't work. I have checked dmesg
output, but there was not a message related to rivafb.

I'm using Mandrake 8.0. How can I use a special
framebuffer device???

Thanks.

=
Serdar Ozler
http://efsane.sitebest.com
http://efsane.linux.org.tr

__
Do You Yahoo!?
Spot the hottest trends in music, movies, and more.
http://buzz.yahoo.com/




[expert] File Listing Of All Ports - In Search Of...

2001-06-19 Thread Sevatio

Hi,

I'm in search of a file that lists all ports and their descriptions.  
Could someone help me recall the location of this file?

TIA,
Sevatio




[expert] latest kernel

2001-06-19 Thread A.

Hi, 

I am trying to compile the latest kernel, but I am getting a very new
error:

Makefile:194: 3rdparty/Makefile.drivers: No such file or directory
make: *** No rule to make target `3rdparty/Makefile.drivers'.  Stop.

What is the proper way to fix this problem?  Thanks

Nasa





Re: [expert] GNU-Cash nightmare..... Pls Help me out .

2001-06-19 Thread Steve Kieu

Hi,

I just upgraded to python 2.1 and it works ok by now.

Thanks 



=
S.KIEU

_
http://messenger.yahoo.com.au - Yahoo! Messenger
- Voice chat, mail alerts, stock quotes and favourite news and lots more!




[expert] cardmanager doesn't find PCMCIA

2001-06-19 Thread Marc Audard

Hi,

After putting more memory on my laptop (512 MB), the card manager
doesn't want to to load my PCMCIA card anymore.

Apparently, it complains that there is no pcmcia entry in the 
/proc/devices file (which is true indeed).

I think that it is due to the upgrade, but I wouldn't put my hand
into fire here. I think that I made some time ago an unwanted 
ifconfig eth0 up, but I wouldn't see why this is causing the
problem.

Before trying to put the old soDIMMS back to see if this is
indeed the memory upgrade, I would like to see if somebody knows
a solution.



Can folks help me?

Thanks,

Marc