Re: [expert] Temporary Path creation
James Sparenberg wrote: On Tue, 2002-12-03 at 23:03, Sridhar wrote: You can create a wrapper script for each application and including the correct path for the app. This will be valid only for the session and will not interfere with other java apps requiring different jdk's. Cheers Sridhar Sridhar, IF I understand you correctly (I'm dense please forgive me) the "startup script" I'm talking about is that wrapper script. Such so that if I where to start 2 of them at once each with it's own individual start script I'll be safe so to speak from conflict. James Yes, that's right. James Sparenberg wrote: All, I've got to set up a number of apps to use java. Problems come with the fact that as you may know not all jvm's are created equal. Some of these apps run on 1.2 some on 1.3 and others on 1.4 ... then to top it off depending on the distro the directory could be different, and each box is running all 3 apps at different times. So to address this I'm creating a "startup" script that locates the correct jre or jdk as needed and does the correct path insertion. So what I need to do. 1. discover the location of the jre/jdk I need No problem with this one a case statement is all I need. 2. Set the appropriate path ... see above. 3. Reset the path when the app is closed... Ok... step 3 is the sticking point. If I open an app using 1.2's jre then an app using 1.4's I'm winding up with a confused app because I've got two java commands in the path. or at least this is what I anticipate happening. Am I barking up the wrong tree here or.. if I'm really lucky is this one of those things that happens right without intervention on my part. James Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Temporary Path creation
On Tue, 2002-12-03 at 23:03, Sridhar wrote: > You can create a wrapper script for each application and including the > correct path for the app. This will be valid only for the session and > will not interfere with other java apps requiring different jdk's. > > Cheers > Sridhar Sridhar, IF I understand you correctly (I'm dense please forgive me) the "startup script" I'm talking about is that wrapper script. Such so that if I where to start 2 of them at once each with it's own individual start script I'll be safe so to speak from conflict. James > > James Sparenberg wrote: > > All, > > > >I've got to set up a number of apps to use java. Problems come with > > the fact that as you may know not all jvm's are created equal. Some of > > these apps run on 1.2 some on 1.3 and others on 1.4 ... then to top it > > off depending on the distro the directory could be different, and each > > box is running all 3 apps at different times. So to address this I'm > > creating a "startup" script that locates the correct jre or jdk as > > needed and does the correct path insertion. So what I need to do. > > > > 1. discover the location of the jre/jdk I need > > No problem with this one a case statement is all I need. > > 2. Set the appropriate path ... see above. > > 3. Reset the path when the app is closed... > > > > Ok... step 3 is the sticking point. If I open an app using 1.2's jre > > then an app using 1.4's I'm winding up with a confused app because I've > > got two java commands in the path. or at least this is what I > > anticipate happening. Am I barking up the wrong tree here or.. if I'm > > really lucky is this one of those things that happens right without > > intervention on my part. > > > > James > > > > > > > > > > > > > > > > > > > > Want to buy your Pack or Services from MandrakeSoft? > > Go to http://www.mandrakestore.com > > > > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Temporary Path creation
You can create a wrapper script for each application and including the correct path for the app. This will be valid only for the session and will not interfere with other java apps requiring different jdk's. Cheers Sridhar James Sparenberg wrote: All, I've got to set up a number of apps to use java. Problems come with the fact that as you may know not all jvm's are created equal. Some of these apps run on 1.2 some on 1.3 and others on 1.4 ... then to top it off depending on the distro the directory could be different, and each box is running all 3 apps at different times. So to address this I'm creating a "startup" script that locates the correct jre or jdk as needed and does the correct path insertion. So what I need to do. 1. discover the location of the jre/jdk I need No problem with this one a case statement is all I need. 2. Set the appropriate path ... see above. 3. Reset the path when the app is closed... Ok... step 3 is the sticking point. If I open an app using 1.2's jre then an app using 1.4's I'm winding up with a confused app because I've got two java commands in the path. or at least this is what I anticipate happening. Am I barking up the wrong tree here or.. if I'm really lucky is this one of those things that happens right without intervention on my part. James Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Temporary Path creation
This time James Sparenberg <[EMAIL PROTECTED]> becomes daring and writes: > All, > >I've got to set up a number of apps to use java. Problems come with > the fact that as you may know not all jvm's are created equal. Some of > these apps run on 1.2 some on 1.3 and others on 1.4 ... then to top it > off depending on the distro the directory could be different, and each > box is running all 3 apps at different times. So to address this I'm > creating a "startup" script that locates the correct jre or jdk as > needed and does the correct path insertion. So what I need to do. > > 1. discover the location of the jre/jdk I need > No problem with this one a case statement is all I need. > 2. Set the appropriate path ... see above. > 3. Reset the path when the app is closed... Save the original PATH to another non-existant environment variable before you change it, once you are done with it, change the PATH back to the saved one :) Vox -- Think of the Linux community as a niche economy isolated by its beliefs. Kind of like the Amish, except that our religion requires us to use _higher_ technology than everyone else. -- Donald B. Marti Jr. msg62122/pgp0.pgp Description: PGP signature
[expert] Temporary Path creation
All, I've got to set up a number of apps to use java. Problems come with the fact that as you may know not all jvm's are created equal. Some of these apps run on 1.2 some on 1.3 and others on 1.4 ... then to top it off depending on the distro the directory could be different, and each box is running all 3 apps at different times. So to address this I'm creating a "startup" script that locates the correct jre or jdk as needed and does the correct path insertion. So what I need to do. 1. discover the location of the jre/jdk I need No problem with this one a case statement is all I need. 2. Set the appropriate path ... see above. 3. Reset the path when the app is closed... Ok... step 3 is the sticking point. If I open an app using 1.2's jre then an app using 1.4's I'm winding up with a confused app because I've got two java commands in the path. or at least this is what I anticipate happening. Am I barking up the wrong tree here or.. if I'm really lucky is this one of those things that happens right without intervention on my part. James Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Help needed in copying files from DVD/CD to Harddisk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 02 December 2002 08:03 pm, H. Narfi Stefansson wrote: > I used the following to disable supermount: > > cp /etc/fstab /etc/fstab.with_supermount > supermount -i disable > > This will give you a new /etc/fstab file and supermount will be completely > disabled after the next reboot. > > Your problems sound typical of the supermount problems and they should go > away once you disable it. Thanks very much for the above commands. That has done the trick to get me to be able to reliable copy files from my backup cd's back to my system. Now if only someone could convince Mandrake to move on to a auto mounter that works. Supermount has been a problem for years and I see no resolution in site for it. - -- Yours, Ralph. It said Use Windows XP or better, so I installed Mandrake-Linux 9.0 Register Linux User 168814 ICQ #49993234 AIM ralphdewitt jabber.org ralphdewitt GPG Public Key available at http://www.keyserver.net Key Fingerprint = B290 C655 3CBF 3744 D896 C647 538B 4558 A3A9 65FF Kernel version 2.4.19-16mdk Current Linux uptime: 34 days 3 hours minutes. -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE97Z/0U4tFWKOpZf8RAkj4AJ9mYYqjvQsbbDj5zkqD5i3m9IaVAACeKB9T 6+UBHs709SqpoYZcPllWXrY= =Twuc -END PGP SIGNATURE- Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Opps (Cron nice -n 19 run-parts /etc/cron.daily )
bzcat: ./cancel.1.bz2 is not a bzip2 file. bzcat: ./newaliases.1.bz2 is not a bzip2 file. bzcat: ./mailq.1.bz2 is not a bzip2 file. bzcat: ./lpr.1.bz2 is not a bzip2 file. bzcat: ./lpq.1.bz2 is not a bzip2 file. bzcat: ./lprm.1.bz2 is not a bzip2 file. bzcat: ./lp.1.bz2 is not a bzip2 file. bzcat: ./lpstat.1.bz2 is not a bzip2 file. bzcat: ./aliases.5.bz2 is not a bzip2 file. bzcat: ./lpc.8.bz2 is not a bzip2 file. This is my problem now. I tried to fix the broken symlinks manually after the update commands failed, apparently, I got them wrong.. Does anyone know of a list somewhere on what should point where??? This is s standard postfix/cups mandrake 9.0 install.. regards Frank Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Colortail. A wonderful tool for adding color to your syslog or any other text file!
On Tuesday, December 3, 2002, at 09:26 PM, Vincent Danen wrote: [...] Now I have one more little dilema! I would LOVE to make this work on Mandrake security, which I'm currently running on my firewall. I get an error when I try. I thought I could just take the compiled one and run that, but no... is there anyone out here that is an expert on the security release? You're referring to SNF? You put a 9.0-compiled binary on SNF? No wonder it didn't work. SNF is based on Mandrake 7.2, which is very very different from 9.0... different compilers, different glibc, etc. Is there an rpm for this colortail thing? If there is, send the srpm to me and I'll build it on my 7.2 install and make it available. Ahhh... nevermind. Just built one quick and dirty (no deps checking, buildreq, etc.) for it. It's available on www.rpmhelp.net. If you want the one for SNF (I don't normally build 7.x stuff anymore), you'll have to get it from here: ftp.rpmhelp.net/pub/7.2/colortail Enjoy. -- MandrakeSoft Security; http://www.mandrakesecure.net/ "lynx -source http://linsec.ca/vdanen.asc | gpg --import" {FE6F2AFD: 88D8 0D23 8D4B 3407 5BD7 66F9 2043 D0E5 FE6F 2AFD} PGP.sig Description: PGP signature
Re: [expert] Colortail. A wonderful tool for adding color to your syslog or any other text file!
On Tuesday, December 3, 2002, at 09:02 PM, Lorne wrote: [...] Now I have one more little dilema! I would LOVE to make this work on Mandrake security, which I'm currently running on my firewall. I get an error when I try. I thought I could just take the compiled one and run that, but no... is there anyone out here that is an expert on the security release? You're referring to SNF? You put a 9.0-compiled binary on SNF? No wonder it didn't work. SNF is based on Mandrake 7.2, which is very very different from 9.0... different compilers, different glibc, etc. Is there an rpm for this colortail thing? If there is, send the srpm to me and I'll build it on my 7.2 install and make it available. -- MandrakeSoft Security; http://www.mandrakesecure.net/ "lynx -source http://linsec.ca/vdanen.asc | gpg --import" {FE6F2AFD: 88D8 0D23 8D4B 3407 5BD7 66F9 2043 D0E5 FE6F 2AFD} PGP.sig Description: PGP signature
[expert] Colortail. A wonderful tool for adding color to your syslog or any other text file!
Good news guys. A simple new little tool was brought to my attention. It is a simple little tool for graphically coloring information. It doesn't compile in Mandrake 9.0. It gives errors. I've been in contact with the author and he was very good at responding and giving us a patch!! Woohoo, it works!!! Here is the response from him: I put the patch on sourceforge in the colortail project there. Here's a direct link to the file: http://prdownloads.sourceforge.net/colortail/colortail-0.3.0-gcc3.patch.gz?download Now I have one more little dilema! I would LOVE to make this work on Mandrake security, which I'm currently running on my firewall. I get an error when I try. I thought I could just take the compiled one and run that, but no... is there anyone out here that is an expert on the security release? Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] hack attack analysis second attempt
Good news guys. I will send this as a new topic so that it doesn't get missed. We got sidetracked and got to discussing colortail. It is a simple little tool for graphically coloring information. It doesn't compile in Mandrake 9.0. It gives errors. I've been in contact with the author and he was very good at responding and giving us a patch!! Woohoo, it works!!! Here is the response from him: I put the patch on sourceforge in the colortail project there. Here's a direct link to the file: http://prdownloads.sourceforge.net/colortail/colortail-0.3.0-gcc3.patch.gz?download Now I have one more little dilema! I would LOVE to make this work on Mandrake security, which I'm currently running on my firewall. I get an error when I try. I thought I could just take the compiled one and run that, but no... is there anyone out here that is an expert on the security release? On Saturday 30 November 2002 01:02 pm, Lorne wrote: > On Saturday 30 November 2002 12:05 pm, Vox wrote: > > Yes, that's that :) What I do is: > > > > - turn everything back to white (too many damn colors make it hard to > > notice things for me...the default config is a pain for my eyes) > > - Mark the name of my workstation in a dark color (same with other > > workstations and servers that log on my box, different color for > > each) - Mark the name of my firewall in a bright color > > - Mark the word "root" in bright red > > - Mark IPs in yellow > > - Mark the string DPT (destination port in iptables' logging) in > > yellow > > - Mark the word ATTACK in red > > > > That simple set of rules means that whenever I see red on the top of > > my screen, it's time for me to look up and see WTH is going on. The > > yellow markers allow me to find the important information faster. > > > > I run all of this from a script that gets run when I log into > > Enlightenment, and it's permanently etched on all my virtual > > desktops :) > > > > http://people.gnulinux.org.mx/vox/shot_06-10-02_013605.jpg > > > > That's a screenshot of how it looks like, running from a silly > > script that does this: > > Most excellent!!! > > > Eterm -O --cmod-blue 50 --cmod-green 50 --cmod-red 50 -x --no-cursor \ > > --scrollbar 0 --buttonbar 0 --name tail -e /home/vox/bin/tailer > > > > And tailer is: > > > > sudo -S colortail -f --lines=7 -q -k /etc/colortail/conf.messages \ > > /var/log/messages > > > > You can grab my conf.messages from: > > > > http://people.gnulinux.org.mx/vox/conf.messages > > > > Vox, who still hates sympa Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Can't smbumount - permission denied
Why would you be using samba for mounting a linux export to a linux machine? Samba is best used for mounting win32 shares to linux or vice versa. Why not try nfs to do what nfs was made to do... drjung -- J. Craig Woods UNIX Network/System Administration http://www.trismegistus.net/resume.html Character is built upon the debris of despair --Emerson Ken Walker wrote: I smbmounted a LM9 machine from a LM8.1 machine last night to tar across some folders. The tar failed after 1Gig with " wrote only 0 of 10240 bytes, tar:error not recoverable: exiting now". Now, even as root i can't smbumount the remote share. it just says permission denied. Anybody any ideas even if i log out and then back in again, the mount is still there. Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] xine dvd playing
You may also need to do one or both of the following: 1. edit /etc/ld.so.conf and ensure that the libraries that these have installed are included 2. execute ldconfig Dan Steffen Barszus wrote: > > > input_dvd: Sorry, this plugin doesn't play encrypted DVDs. The legal status > > of CSS decryption is unclear and we can't provide such code. > > Please check http://dvd.sf.net for more information. > > input_dvd: Unable to find >VIDEO_TS.VOB< on dvd. > > input_dvd: Unable to find >VIDEO_TS.VOB< on dvd. > > xine: cannot find input plugin for this MRL > > xine_stop > > Oh didn't read that :)) Try xine-d5d (plf) > > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Dual athlon problem with kernel >2.2
On Monday 02 December 2002 07:48 pm, Paul Fotheringham scribbled in crayon on a yellow legal pad: > The solution is to disable MPS 1.4 Support in the BIOS. Not sure what that Would that be "Multi Processor Specification"? http://www.uruk.org/~erich/mps.html It seems like an APIC issue. I had severe IRQ and stability problems with a TYAN MP2466 dual Athlon board that seem to have been resolved with the recent cooker kernels. -- Hoyt http://www.MaximumHoyt.com/ "Fix it until it breaks." Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] xine dvd playing
> input_dvd: Sorry, this plugin doesn't play encrypted DVDs. The legal status > of CSS decryption is unclear and we can't provide such code. > Please check http://dvd.sf.net for more information. > input_dvd: Unable to find >VIDEO_TS.VOB< on dvd. > input_dvd: Unable to find >VIDEO_TS.VOB< on dvd. > xine: cannot find input plugin for this MRL > xine_stop Oh didn't read that :)) Try xine-d5d (plf) Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] xine dvd playing
Hi, Thanks for the reply. Steffen Barszus wrote: On Tuesday 03 December 2002 23:16, J. Grant wrote: Add contrib to your sources: Output here : # urpmi xine-dvdnav Um die Abhängigkeiten zu erfüllen, werden die folgenden Pakete installiert (0 MB): libdvdnav1-0.1.3-1mdk.i586 xine-dvdnav-0.9.13-1mdk.i586 I have installed it now. Unfortunatly I still get the same error message # rpm -qa |grep dvd libdvdread2-devel-0.9.3-2mdk libdvdcss2-1.2.3-1plf libdvdnav1-0.1.3-1mdk libdvdread2-0.9.3-2mdk xine-dvdnav-0.9.13-1mdk libdvdread-utils-0.9.3-2mdk xineplug_inp_dvdnav.so is in /usr/lib/plugins Is there anything else I need to do? Regards JG input_dvd: Sorry, this plugin doesn't play encrypted DVDs. The legal status of CSS decryption is unclear and we can't provide such code. Please check http://dvd.sf.net for more information. input_dvd: Unable to find >VIDEO_TS.VOB< on dvd. input_dvd: Unable to find >VIDEO_TS.VOB< on dvd. xine: cannot find input plugin for this MRL xine_stop Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] NFS permissions
I'm seeing a similar problem: when I'm a member of the group, it only works sometimes (not very often), if I'm the owner, it works all the time. Strange. Worked fine under 8.2. I authenticate using ypbind. Damon On Wed, 2002-12-04 at 12:14, Brian Parish wrote: > showmount just showed everything exported to everyone. I have now > removed the /data export and rebooted everything to see what happens. > After this: > > # showmount -e server > Export list for server: > /public (everyone) > /home/brian (everyone) > and some more > > # showmount -a server > All mount points on server: > 192.168.0.253:/data > 192.168.0.253:/home/brian > 192.168.0.253:/public > and some more > > /data still shows up on the -a list (but not on the -e list) after > having been removed from exports and the server (and clients) rebooted. > ...and of course if I put it back in exports and attempt to mount it, I > get the same permissions error. > > Explicitly adding hostnames or networks in exports makes no difference. > > Seems like the /data export has been somehow corrupted in a way which > persists between reboots. Is there some sort of cache on disk somewhere > that needs to be flushed? > > I imagine that if I remounted the /data partition under another mount > point and exported that, everything would work, but that's just avoiding > the problem rather than understanding it, so I'd like to persevere for > the moment. > > thanks for the interest! > > Brian > > On Wed, 2002-12-04 at 01:10, Tru64 User wrote: > > Check using "showmount -e systemname" and see which > > files are expported to what hosts. > > Seems like its having problems with perms.(but u > > said others look same way and they work?) > > Let us know what u find out. > > Otherwise add /data hostname(rw),hostname(rw) > > > > _Thanks > > > > Richard > > > > --- Brian Parish <[EMAIL PROTECTED]> wrote: > > > This evening I found an export from my server no > > > longer available. > > > > > > # mount -a > > > mount: server:/data failed, reason given by server: > > > Permission denied > > > > > > The server log shows: > > > > > > Dec 3 23:50:51 cnc-server rpc.mountd: authenticated > > > mount request from > > > 192.168.0.253:709 for /data (/data) > > > Dec 3 23:50:51 cnc-server rpc.mountd: getfh failed: > > > Operation not > > > permitted > > > > > > The line in /etc/exports says: > > > > > > /data (rw) > > > > > > Permissions and ownership of the directory are as > > > they were and > > > identical with other exported filesystems. All the > > > other are working. > > > > > > The security level here is Standard (this is mdk > > > 9.0) > > > > > > Any ideas out there on where to look? > > > > > > TIA > > > Brian > > > > > > > > > > > > > Want to buy your Pack or Services from > > MandrakeSoft? > > > > > > Go to http://www.mandrakestore.com > > > > > > > > > = > > > > > > __ > > Do you Yahoo!? > > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > > http://mailplus.yahoo.com > > > > > > __ > > > > Want to buy your Pack or Services from MandrakeSoft? > > Go to http://www.mandrakestore.com -- Damon Lynch <[EMAIL PROTECTED]> Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] NFS permissions
showmount just showed everything exported to everyone. I have now removed the /data export and rebooted everything to see what happens. After this: # showmount -e server Export list for server: /public (everyone) /home/brian (everyone) and some more # showmount -a server All mount points on server: 192.168.0.253:/data 192.168.0.253:/home/brian 192.168.0.253:/public and some more /data still shows up on the -a list (but not on the -e list) after having been removed from exports and the server (and clients) rebooted. ...and of course if I put it back in exports and attempt to mount it, I get the same permissions error. Explicitly adding hostnames or networks in exports makes no difference. Seems like the /data export has been somehow corrupted in a way which persists between reboots. Is there some sort of cache on disk somewhere that needs to be flushed? I imagine that if I remounted the /data partition under another mount point and exported that, everything would work, but that's just avoiding the problem rather than understanding it, so I'd like to persevere for the moment. thanks for the interest! Brian On Wed, 2002-12-04 at 01:10, Tru64 User wrote: > Check using "showmount -e systemname" and see which > files are expported to what hosts. > Seems like its having problems with perms.(but u > said others look same way and they work?) > Let us know what u find out. > Otherwise add /data hostname(rw),hostname(rw) > > _Thanks > > Richard > > --- Brian Parish <[EMAIL PROTECTED]> wrote: > > This evening I found an export from my server no > > longer available. > > > > # mount -a > > mount: server:/data failed, reason given by server: > > Permission denied > > > > The server log shows: > > > > Dec 3 23:50:51 cnc-server rpc.mountd: authenticated > > mount request from > > 192.168.0.253:709 for /data (/data) > > Dec 3 23:50:51 cnc-server rpc.mountd: getfh failed: > > Operation not > > permitted > > > > The line in /etc/exports says: > > > > /data (rw) > > > > Permissions and ownership of the directory are as > > they were and > > identical with other exported filesystems. All the > > other are working. > > > > The security level here is Standard (this is mdk > > 9.0) > > > > Any ideas out there on where to look? > > > > TIA > > Brian > > > > > > > > > Want to buy your Pack or Services from > MandrakeSoft? > > > > Go to http://www.mandrakestore.com > > > > > = > > > __ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > > __ > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com -- Brian Parish <[EMAIL PROTECTED]> Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Compiler options for AMD K6-II 533Mhz
On Tue, 3 Dec 2002, Sandeep Khanna wrote: > Hi All, > > Question: > What are the best compiler options for compiling software in general, > Garnome in specific for my laptop which is a Compaq 12XL125 AMD K6-II > 533 Mhz 192 Mb RAM 30Gb HDD ? In my experience there's no magic switch that will improve all software. There are specific things you can do for particular programs, or parts of programs, to give a boost, but nothing that works consistently. You can try looking here: http://www.suse.de/~aj/SPEC/compare-flags.html This shows various flags and the resultant change in some benchmarks. These are for Athlon processors. There are also differences in using different versions of GCC, but again, not consistent. Though gcc 3.2 seems to be faster in some things, it seems to be slower in others. I use the following on K6 machines for POVRay: # CFLAGS = -O6 -DARCH=k6 -DCPU=k6 -ffast-math -fomit-frame-pointer-malign-loops=2 Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] xine dvd playing
On Tuesday 03 December 2002 23:16, J. Grant wrote: > Hi, > Although mdk9 includes xine, I still have to install the encrypted dvd > decoder. I had this working in 8.1 but it is not going well atm. > > As xine is installed already I added the following: > > libdvdread2-devel-0.9.3-2mdk > libdvdcss2-1.2.3-1plf > libdvdread2-0.9.3-2mdk > libdvdread-utils-0.9.3-2mdk > > > I built libdvdnav from source as it was not availble as rpm (for all my > looking). I've tried to build xine-dvdnav from source as well, but it > says xine-config file is not found, i could not avoid this ./configure > problem. > > > I've checked the penguin liberation front which normally contains these > contentius rpms. http://ftp.club-internet.fr/pub/linux/plf/9.0/i586/ > I also checked http://dvd.sourceforge.net/ Add contrib to your sources: Output here : # urpmi xine-dvdnav Um die Abhängigkeiten zu erfüllen, werden die folgenden Pakete installiert (0 MB): libdvdnav1-0.1.3-1mdk.i586 xine-dvdnav-0.9.13-1mdk.i586 Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Multiple Samba Versions
After a few upgrades, I have found that samba hasn't been upgraded properly. I still have old versions lying around that I can't get rid of (see the output below). I have tried "rpm --rebuilddb", but it made no difference. Is there any way to clean it up nicely? Brian. rpm -qa|grep samba samba-swat-2.2.6-1.0.pre2.2mdk samba-2.2.1a-15mdk samba-server-2.2.6-1.0.pre2.2mdk samba-2.2.3a-10mdk samba-doc-2.2.6-1.0.pre2.2mdk samba-client-2.2.6-1.0.pre2.2mdk samba-common-2.2.6-1.0.pre2.2mdk samba-2.0.9-1.3mdk rpm -e samba-2.0.9-1.3mdk error: execution of %trigger scriptlet from samba-2.0.9-1.3mdk failed, exit status 1 _ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] xine dvd playing
Hi, Although mdk9 includes xine, I still have to install the encrypted dvd decoder. I had this working in 8.1 but it is not going well atm. As xine is installed already I added the following: libdvdread2-devel-0.9.3-2mdk libdvdcss2-1.2.3-1plf libdvdread2-0.9.3-2mdk libdvdread-utils-0.9.3-2mdk I built libdvdnav from source as it was not availble as rpm (for all my looking). I've tried to build xine-dvdnav from source as well, but it says xine-config file is not found, i could not avoid this ./configure problem. I've checked the penguin liberation front which normally contains these contentius rpms. http://ftp.club-internet.fr/pub/linux/plf/9.0/i586/ I also checked http://dvd.sourceforge.net/ -- input_dvd: Sorry, this plugin doesn't play encrypted DVDs. The legal status of CSS decryption is unclear and we can't provide such code. Please check http://dvd.sf.net for more information. -- So, if anyone has a tip i'd welcome it. VCD's play fine, but I like DVDs ;) Regards JG Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] [Fwd: SCB Parity Errors]
I was wondering if anyone was able to read a Kernel Dump for a SCSI Card? Can you see anything interesting about this error? -- Albert E. Whale - CISSP http://www.abs-comptech.com -- ABS Computer Technology, Inc. - ESM, Computer & Networking Specialists Sr. Security, Network, and Systems Consultant Board of Directors - InfraGard - Pittsburgh, PA --- Begin Message --- Dec 2 17:02:20 access kernel: scsi0:0:0:0: Attempting to queue an ABORT message Dec 2 17:02:20 access kernel: scsi0: Dumping Card State while idle, at SEQADDR 0x7 Dec 2 17:02:20 access kernel: ACCUM = 0xaf, SINDEX = 0x7, DINDEX = 0x8c, ARG_2 = 0x0 Dec 2 17:02:20 access kernel: HCNT = 0x0 SCBPTR = 0x4 Dec 2 17:02:20 access kernel: SCSISEQ = 0x12, SBLKCTL = 0x2 Dec 2 17:02:20 access kernel: DFCNTRL = 0x0, DFSTATUS = 0x29 Dec 2 17:02:20 access kernel: LASTPHASE = 0x1, SCSISIGI = 0x0, SXFRCTL0 = 0x80 Dec 2 17:02:20 access kernel: SSTAT0 = 0x5, SSTAT1 = 0xa Dec 2 17:02:20 access kernel: STACK == 0x0, 0x147, 0xec, 0x3 Dec 2 17:02:20 access kernel: SCB count = 112 Dec 2 17:02:20 access kernel: Kernel NEXTQSCB = 79 Dec 2 17:02:20 access kernel: Card NEXTQSCB = 79 Dec 2 17:02:20 access kernel: QINFIFO entries: Dec 2 17:02:20 access kernel: Waiting Queue entries: Dec 2 17:02:20 access kernel: Disconnected Queue entries: Dec 2 17:02:20 access kernel: QOUTFIFO entries: Dec 2 17:02:20 access kernel: Sequencer Free SCB List: 4 8 9 7 14 15 6 3 12 1 11 2 5 13 0 10 Dec 2 17:02:20 access kernel: Sequencer SCB Info: 0(c 0x60, s 0x37, l 0, t 0xff) 1(c 0x60, s 0x7, l 0, t 0xff) 2(c 0x60, s 0x37, l 0, t 0xff) 3(c 0x60, s 0x7, l 0, t 0xff) 4(c 0x60, s 0x37, l 0, t 0xff) 5(c 0x60, s 0x7, l 0, t 0xff) 6(c 0x60, s 0x37, l 0, t 0xff) 7(c 0x60, s 0x7, l 0, t 0xff) 8(c 0x60, s 0x7, l 0, t 0xff) 9(c 0x60, s 0x37, l 0, t 0xff) 10(c 0x60, s 0x7, l 0, t 0xff) 11(c 0x60, s 0x37, l 0, t 0xff) 12(c 0x60, s 0x37, l 0, t 0xff) 13(c 0x60, s 0x7, l 0, t 0xff) 14(c 0x60, s 0x7, l 0, t 0xff) 15(c 0x60, s 0x37, l 0, t 0xff) Dec 2 17:02:20 access kernel: Pending list: 110(c 0x60, s 0x7, l 0) Dec 2 17:02:20 access kernel: Kernel Free SCB list: 7 39 51 0 52 63 6 42 61 77 25 1 5 11 2 24 49 34 64 78 20 37 28 56 35 45 107 59 15 60 33 36 76 58 16 48 13 41 3 44 65 67 47 31 55 53 29 23 17 32 26 12 19 72 30 4 57 106 105 104 71 111 54 21 40 14 50 43 100 101 102 103 96 97 98 99 92 93 94 95 88 89 90 91 84 85 86 87 80 81 82 83 73 74 75 68 69 70 8 10 18 66 62 9 38 22 46 27 109 108 Dec 2 17:02:20 access kernel: DevQ(0:0:0): 0 waiting Dec 2 17:02:20 access kernel: DevQ(0:1:0): 0 waiting Dec 2 17:02:20 access kernel: DevQ(0:2:0): 0 waiting Dec 2 17:02:20 access kernel: DevQ(0:3:0): 0 waiting Dec 2 17:02:20 access kernel: DevQ(0:6:0): 0 waiting Dec 2 17:02:20 access kernel: (scsi0:A:0:0): Queuing a recovery SCB Dec 2 17:02:20 access kernel: scsi0:0:0:0: Device is disconnected, re-queuing SCB Dec 2 17:02:20 access kernel: Recovery code sleeping Dec 2 17:02:20 access kernel: (scsi0:A:0:0): Abort Tag Message Sent Dec 2 17:02:20 access kernel: (scsi0:A:0:0): SCB 110 - Abort Tag Completed. Dec 2 17:02:20 access kernel: Recovery SCB completes Dec 2 17:02:20 access kernel: Recovery code awake Dec 2 17:02:20 access kernel: aic7xxx_abort returns 0x2002 --- End Message --- Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Alsa Sound snd-cs46xx with SMP kernel
Hardware: 1. Motherboard, Abit VP6 VIA Apollo Pro 133A chip-set 2. CPU, 2x1000Mhz Intel Pentium 3 3. Memory, 512 MB PC133 SDRAM 4. Slots: AGP, Matrox G550: Dual Head DDR 32 MB @ IRQ 16 PCI 1 - open PCI 2 - open PCI 3 Soundcard Turtle Beach Santa Cruz Crystal CS4630-CM chip-setset IRQ 17 PCI 4 NIC, Realtek Semiconductor RTL-8139/8139c IRQ 19 PCI 5 SIIG CyberParallel Port Controller Card IRQ 18 Software: Mandrake Linux Version 9.0 SMP Kernel with all updates running KDE Problem: The installed Mandrake 9.0 with the alsa driver, snd-cs46xx, for the Turtle Beach Santa Cruz sound card will freeze when opening the KDE windows manager. Requires a power off to gain control of the computer. Situation: The problem first occured when updating to the new ML 9.0 from a working 8.2 system. The update went without a problem, all packages installed correctly, up and until the first reboot. At the stage when starting the KDE windows manager the computer froze. The only way to get out was to turn off the computer at the power button or reset switch. This was attempted numerous times with the same results. We then replaced the Turtle Beach Santa Cruz sound card with a Sound Blaster Live! 5.1. After replacing the sound card the computer booted and ran without problems. We tried everything imagiable to get the card working with the alsa snd-cs46xx driver, tweaking the BIOS and various boot switches. Nothing worked with the Santa Cruz sound and the alsa drivers. One thing notices was in the /var/log/kernel/errors file: 1. "Oct 5 18:03:05 sword kernel: cs46xx: cs46xx_setup_eapd_slot() Failure to write the GPIO pins for slot 12". This was the only error that addresses the sound card. Present: Now running Mandrake Linux 9.0 with the OSS drivers, cs46xx Santa Cruz card. The system runs well with this driver. Question: Has any one with the same or similar hardware experienced this problem and what was the outcome? Why does the alsa sound drivers for the cs46xx not work with the smp kernel? Thank you Larry CC: Mandrake expert list Alsa-project Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Compiler options for AMD K6-II 533Mhz
Hi All, Question: What are the best compiler options for compiling software in general, Garnome in specific for my laptop which is a Compaq 12XL125 AMD K6-II 533 Mhz 192 Mb RAM 30Gb HDD ? Background I have always heard, beleived that Linux is much faster than Windows. I have been using Linux (first Redhat, currently Mandrake 9) with GNOME since past 2 years on my laptop. But, I have always found Windows 2000 on my other partition to be much faster (with similar applications like Mozilla, OpenOffice pre-loaded) than Linux. Altough, I agree that I have seen quite a noticeable difference between Gnome 1.4 and Gnome2. I also compiled Garnome (currently 0.18.3) but still didn't find it anywhere near to my Win2K installation. From various newsgroups I also got to know that Mandrake is currently a better if not the best optimised distribution for older AMD, Pentium based machines. Unfortunately, it didn't look like it. OpenOffice/StarOffice don't start in the first go due to low memory and eventually startup since they would have bumped off (swapped) the other programs and would be having parts of it in the cache. Thus, XXXOffice would startup eventually after one or two tries. This makes me question the Linux Memory Management. Mozilla as distributed with Mandrake was slow as hell to start, scroll longer web-pages, etc. The one that I downloaded and installed directly from mozilla.org was much much faster. Again, Looks like Mandrake's compiler options weren't good enough for me ! So, Before I switch to a distribution like Gentoo, I want to try to compile Garnome using compiler options specific for my processor this time. Thanks in advance, Sandeep Khanna Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Disable power-managment hi-jacking ofCtrl-Alt-Backspace?
This is one point I do have to give to M$ they do seem to be able to dynamically map around bad blocks on HDD's and ram a lot better than Linux or FreeBSD. As for the badmem tools I've never been able to get them running nor have I really taken a hard run at it. (I cheated and swapped memory with my wifes windows box) The other thing I have seen is that sometimes running mem at a slower speed works as well. (bad bit at 133 but not at 100). As for DDR memory... haven't got any so don't know. James On Tue, 2002-12-03 at 08:50, Alex Bennee wrote: > On Tue, 2002-12-03 at 13:05, Alex Bennee wrote: > > > > bit can cause the machine to lock up completely and mess with > > X windows Ctrl-Alt-BS. I'll re-run memtest tonight and see if the > > results are consistent in failing. > > I know i've got a memory problem but the Ctrl-Alt-Backspace is not > related. Its seems to be a power save feature (it works even in Grub) > but Windows seems to disable it by the time it boots. I've tried both > noapic and apm=off kernel options but I still cannot disable it. I can't > help feeling the two may be related, although I did seem to be able to > kill X without killing the machine once its hardly consistent. > > -- > Alex Bennee > Senior Hacker, Braddahead Ltd > The above is probably my personal opinion and may not be that of my > employer > > > > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re:[expert] Help needed in copying files from DVD/CD to Harddisk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 02 December 2002 08:46 pm, Ron Stodden wrote: > Ralph De Witt wrote: > > I have just done a new install of Mandrake 9.0 on a MSI KT3 ULTRA2 > > motherboard. I am having some problems with the DVD/CDrom. > > When I try to copy files from the CD to the hard drive the system is > > loosing files and directories from the cd and a refresh of the cd does > > not show them. > > Make sure that your DVD/CDROM drive and your hard disk are NOT on the > same IDE channel. > > Some motherboard chipsets cannnot handle the multitasking that Linux > (but not Windows) uses. Ron: The hard drive is master on ide channel 1 and the DVD is master on ide channel 2 the CD R/W is slave on ide channel 2. So that is not the problem. - -- Yours, Ralph. It said Use Windows XP or better, so I installed Mandrake-Linux 9.0 Register Linux User 168814 ICQ #49993234 AIM ralphdewitt jabber.org ralphdewitt GPG Public Key available at http://www.keyserver.net Key Fingerprint = B290 C655 3CBF 3744 D896 C647 538B 4558 A3A9 65FF Kernel version 2.4.19-16mdk Current Linux uptime: 2 days 11 hours 11 minutes. -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE97QErU4tFWKOpZf8RAlQZAJ9Z4RZjar5IRVEcviQrxze9/qslsgCgk7Wt Bo1uxuAgtRe0Mz0gCxSfujA= =VAa0 -END PGP SIGNATURE- Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] upgrading devfsd problem
Hi folks, I have two ML 9.0 box with hardware RAID system (Mylex 960PRL and Mylex AcceleRAID 352). Two of box was work well before the update of the "devfsd" package to "devfsd-1.3.25-19.2mdk.i586.rpm". I can not boot any more with linux with lilo. But if I can choose "safe boot", my sytem boots normaly. Here is the booting messages of my system. *** . . . DAC960#0: Disk Status: Online, 35428352 blocks DAC960#0: 0:8 Vendor: SDR Model: GEM318 Revision: 0 DAC960#0: Logical Drives: DAC960#0: /dev/rd/c0d0: RAID-5, Online, 35432448 blocks, Write Back DAC960#0: /dev/rd/c0d1: RAID-5, Online, 35426304 blocks, Write Back DAC960#0: /dev/rd/c0d2: RAID-5, Online, 35426304 blocks, Write Back Partition check: rd/c0d0: p1 p2 p3 p4 < p5 > rd/c0d1: p1 p2 rd/c0d2: p1 Journalled Block Device driver loaded kjournald starting. Commit interval 5 seconds EXT3-fs: mounted filesystem with ordered data mode. Mounted devfs on /dev Freeing unused kernel memory: 136k freed Real Time Clock Driver v1.10e usb.c: registered new driver usbdevfs usb.c: registered new driver hub usb-uhci.c: $Revision: 1.275 $ time 18:49:04 Sep 20 2002 usb-uhci.c: High bandwidth mode enabled PCI: Found IRQ 9 for device 00:07.2 PCI: Sharing IRQ 9 with 00:0d.0 usb-uhci.c: USB UHCI at I/O 0xf800, IRQ 9 usb-uhci.c: Detected 2 ports usb.c: new USB bus registered, assigned bus number 1 hub.c: USB hub found hub.c: 2 ports detected usb-uhci.c: v1.275:USB Universal Host Controller Interface driver usbdevfs: remount parameter error inserting floppy driver for 2.4.19-16mdk Floppy drive(s): fd0 is 1.44M FDC 0 is a post-1991 82077 Checking root filesystem fsck.ext3/dev/rd/c0d0p1 The superblock could not be read or does not describe a correct ext2 file system... : No such file or directory while trying to open /dev/rd Failed to check filesystem. Do you want to repair the errors (Y/N) ** and the system hangs up If I uninstall the devfsd and reinstall the devfsd from ML9.0 Disc1 is it ok. still works well.. Any help is welcome. Thx for your help, DMNokia __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] remote cups printer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nevermind. For some reason, seemingly out of the blue, my laptop is seeing and now printing thru my desktop cups server. praedor On Tuesday 03 December 2002 11:42 am, Praedor Atrebates wrote: > I have an HP deskjet, USB, connected and working via cups on my desktop. I > also have a working ad-hoc wireless connection between my laptop and > desktop. I have been trying to add a remote cups printer to my laptop (the > above printer) but my laptop (mandrake 8.2) refuses to see the desktop cups > server. [...] -BEGIN PGP SIGNATURE- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE97OMHmkm5RO1gX9cRAvOlAKCKqQ+eyAKKmTglaaP6ilveqkjaTgCeI+bx j+/zkW3tMBlT8Gvlhxd4QAQ= =2S5a -END PGP SIGNATURE- Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Disable power-managment hi-jacking ofCtrl-Alt-Backspace?
On Tue, 2002-12-03 at 13:05, Alex Bennee wrote: > > bit can cause the machine to lock up completely and mess with > X windows Ctrl-Alt-BS. I'll re-run memtest tonight and see if the > results are consistent in failing. I know i've got a memory problem but the Ctrl-Alt-Backspace is not related. Its seems to be a power save feature (it works even in Grub) but Windows seems to disable it by the time it boots. I've tried both noapic and apm=off kernel options but I still cannot disable it. I can't help feeling the two may be related, although I did seem to be able to kill X without killing the machine once its hardly consistent. -- Alex Bennee Senior Hacker, Braddahead Ltd The above is probably my personal opinion and may not be that of my employer Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] remote cups printer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have an HP deskjet, USB, connected and working via cups on my desktop. I also have a working ad-hoc wireless connection between my laptop and desktop. I have been trying to add a remote cups printer to my laptop (the above printer) but my laptop (mandrake 8.2) refuses to see the desktop cups server. Cups IS running and the printer is printing OK from the desktop. I have been going over the likely config files and tools and see nothing to explain the inability of my laptop to see the desktop cups server. How do I proceed from here? praedor -BEGIN PGP SIGNATURE- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE97N7/mkm5RO1gX9cRArtxAJsEtVwz2LVPNEssBwQCZsYIp4CP9gCg0sER L0xEalwiZ0QjwfgVuupb4sE= =UnGu -END PGP SIGNATURE- Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Can't smbumount - permission denied
I smbmounted a LM9 machine from a LM8.1 machine last night to tar across some folders. The tar failed after 1Gig with " wrote only 0 of 10240 bytes, tar:error not recoverable: exiting now". Now, even as root i can't smbumount the remote share. it just says permission denied. Anybody any ideas even if i log out and then back in again, the mount is still there. many thanks Mr Smiley Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] NFS permissions
Check using "showmount -e systemname" and see which files are expported to what hosts. Seems like its having problems with perms.(but u said others look same way and they work?) Let us know what u find out. Otherwise add /data hostname(rw),hostname(rw) _Thanks Richard --- Brian Parish <[EMAIL PROTECTED]> wrote: > This evening I found an export from my server no > longer available. > > # mount -a > mount: server:/data failed, reason given by server: > Permission denied > > The server log shows: > > Dec 3 23:50:51 cnc-server rpc.mountd: authenticated > mount request from > 192.168.0.253:709 for /data (/data) > Dec 3 23:50:51 cnc-server rpc.mountd: getfh failed: > Operation not > permitted > > The line in /etc/exports says: > > /data (rw) > > Permissions and ownership of the directory are as > they were and > identical with other exported filesystems. All the > other are working. > > The security level here is Standard (this is mdk > 9.0) > > Any ideas out there on where to look? > > TIA > Brian > > > > > Want to buy your Pack or Services from MandrakeSoft? > > Go to http://www.mandrakestore.com > = __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Re: urpmi says "everything already installed"
I had to go into mcc, then software management --> software sources manager and choose and update all the entries there. HTH, Stef On Monday 02 December 2002 10:57 pm, Robert Wohlfarth wrote: > Running Mandrake 9.0, Mandrake Control Center, Install Software. None of > the packages have check marks, even ones that I know are installed. I > check one or more and click the "Install" button. A dialog box appears > saying "Everything is already installed (that's not supposed to happen > is it)". Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Disable power-managment hi-jacking ofCtrl-Alt-Backspace?
On Mon, 2002-12-02 at 17:50, James Sparenberg wrote: > Alex, > >Had a box myself that started doing this a couple of months ago. > Turned out I had a bad block (sector? Transistor? not sure of the term) > appear in my memory but it was high up in the list. > Yep, turns out to be bad memory. Having said that the error address was quite high (single bit stuck, around 110M mark). It seems odd that just one (high) bit can cause the machine to lock up completely and mess with X windows Ctrl-Alt-BS. I'll re-run memtest tonight and see if the results are consistent in failing. I had a go at building the badmem tools and kernel patch but to no avail. Has anybody got experience with the badmem patches on Mandrake? -- Alex Bennee Senior Hacker, Braddahead Ltd The above is probably my personal opinion and may not be that of my employer Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Mozilla and sound - what's up?
don't know what the differences may be. i'm behind a firewall but that shouldn't affect how the browser reacts to Real handling data from an established connection. it was only a nuisance, never important enough to worry about, just thought i'd throw in the additional experience to see if a broader view of the problem may help someone figure out the problem a little easier. --- Original Message --- From: Wolfgang Bornath <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [expert] Mozilla and sound - what's up? >On Tue, Dec 03, 2002 at 07:50 -0500, [EMAIL PROTECTED] wrote: >> as an aside, i noticed the same problem a while back when i would >> try to get live feed from online radio using realaudio; the >> browser (galeon here) would hang until i killed Real, then it >> would work fine. this on 9.0 also. > >I'm doing that very often. I listen to audiostream with Realplayer and >write in some webforum or do research via Google. No problem with >Galeon and Realplayer, and it was no problem before when I used xmms >instead of Realplayer. Using ML 9.0, before that I used 8.2. > >wobo >-- >If you don't understand or are scared by any of the above >ask your parents or an adult to help you. > > Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] NFS permissions
This evening I found an export from my server no longer available. # mount -a mount: server:/data failed, reason given by server: Permission denied The server log shows: Dec 3 23:50:51 cnc-server rpc.mountd: authenticated mount request from 192.168.0.253:709 for /data (/data) Dec 3 23:50:51 cnc-server rpc.mountd: getfh failed: Operation not permitted The line in /etc/exports says: /data (rw) Permissions and ownership of the directory are as they were and identical with other exported filesystems. All the other are working. The security level here is Standard (this is mdk 9.0) Any ideas out there on where to look? TIA Brian Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
RE: [expert] devfs Issue
thanks for your reply but i got it fixed eventually. On Tue, 2002-12-03 at 11:52, Franki wrote: > The HCF site has a mailing list.. > > I got many answers there when I had one.. > > perhaps you should Join.. > > its very active, the developer was releasing a newer better version every 3 > weeks before. > > > rgds > > Frank > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of FRLinux > Sent: Tuesday, 3 December 2002 5:42 PM > To: [EMAIL PROTECTED] > Subject: Re: [expert] devfs Issue > > > Hello, > > I thought i had provided all the necessary info, my mistake ;) here are > the precisions : > > /dev/modem does not get created whatsoever. > > > what is /dev/modem pointing to? also, make sure hsfserial is being > > loaded... when it is loaded look at your /var/log/messages for devfsd > > saying it creating a device link... send that output... :) > > > > It is not being loaded, furthermore, if i try to load it up manually, > here's the output : > > Dec 3 09:35:22 localhost insmod: Warning: loading > /lib/modules/2.4.20-pre8/misc/hsfich.o will taint the kernel: non-GPL > license - Copyright (C) 1996-2001 Conexant Systems Inc. All Rights > Reserved. > Dec 3 09:35:22 localhost insmod: See > http://www.tux.org/lkml/#export-tainted for information about tainted > modules > Dec 3 09:35:22 localhost insmod: Module hsfich loaded, with warnings > Dec 3 09:35:22 localhost kernel: hsf_request_port: ComCtrlOpen failed, > r=1! > > I would like to add that the hsfconfig created the following in > /etc/modules.conf : > > alias /dev/ttySHSF* hsfserial > alias char-major-240 hsfserial > alias /dev/ttyCUA* hsfserial > alias char-major-241 hsfserial > alias /dev/modem hsfserial > options hsfserial serialmajor=240 calloutmajor=241 > > Steph > > > > > > > __ > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com -- [EMAIL PROTECTED] - http://frlinux.net "Piece by piece, the penguins are taking my sanity apart ..." http://drip.sourceforge.net - Drip, a Div'X encoder for Linux Email sent on Debian sid k2419 Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Mozilla and sound - what's up?
On Tue, Dec 03, 2002 at 07:50 -0500, [EMAIL PROTECTED] wrote: > as an aside, i noticed the same problem a while back when i would > try to get live feed from online radio using realaudio; the > browser (galeon here) would hang until i killed Real, then it > would work fine. this on 9.0 also. I'm doing that very often. I listen to audiostream with Realplayer and write in some webforum or do research via Google. No problem with Galeon and Realplayer, and it was no problem before when I used xmms instead of Realplayer. Using ML 9.0, before that I used 8.2. wobo -- If you don't understand or are scared by any of the above ask your parents or an adult to help you. Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Mozilla and sound - what's up?
as an aside, i noticed the same problem a while back when i would try to get live feed from online radio using realaudio; the browser (galeon here) would hang until i killed Real, then it would work fine. this on 9.0 also. --- Original Message --- From: Brian Parish <[EMAIL PROTECTED]> To: expert <[EMAIL PROTECTED]> Subject: [expert] Mozilla and sound - what's up? >I found recently that aRtsd on my main mdk9.0 workstation would >gradually eat more and more cpu until it was consuming 30% and still >going. So I stopped using it. Don't need it. > >XMMS is now using the OSS emulation to deliver sound and works just >fine, but now Mozilla will stall frequently. If I stop the playback on >XMMS, Mozilla springs back to life, so the connection is clear. > >I'm obviously on the "solve a problem - create a problem" loop here and >don't appreciate having to interrupt the music to make a browser work, >so if anyone has a suggestion about any of the above... > >TIA >Brian > >P.S. Same thing happens with Konq, so it's not a Mozilla specific issue. > > > Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] Mozilla and sound - what's up?
I found recently that aRtsd on my main mdk9.0 workstation would gradually eat more and more cpu until it was consuming 30% and still going. So I stopped using it. Don't need it. XMMS is now using the OSS emulation to deliver sound and works just fine, but now Mozilla will stall frequently. If I stop the playback on XMMS, Mozilla springs back to life, so the connection is clear. I'm obviously on the "solve a problem - create a problem" loop here and don't appreciate having to interrupt the music to make a browser work, so if anyone has a suggestion about any of the above... TIA Brian P.S. Same thing happens with Konq, so it's not a Mozilla specific issue. Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
RE: [expert] devfs Issue
The HCF site has a mailing list.. I got many answers there when I had one.. perhaps you should Join.. its very active, the developer was releasing a newer better version every 3 weeks before. rgds Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of FRLinux Sent: Tuesday, 3 December 2002 5:42 PM To: [EMAIL PROTECTED] Subject: Re: [expert] devfs Issue Hello, I thought i had provided all the necessary info, my mistake ;) here are the precisions : /dev/modem does not get created whatsoever. > what is /dev/modem pointing to? also, make sure hsfserial is being > loaded... when it is loaded look at your /var/log/messages for devfsd > saying it creating a device link... send that output... :) > It is not being loaded, furthermore, if i try to load it up manually, here's the output : Dec 3 09:35:22 localhost insmod: Warning: loading /lib/modules/2.4.20-pre8/misc/hsfich.o will taint the kernel: non-GPL license - Copyright (C) 1996-2001 Conexant Systems Inc. All Rights Reserved. Dec 3 09:35:22 localhost insmod: See http://www.tux.org/lkml/#export-tainted for information about tainted modules Dec 3 09:35:22 localhost insmod: Module hsfich loaded, with warnings Dec 3 09:35:22 localhost kernel: hsf_request_port: ComCtrlOpen failed, r=1! I would like to add that the hsfconfig created the following in /etc/modules.conf : alias /dev/ttySHSF* hsfserial alias char-major-240 hsfserial alias /dev/ttyCUA* hsfserial alias char-major-241 hsfserial alias /dev/modem hsfserial options hsfserial serialmajor=240 calloutmajor=241 Steph Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] where to get screensavers for KDE / Gnome?
021203 Aristotle wrote: > I have only a few very basic screensavers for KDE > and I would like some more for Gnome. you do know about Xscreensaver, don't you ... (smile)? -- ,, SUPPORT ___//___, Philip Webb : [EMAIL PROTECTED] ELECTRIC /] [] [] [] [] []| Centre for Urban & Community Studies TRANSIT`-O--O---' University of Toronto Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] devfs Issue
Hello again, just wanted to tell you that i fixed the issue, first thing was to install pciutils because the evil connexant script wants lspci to work away. And second is to get the latest hsflinmodem drivers which fixes issues on Mandrake 9.0 and RedHat 8.0 ;) Steph On Tue, 2002-12-03 at 09:42, FRLinux wrote: > Hello, > > I thought i had provided all the necessary info, my mistake ;) here are > the precisions : > > /dev/modem does not get created whatsoever. > > > what is /dev/modem pointing to? also, make sure hsfserial is being > > loaded... when it is loaded look at your /var/log/messages for devfsd > > saying it creating a device link... send that output... :) > > > > It is not being loaded, furthermore, if i try to load it up manually, > here's the output : > > Dec 3 09:35:22 localhost insmod: Warning: loading > /lib/modules/2.4.20-pre8/misc/hsfich.o will taint the kernel: non-GPL > license - Copyright (C) 1996-2001 Conexant Systems Inc. All Rights > Reserved. > Dec 3 09:35:22 localhost insmod: See > http://www.tux.org/lkml/#export-tainted for information about tainted > modules > Dec 3 09:35:22 localhost insmod: Module hsfich loaded, with warnings > Dec 3 09:35:22 localhost kernel: hsf_request_port: ComCtrlOpen failed, > r=1! > > I would like to add that the hsfconfig created the following in > /etc/modules.conf : > > alias /dev/ttySHSF* hsfserial > alias char-major-240 hsfserial > alias /dev/ttyCUA* hsfserial > alias char-major-241 hsfserial > alias /dev/modem hsfserial > options hsfserial serialmajor=240 calloutmajor=241 > > Steph > > > > > __ > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com -- [EMAIL PROTECTED] - http://frlinux.net "Piece by piece, the penguins are taking my sanity apart ..." http://drip.sourceforge.net - Drip, a Div'X encoder for Linux Email sent on Debian sid k2419 Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Still problems with Windowmaker
021202 James Sparenberg wrote: > On Mon, 2002-12-02 at 21:47, Erik Laxdal wrote: >> Link /etc/alternatives/lib_cpp with /usr/bin/cpp-3.2 as root >> with the following command: >> ln -s /usr/bin/cpp-3.2 /etc/alternatives/lib_cpp hasn't this been fully sorted out yet ... (grimace)? i ran into this problem after upgrading to 9.0rc1, when i found i couldn't compile due to inability to find Gcc. i simply made /usr/bin/cpp -> /usr/bin/cpp-3.2 & all was well. IIRC /e/a is used only if something can't be found where expected. i also ran into the problem that Windowmaker wouldn't show the menus, but decided for other reasons that KDE is best desktop (XFCE a close 2nd). -- ,, SUPPORT ___//___, Philip Webb : [EMAIL PROTECTED] ELECTRIC /] [] [] [] [] []| Centre for Urban & Community Studies TRANSIT`-O--O---' University of Toronto Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] where to get screensavers for KDE / Gnome?
I lost my direct link to it but if you do a search on pbone.net for keuphoria it's one of the nicest looking screen servers I've seen for kde (or anything else.) On a scale of 1 to 10 this one is a 20 James On Tue, 2002-12-03 at 01:39, Aristotle wrote: > I have only a few very basic screensavers for KDE and I would like some > more for Gnome. > > I seem to have all the KDE packages installed and a search on > rpmfind.net for mandrake packages reveals nothing that I can see. > > Any pointers? > > Just the screensaver that shows a text file would be great - I once had > it set up to give a running display of an IRC channel. > -- > -- > Adelaide, South Australia > AIM demosthenes aus Gabber demosthenes > Yahoo IM demosthenes_down_under > ICQ 175117479 PGP(GPG) key ID D408E804 > Unreal Tournament 2003 demosthenes > (internode.on.net game servers) > -- > > > > > Want to buy your Pack or Services from MandrakeSoft? > Go to http://www.mandrakestore.com Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Still problems with Windowmaker
On Mon, 2002-12-02 at 22:44, Vincent Danen wrote: > > On Monday, December 2, 2002, at 11:34 PM, Vincent Danen wrote: > > >>> Ok... have you tried opening up a term in wmaker and then running > >>> "update-menus" as a user? > >>> > >>> That should give you your mdk menus. > >> > >> Should but unfortunately doesn't... Even after a restart of Wmaker. > >> The > >> error is that it can't load the applications menu and says output has > >> been sent to console loaded xconsole to try and caputure this > >> output but no dice. IF I open the windowmaker config tool I can get > >> the > >> stock wmaker menu but still am unable to get the Mandrake version. > > > > Did you cat .xsession-errors? > > > > First thing I did (just fired up wmaker here on 9.0). Last thing it > > says is: > > > > sh: line 1: /lib/cpp: No such file or directory > > > > check /lib/cpp with ls -l and it's pointing to a non-existent file > > (dangling symlink) > > > > Create the link /usr/bin/cpp to /etc/alternatives/lib_cpp. Log out > > then log back in. Oh. Don't even need to log out then back in again. > > > > Looks like update-alternatives is a little messed up. Wierd thing is, > > checking "rpm -q --scripts gcc-cpp" there is a call to > > update-alternatives. > > > > If I execute the exact same thing as %postinstall in gcc-cpp, I get > > the symlink properly created. > > > > Looks like something for an errata. > > Also looks like someone beat me to it. Ah well. > > Anyways, I've added this to the 9.0 errata since others may encounter > the same problem. Vincent thanks for your help on this... It's one of the few (but most infuriating) problems I've had with 9.0 (yes I've been luckier than some) Would it be possible to post in the errata a list of what all the links should be from alternatives. Then a kind of general "check this" directive? I know for me the alternatives directory is kind of new. Just a thought and thanks again for the help. James > > -- > MandrakeSoft Security; http://www.mandrakesecure.net/ > "lynx -source http://linsec.ca/vdanen.asc | gpg --import" > {FE6F2AFD: 88D8 0D23 8D4B 3407 5BD7 66F9 2043 D0E5 FE6F 2AFD} > Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] devfs Issue
Hello, I thought i had provided all the necessary info, my mistake ;) here are the precisions : /dev/modem does not get created whatsoever. > what is /dev/modem pointing to? also, make sure hsfserial is being > loaded... when it is loaded look at your /var/log/messages for devfsd > saying it creating a device link... send that output... :) > It is not being loaded, furthermore, if i try to load it up manually, here's the output : Dec 3 09:35:22 localhost insmod: Warning: loading /lib/modules/2.4.20-pre8/misc/hsfich.o will taint the kernel: non-GPL license - Copyright (C) 1996-2001 Conexant Systems Inc. All Rights Reserved. Dec 3 09:35:22 localhost insmod: See http://www.tux.org/lkml/#export-tainted for information about tainted modules Dec 3 09:35:22 localhost insmod: Module hsfich loaded, with warnings Dec 3 09:35:22 localhost kernel: hsf_request_port: ComCtrlOpen failed, r=1! I would like to add that the hsfconfig created the following in /etc/modules.conf : alias /dev/ttySHSF* hsfserial alias char-major-240 hsfserial alias /dev/ttyCUA* hsfserial alias char-major-241 hsfserial alias /dev/modem hsfserial options hsfserial serialmajor=240 calloutmajor=241 Steph Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] where to get screensavers for KDE / Gnome?
I have only a few very basic screensavers for KDE and I would like some more for Gnome. I seem to have all the KDE packages installed and a search on rpmfind.net for mandrake packages reveals nothing that I can see. Any pointers? Just the screensaver that shows a text file would be great - I once had it set up to give a running display of an IRC channel. -- -- Adelaide, South Australia AIM demosthenes aus Gabber demosthenes Yahoo IM demosthenes_down_under ICQ 175117479 PGP(GPG) key ID D408E804 Unreal Tournament 2003 demosthenes (internode.on.net game servers) -- Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
Re: [expert] Still problems with Windowmaker
On Mon, 2002-12-02 at 22:34, Vincent Danen wrote: > > On Monday, December 2, 2002, at 10:52 PM, James Sparenberg wrote: > > >>> Initial suspicion was correct. If GNUStep directory is missing it > >>> runs > >>> when you first install. Tried also creating a new user so that MDK's > >>> firstime program ran... either way.. still no menu. dang. > >> > >> Ok... have you tried opening up a term in wmaker and then running > >> "update-menus" as a user? > >> > >> That should give you your mdk menus. > > > > Should but unfortunately doesn't... Even after a restart of Wmaker. > > The > > error is that it can't load the applications menu and says output has > > been sent to console loaded xconsole to try and caputure this > > output but no dice. IF I open the windowmaker config tool I can get > > the > > stock wmaker menu but still am unable to get the Mandrake version. > > Did you cat .xsession-errors? > > First thing I did (just fired up wmaker here on 9.0). Last thing it > says is: > > sh: line 1: /lib/cpp: No such file or directory > > check /lib/cpp with ls -l and it's pointing to a non-existent file > (dangling symlink) > > Create the link /usr/bin/cpp to /etc/alternatives/lib_cpp. Log out > then log back in. Oh. Don't even need to log out then back in again. > > Looks like update-alternatives is a little messed up. Wierd thing is, > checking "rpm -q --scripts gcc-cpp" there is a call to > update-alternatives. > > If I execute the exact same thing as %postinstall in gcc-cpp, I get the > symlink properly created. > > Looks like something for an errata. Same thing I found.. from /usr/bin/cpp to /etc/alternatives the link was made but the second link from /etc/alternatives /usr/bin/cpp-3.2 didn't get created... Thanks to all for the help. James > > -- > MandrakeSoft Security; http://www.mandrakesecure.net/ > "lynx -source http://linsec.ca/vdanen.asc | gpg --import" > {FE6F2AFD: 88D8 0D23 8D4B 3407 5BD7 66F9 2043 D0E5 FE6F 2AFD} > Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
[expert] problems with update-alternatives after upgrade [ was Re: Still problemswith Windowmaker]
Vincent Danen wrote: If I execute the exact same thing as %postinstall in gcc-cpp, I get the symlink properly created. Looks like something for an errata. Also looks like someone beat me to it. Ah well. Anyways, I've added this to the 9.0 errata since others may encounter the same problem. BTW, this isn't specific to the gcc-cpp packages: if you follow messages on these list, you'll see many complaints about broken links in alternatives (often one realizes this because of the error messages of makewhatis). I saw this myself with a number of packages after upgrading to 9.0 (e.g. postfix was screwed because it was missing the links) and I add to run manually the same update-alternatives that was in the %post script (of course postfix is just an example, I had to fix other packages manually but don't remember which ones now). Bye -- Luca Olivetti Note.- This message reached you today, it may not tomorrow if you are using MAPS services. They arbitrarily include in their lists IP addresses not related in any way to spam, and in so doing are disrupting Internet connectivity. Please stop supporting them. See http://slashdot.org/article.pl?sid=01/05/21/1944247 Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com