Re: [expert] CD Audio & more stuff

2000-03-28 Thread Sevatio Octavio
Something to add to all my word gravel... Grip also accommodates Gogo Encoder http://homepage1.nifty.com/herumi/gogo_e.html . This one is freakin' quick! I'm getting 7.5x encoding speed on a 333Mhz Cel. Note: this is with psycho-acoustics turned off and a rate of 128kbps. Gogo is quite simi

Re: [expert] Dumb, Dumber, Dumbest - Redefined

2000-03-28 Thread kingpin
Hi, if you cant get to another x-session with ctrl-alt f2 etc ... this may also help - I've used it to rescue my system on occasion. Get a mini linux distribution like tomsrtbt (www.toms.net/rb) build it on another machine. Boot your system with this distribution installed on a floppy (boot from

[expert] Multiple Processes

2000-03-28 Thread Michael D. Kirkpatrick
Is there a way to mark a perl script to be ran as a single process only? The problem: I have a perl script that takes 3-5 seconds to run (Very large databases) If I mess up and double click on the submit button, a second process is spawned off. This completely slows down the first process and ta

Re: [expert] Multiple Processes

2000-03-28 Thread Bug Hunter
If you create a lock file (perhaps in /var/lock), with the program's file name, ending in .lck, you can check for that at the beginning of the perl script and exit immediately if that file exists. At the end of the perl script delete the file. You can still have a race condition if two peop

RE: [expert] Multiple Processes

2000-03-28 Thread Ken Wilson
Have your script make a simple empty file called 'perl.lock'. The idea is to check for this file first. If it exists a copy of the program is already running so have any subsequent programs exit gracefully. Oh yeah, remember to delete the file after the original script has run. -Original M

Re: [expert] Dumb, Dumber, Dumbest - Redefined

2000-03-28 Thread Leopold Palomo
About problems with modifing mtab I did a simple solution. I had a problem for modifing the mtab file the file that you NEVER have to touch. I modified it, and when I tried to reboot my linux box but unfortunately when the boot hangs on: Setting /boot/System.map to the current running kernel

Re: [expert] Printer recommendation

2000-03-28 Thread Ted Wager
On Mon, 27 Mar 2000, [EMAIL PROTECTED] wrote: > Hi, > > I would like to know if any of you can recommend me a printer (lower price > category, quality and speed suitable for home-use) that works alright with > Mandrake 7.0 ? > > I've had problems with my Epson Stylus Color 300 ever since I bega

Re: [expert] compaq 7599 810 intel motherboard

2000-03-28 Thread vern
I had a crash course with the i810 chipset and Mdk 6.1, which I'm still using now after removing the Mdk 7.0. The basic steps are to download the two rpms from Intel.com and the info packet on the install. The first rpm is the new Xserver and the second is a module called agpgart.o which you wil

RE: [expert] Multiple Processes

2000-03-28 Thread Fred Frigerio
You'll have to check for another process and exit if one is running. It can easily done if you use a lock file. If your script doesn't crash just check for the file and run or not. Also you can parse the output of ps for the name of your program. > -Original Message- > From: Michael D. Ki

Re: [expert] Dumb, Dumber, Dumbest - Redefined

2000-03-28 Thread Charles Curley
On Mon, Mar 27, 2000 at 11:36:17PM -0500, Brian T. Schellenberger wrote: -> -> First, there's no need to modify mtab; that's the current state of the -> system. You only need to modify fstab. -> -> By the same token, the empty mtab is just empty 'cause the mount fails, -> but you already knew t

Re: [expert] Printer accounting

2000-03-28 Thread Suppiluliuma
Thank you for all your responses. I'll try cups package as it seems to be quite sophisticated printing tool. -- Registered Linux user #166697 visit http://counter.li.org to register Sign the petition at http://www.libranet.com/petition.html Help bring us more Linux Drivers

Re: [expert] Multiple Processes

2000-03-28 Thread Michael D. Kirkpatrick
That is an extremely easy way of doing it. I am kicking myself in the ass for not thinking of it myself... Thanks. Bug Hunter wrote: > If you create a lock file (perhaps in /var/lock), with the program's > file name, ending in .lck, you can check for that at the beginning of the > perl scrip

Re: [expert] 7.0 7.0-2

2000-03-28 Thread Vic
7.0-2 is a bug fi for 7.0 On Tue, 28 Mar 2000, Mahmuth Mathumbha The III mewed: > What is the defference in mnd 7.0 and mdk 7.0-2 -- My new linux web server with Apache http://kittypuss.dnydns.org Sign up for ClickDough and get paid to surf the web. http://secure.clickdough.com/servlets/cr/

Re: [expert] Multiple Processes

2000-03-28 Thread Michael D. Kirkpatrick
One minor problem with doing it that way... If I double click on the submit button, it works. The second process is terminated immediately. However, the original process goes into defunct status and exits after it is done processing the databases. It never makes it to the exit routine that rem

Re: [expert] Samba

2000-03-28 Thread Gene Reeves
Make sure your Owner/File permissions are correct, if the user does not have write permission on that dir they will not beable to write to it. - Original Message - From: "Pavlina, Erik J." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 24, 2000 2:06 PM Subject: [expert]

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread vern
Thanks Pj ! They are on my list! Vern On Mon, 27 Mar 2000, you wrote: > Vern, > > I've had really good luck with these PCI cards in both W98 and L-M 6.0. > They are of medium expense; have good quality and better than average > performance running under a ASUS Slot 7 mobo/Intel MMX200 CPU and 6

[expert] How to use printerdrake

2000-03-28 Thread Leonardo T. de Carvalho
After an upgrade from 6.1, my computer didn't print anymore on the TCP printer (a HP LaserJet 5) . Before the upgrade, all works fine. After, ALL machines cannot print. I've tryied many things, but got stall on the message "lpr: Printer queue is disabled"

Re: [expert] Multiple Processes

2000-03-28 Thread Bug Hunter
Well, your button is the one that starts the script. If you have access to the code in the button, the button code can write the .lck file and then decide to spawn the perl script, or ignore the click, then the perl script can delete the .lck file, if the perl script is being run in a separate

Re: [expert] Multiple Processes

2000-03-28 Thread Michael D. Kirkpatrick
Maybe I forgot to mention that this is all done through a web interface. The perl script that is being ran is executed from a private web page. I am playing with using "top" to gather a list of processes, but it takes it 1-2 second to get past that part of the code. Do you know of a quicker pro

Re: [expert] Multiple Processes

2000-03-28 Thread Rial Juan
How about the plain old lock-file trick? First thing the script does is check if a file called 'lock' or something, exists. If not, it creates an empty file called 'lock', and continues. When it's finished, it deletes the file. All you have to do is make sure that you check for the files existanc

Re: [expert] Dumb, Dumber, Dumbest - Redefined

2000-03-28 Thread Theo Brinkman
Charles Curley wrote: > > On Mon, Mar 27, 2000 at 11:36:17PM -0500, Brian T. Schellenberger wrote: > -> > -> First, there's no need to modify mtab; that's the current state of the > -> system. You only need to modify fstab. > -> > -> By the same token, the empty mtab is just empty 'cause the mou

Re: [expert] How to use printerdrake

2000-03-28 Thread Theo Brinkman
"Leonardo T. de Carvalho" wrote: > > After an upgrade from 6.1, my computer didn't print anymore on > the TCP printer (a HP LaserJet 5) . > Before the upgrade, all works fine. > After, ALL machines cannot print. > I've tryied many things, but got stall on the messa

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread Wayne
I must say that my GeForce works well under Linux. However, it is a very expensive card and not really intended for Linux so you should consider something a little less expensive. The TNT and TNT2 cards are a good buy, and you shouldn't have any trouble with the majority of SB sound cards. Way

[expert] kfm hang up only with mandrake

2000-03-28 Thread Leopold Palomo
Hi, I have a strange problem with kde. My computer is PII266 128Mb, 13 Gb IDE,.. nothing expecial. I have several partitions of my hard disk, and one of them are a typical win95 in hda1. My root partition is hda5. My problem is that ONLY with Mandrake distribution (I have tested it with corel and

Re: [expert] Multiple Processes

2000-03-28 Thread John Aldrich
On Tue, 28 Mar 2000, you wrote: > How about the plain old lock-file trick? First thing the script does is check if > a file called 'lock' or something, exists. If not, it creates an empty file > called 'lock', and continues. When it's finished, it deletes the file. All you > have to do is make sur

Re: [expert] Multiple Processes

2000-03-28 Thread Bug Hunter
ps ax | grep process name is a good replacement for top for just getting data about processes. On Tue, 28 Mar 2000, Michael D. Kirkpatrick wrote: > Maybe I forgot to mention that this is all done through a web interface. The perl > script that is being ran is executed from a private web pa

[expert] dns?

2000-03-28 Thread zed
What do I need to do to get DNS working in 7.02? I have tried but to no avail. Spent 3 days down because of it and ended up reinstalling fresh 6.1 and going from there. In 6.1 the setup clearly lets you setup DNS. Where is it on 7.02? -- This is us; this is who we are.

Re: [expert] Multiple Processes

2000-03-28 Thread Rial Juan
Instead of top, try using "ps". See the manpage of ps for more info on which command-line options you want to have, but "ps aux" should do the trick... On Mar 28 [EMAIL PROTECTED] wrote: > Maybe I forgot to mention that this is all done through a web interface. The perl > script that is being

Re: [expert] Multiple Processes

2000-03-28 Thread Rial Juan
Something must be wrong with the script then. Perhaps, if it's not some top-secret stuff, you might paste the script into a mail to this list, so some perl gurus here can take a look at it? On Mar 28 [EMAIL PROTECTED] wrote: > One minor problem with doing it that way... > > If I double click o

[expert] parallel port modules didn't compile... where are they?

2000-03-28 Thread Stephen Bosch
I am/was running Mandrake 6.1 on 2.2.13-7mdk. In order to add sound support for my Diamond Monster MX300, I had to compile a kernel. I used the kernel sources for 2.2.14 to do this. It compiled just fine. The binary works, and I got my sound running. Things were great until I discovered that I

[expert] Wrong options used for smbmount in Gnome Samba Browser (gnomba)

2000-03-28 Thread jwang
Hi, I have some problems mounting the shares seen in the Gnome Samba Browser (gnomba). The debug output shows that the gnomba program is still using old-pattern options for the smbmount command: exec:smbmount "//fjall/test" "/mnt/test" -W "JUKEBOX" -U "guest" -I 192.168.46.87 The manpage

Re: [expert] ncr895(symbios) install problem

2000-03-28 Thread Wolfgang Bornath
On Sun, Mar 26, 2000 at 14:35 +0200, Burkhard Zombronner wrote: > I am facing a problem on installing Mandrake 7.0 from iso-image: > > On starting installation the ncr895 is detected correctly and the menu starts > and i am able to select language, keyboard and installation method. After the > m

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread Rial Juan
I'm sorry if I step on some toes here, and I double-cheked during the writing of this mail to make sure I'm not telling lies here, but nVidia has a terrible driver-policy. Oh yes, their cards work well in 2D, or at least good enough, but their openGL drivers for XFree 3.3.5 are crappy. Their exp

[expert] tcp_wrappers - Paranoid ?

2000-03-28 Thread Dan Jones
Can anyone confirm for me that the tcpd binary found in the tcp_wrappers rpm was built with -DPARANOID ?

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread vern
Okay Wayne thanks for the input I think the TNT & Voodoo cards (the older versions) are available locally at a pretty decent price. All the gamers are waiting for the newest versions to ship to the stores here. Vern On Tue, 28 Mar 2000, you wrote: > I must say that my GeForce works well under Lin

Re: [expert] Multiple Processes

2000-03-28 Thread Charles Curley
On Tue, Mar 28, 2000 at 02:29:26PM -0600, Michael D. Kirkpatrick wrote: -> Maybe I forgot to mention that this is all done through a web interface. The perl -> script that is being ran is executed from a private web page. I am playing with using -> "top" to gather a list of processes, but it ta

Re: [expert] Netscape hangs linux

2000-03-28 Thread Craig Woods
Try looking in "/root/.netscape/" for a lock file, and delete this guy. Do not have a netscape instance running while deleting "lock file" See if that helps Craig "Joseph S. Gardner" wrote: > OK guys (and gals), > > I did a fresh install of 7.0-2 using the recommended settings. > Hardware is

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread Christopher Quale
Vern, For a good price/performance you may want to look into the Creative Labs Blaster Banshee (PCI). I believe they can be had for < 60$ US and the 2D and 3D support in Linux is quite good. As far as sound cards go, I have a SB Live! X-gamer, and, using the drivers from http://opensource.creat

[expert] Netscape doesnt work for all user accounts

2000-03-28 Thread David G. Thiessen
hi i have a problem with netscape after installing mandrake 7.0. netscape works fine for root and the initial user that i setup in the install. later i added users. when these users try to start netscape they get an error: Bus error. anyone know what the possible solution to this problem is?

Re: [expert] Printer recommendation

2000-03-28 Thread Alan N.
Daniel Woods wrote: > > > Wayne wrote: > > > > > > Volker, > > > the BJC-2000 and 3000 work fine with Linux. It provides driver for the 4000 > > > and 600, which are the same engines used for the above two printers. I > > > installed a 2000 with no problems and someone else here has installed a

[expert] directory question?

2000-03-28 Thread Alan N.
Hey all.. I discovered something the other night playing with Sawmill that I cannot find an answer to.. I was installing themes and it said copy to /home/user/.sawmill or something.. ANyway, I discovered this /.sawmill dir along with a whole lotta other /.xx dirs using ls -la.. If I do ls,

Re: [expert] dns?

2000-03-28 Thread John Aldrich
On Tue, 28 Mar 2000, you wrote: > What do I need to do to get DNS working in 7.02? I have > tried but to no avail. Spent 3 days down because of it and > ended up reinstalling fresh 6.1 and going from there. In > 6.1 the setup clearly lets you setup DNS. Where is it on > 7.02? -- > You mean /etc/

Re: [expert] parallel port modules didn't compile... where are they?

2000-03-28 Thread John Aldrich
On Tue, 28 Mar 2000, you wrote: > I am/was running Mandrake 6.1 on 2.2.13-7mdk. In order to add sound support > for my Diamond Monster MX300, I had to compile a kernel. I used the kernel > sources for 2.2.14 to do this. > > It compiled just fine. The binary works, and I got my sound running. Thin

Re: [expert] lost interrupt - can't boot

2000-03-28 Thread John Aldrich
On Tue, 28 Mar 2000, you wrote: > Every time I try to boot with Mandrake 7, the init hangs when trying to > get the partition table of my zip drive at hdc. It keeps displaying: > > hdc: lost interrupt > > What does this mean, and how can I remedy it? > Your hdparm is too "aggressive." Your ha

RE: [expert] directory question?

2000-03-28 Thread Ken Wilson
Anything in a file directory with a '.' in front of it will be hidden, whether its a file or a directory. This is to safeguard special files from users who don't have the savvy to be messing with them. Also, because they are usually generated by programs for specific use by the program they are

Re: [expert] dns?

2000-03-28 Thread Herman R.willett
Hi: Use DrakConf icon on the desk top. Select the DNS icon, and follow the prompts. Herman On Tue, 28 Mar 2000, you wrote: > What do I need to do to get DNS working in 7.02? I have > tried but to no avail. Spent 3 days down because of it and > ended up reinstalling fresh 6.1 and going from the

Re: [expert] Joystick/SB AWE32 Game Port

2000-03-28 Thread Sheldon Lee Wen
I've had the same problem. If someone can find a solution please post it. -- == "Definitions involving chicken heads no longer apply." -Jon katz =

Re: [expert] directory question?

2000-03-28 Thread Brian T. Schellenberger
Well, it's a Unix convention dating back at least 20 years (and I presume all the way back to 1972 or thereabouts) that a file starting with a dot is a hidden file. That is, in order to reduce clutter, you can name a file starting with a dot and then it won't be shown with an ordinary ls command

Re: [expert] directory question?

2000-03-28 Thread Alan N.
Ken Wilson wrote: > > Anything in a file directory with a '.' in front of it will be hidden, > whether its a file or a directory. This is to safeguard special files > from users who don't have the savvy to be messing with them. Also, > because they are usually generated by programs for specific

[expert] /boot/System.map question

2000-03-28 Thread Tim & Val Litwiller
This should probably be in the newbie list, but since I don't have time for both I'll ask it here? What is the System.map file for? and does it matter if it is not the same as the kernel that i am running? I went back to a 2.2.13 kernel so I could apply the hpt366 kernel patch to support my Abi

Re: [expert] /boot/System.map question

2000-03-28 Thread Michael Holt
Tim & Val Litwiller wrote: > This should probably be in the newbie list, but since I don't have time > for both I'll ask it here? > > What is the System.map file for? and does it matter if it is not the > same as the kernel that i am running? > > I went back to a 2.2.13 kernel so I could apply th

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread vern
Ok Chris, Blasters it is! Thanks for the info, I have to add these to the list! Just "normal" audio/video needed at a reasonable cost. So these cards are very approperate! Vern On Tue, 28 Mar 2000, you wrote: > > > Vern, > > For a good price/performance you may want to look into the > Creati

Re: [expert] /boot/System.map question

2000-03-28 Thread Brian T. Schellenberger
The System.map file is theoretically used only for "debugging" type stuff but the original user's report makes me wonder if it does something more critical. On Tue, 28 Mar 2000, you wrote: | Tim & Val Litwiller wrote: | | > This should probably be in the newbie list, but since I don't have time

[expert] My semi-famous "issues' mail

2000-03-28 Thread Brian T. Schellenberger
Ok, a number of times I've referred to issues I had with installing Mandrake 7.0. I've finally settled for reporting the outstanding issues using the official Mandrake bug-reporting process. I'm re-posting the original mail (originally sent to the cooker list) here for those who are curious

Re: [expert] kfm hang up only with mandrake

2000-03-28 Thread Civileme
Leopold Palomo wrote: > > Hi, > > I have a strange problem with kde. My computer is PII266 128Mb, 13 Gb > IDE,.. nothing expecial. I have several partitions of my hard disk, and > one of them are a typical win95 in hda1. My root partition is hda5. My > problem is that ONLY with Mandrake distribu

Re: [expert] lost interrupt - can't boot

2000-03-28 Thread Kirk McElhearn
On 29/03/00 4:43, John Aldrich [EMAIL PROTECTED] is reported to have said: >Your hdparm is too "aggressive." Your hard drive/controller can't deal with >that level of HD access "optimization." It may be the default optimization

Re: [expert] dns?

2000-03-28 Thread huth
dumb question: have you installed is. don´t smile!, i tried to get dns work almost one day before i realized the package wasn´t installed. you can configure dns quite well without having named daemon installed. heiko zed wrote: > > What do I need to do to get DNS working in 7.02? I have > trie

Re: [expert] Best audio/video cards for Linux??

2000-03-28 Thread Mage Grimau
--- vern <[EMAIL PROTECTED]> wrote: > Ok Chris, Blasters it is! > Thanks for the info, I have to add these to the > list! > Just "normal" audio/video needed at a reasonable > cost. So these cards are very approperate! > Vern > > > On Tue, 28 Mar 2000, you wrote: > > > > > > Vern, > > > > Fo