Yes. Using the standard directions you end up with a new kernel called "NNNcustom" on the Grub menu so there is no damage. However if you try to boot that kernel it doesn't work. I may try a different config.
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Saturday, June 14, 2003 12:00 PM To: [EMAIL PROTECTED] Subject: [news] redhat-list digest, Vol 1 #8032 - 35 msgs Send redhat-list mailing list submissions to [EMAIL PROTECTED] To subscribe or unsubscribe via the World Wide Web, visit https://www.redhat.com/mailman/listinfo/redhat-list or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of redhat-list digest..." Today's Topics: 1. RE: Network speed (Bret Hughes) 2. RE: Configuring sendmail as a backup relay (Cowles, Steve) 3. Sound (Skip Morrow) 4. Re: Sound (Edward Dekkers) 5. simultaneously (Dadi) 6. Re: Sound (Stephen Kuhn) 7. Mozilla ugly radio buttons/widgets (Didier Casse) 8. MATLAB , like application beyond octave (Karim Nowruzi) 9. Internet sharing with ADSL/USB modem (Arnaldo Bento) 10. Simple networking woes ([EMAIL PROTECTED]) 11. Custom Kernel on RH9 (John Ellenberger) 12. Re: Simple networking woes (=?iso-8859-1?q?Manuel=20Ar=F3stegui=20Ramirez?=) 13. Re: Custom Kernel on RH9 (=?iso-8859-1?q?Manuel=20Ar=F3stegui=20Ramirez?=) 14. Re: simultaneously (Cameron Simpson) 15. Re: BASH scripting for a mouse (Cameron Simpson) 16. Domain Name (Roger Harrington) 17. Re: Domain Name (Ravi Narwade) 18. Re: Please help: Equivalent software packages of Windows on Linux (fred smith) 19. Re: Sound (David Eduardo Gomez Noguera) 20. LILO - Getting other kernels at boot time? (Syl) 21. RE: Configuring sendmail as a backup relay (Jason Staudenmayer) 22. Re: dma_intr crc error booting kernel (Angelo) 23. do I have to pay for xmms ? (Arema) 24. Re: do I have to pay for xmms ? (Devrim GUNDUZ) 25. Re: Can I change user UID and not lose ownership? (Technoslick) 26. Re: Sound (John Nichel) 27. Re: Internet sharing with ADSL/USB modem (John Nichel) 28. Re: do I have to pay for xmms ? (Michael Schwendt) 29. Re: Can I change user UID and not lose ownership? (Anthony E. Greene) 30. RE: Sage Line 50 Version 9 (Liam Meadows) 31. Re: Using syslog across network (Anthony E. Greene) 32. Re: Can I change user UID and not lose ownership? (Technoslick) 33. Re: Mozilla ugly radio buttons/widgets (Reuben D. Budiardja) 34. RUN fsck MANUALLY (rm) 35. Re: RUN fsck MANUALLY (Hal Burgiss) --__--__-- Message: 1 Subject: RE: Network speed From: Bret Hughes <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: 13 Jun 2003 21:48:38 -0500 Reply-To: [EMAIL PROTECTED] On Tue, 2003-06-10 at 11:08, Chris W. Parker wrote: > jeff allen <mailto:[EMAIL PROTECTED]> wrote: > > > I can bring the man pages up on traceroute but it comes up with the > > error command not found. > > That's because the path that leads to traceroute is not a part of a regular user's environment. You have to specifically call it. Use 'locate traceroute' to find out where it is. > > > As well I can ping web pages like google but I can't do it to our > > intranet. This web page is inside of our network. > > > > This is what I am typing: > > > > ping http://monolith/front_page/MFW_index/htm > > > > > > Am I missing something here? > > Yes you are. You (not you specifically, but people in general) don't ping webpages, you ping DNS records. > Well, not exactly ping is a program that sends an ICMP message (echo request) to a machine. as with most (all?) tcp/ip networking programs if the host given as an argument is not recognized as an ip address, a call to a name resolution routines like gethostbyname() is made to map a host name to an ip address. This is where DNS comes in. a typical linux host configuration will look in the file /etc/hosts an if not found will ask the dns server defined in /etc/resolv.conf for the ipaddress of the hostname. It can take a while for the name resolution to time out. > Try 'ping monolith' or 'ping http://monolith' and see what you get. I've never seen an http address without a top level domain (i.e. .com, .net, .org, etc.) so I'd be surprised if either of those worked. > I agree, that pinging monolith will let you know if the name resolution is working. I would compare the /etc/hosts and /etc/resolv.conf files between the working and not working machines. Bret --__--__-- Message: 2 From: "Cowles, Steve" <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: RE: Configuring sendmail as a backup relay Date: Fri, 13 Jun 2003 21:38:03 -0500 Reply-To: [EMAIL PROTECTED] > -----Original Message----- > From: Jake Colman > Sent: Friday, June 13, 2003 10:07 AM > Subject: Configuring sendmail as a backup relay > > > I'd like configure a backup mail server for my domain. The > backup mail server is a RedHat box in another domain. It > would seem I need to do the following: > > 1) Create a higher numbered MX record in my domain's dns > entry that points to the backup mail server. Correct! > > 2) On the backup up mail server, configure sendmail.mc to > uncomment the line containing "FEATURE(`relay_based_on_MX')dnl". The relay_based_on_MX feature is not needed. 1) Add an entry to your mailertable file: mydomain.com esmtp:[ip of primary mail server] 2) Then add mydomain.com to /etc/mail/relay-domains. Whatever you do... do NOT add mydomain.com to /etc/mail/local-host-names. 3) Rebuild the mailertable database and then restart sendmail FWIW: There is a second option (this is what I do). Use the DSMTP mailer. 1) add mydomain.com to /etc/mail/mailertable: mydomain.com dsmtp:[ip of primary mail server] 2) add my domain.com to /etc/mail/relay-domains. 3) Rebuild the mailertable database and then restart sendmail The difference is now sendmail will queue all e-mail for mydomain.com instead of trying to deliver to the primary (which is down). Plus the normal sendmail queue runs will be ignored for e-mails that were queued with the DSMTP mailer. i.e. No DSN's are issued should your primary be down for an extended amount of time. There is an added step to using the DSMTP mailer. To release the queued e-mail from the backup server, you will need to issue an ETRN against the backup mailer server from the primary when its backup and running. I simply have a cronjob do this once an hour. Example: Using the supplied etrn.pl script supplied with the sendmail source... from the primary: etrn.pl backup.mydomain.com mydomain.com Steve Cowles --__--__-- Message: 3 Subject: Sound From: Skip Morrow <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: 14 Jun 2003 00:28:15 -0400 Reply-To: [EMAIL PROTECTED] Once and for all, I'd like to have my sound card working *right*. Ever since I started with linux (several years ago), I have always had one problem or another with sound. Works with one window manager but not another. Works with this app but not that one. Works for a while but stops inexpicibly (sp??) whenever it feels like it. Someone, anyone, tell me what soundcard you are using, what software drivers you loaded (esd, artsd, etc.), if any, what you have in /etc/modules.conf, and any other immediately apparent tips. From my experience, this in one of those things that will keep linux off the desktop for most people, unless we get it straight. Skip --__--__-- Message: 4 Date: Sat, 14 Jun 2003 13:34:33 +0800 From: Edward Dekkers <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Sound Reply-To: [EMAIL PROTECTED] Skip Morrow wrote: > Once and for all, I'd like to have my sound card working *right*. Ever > since I started with linux (several years ago), I have always had one > problem or another with sound. Works with one window manager but not > another. Works with this app but not that one. Works for a while but > stops inexpicibly (sp??) whenever it feels like it. Someone, anyone, > tell me what soundcard you are using, what software drivers you loaded > (esd, artsd, etc.), if any, what you have in /etc/modules.conf, and any > other immediately apparent tips. From my experience, this in one of > those things that will keep linux off the desktop for most people, > unless we get it straight. > > Skip HHmm. Don't know about that Skip. I always use Creative cards (sort of like a de-facto standard) and have NEVER had a problem. Only time I had sound problems is when I was dealing with the cheaper stuff. Regards, Ed. --__--__-- Message: 5 Subject: simultaneously From: Dadi <[EMAIL PROTECTED]> To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> Organization: Date: 14 Jun 2003 09:24:17 -0200 Reply-To: [EMAIL PROTECTED] I need to launch a command, simultaneously, on several 'Nix servers from a remote computer runnig RH; the number of the servers is quite big so to telnet or ssh in each one of them is not the way to do it ... ; is there any way that I can do that on a single line of command ?? (the command must log me in [start a tty I guess ..], do the thing that I want and them log me off (encryption is not an issue so I don't necessary need ssh)). Once I know the command I can write a small script that can do the job whenever I want by using cron .... Any ideas ?? Thanks in advance for your answers -- Once a Linux user always a Linux user --__--__-- Message: 6 Subject: Re: Sound From: Stephen Kuhn <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Organization: Kuhn Media Australia Date: 14 Jun 2003 17:13:57 +1000 Reply-To: [EMAIL PROTECTED] On Sat, 2003-06-14 at 14:28, Skip Morrow wrote: > Once and for all, I'd like to have my sound card working *right*. Ever > since I started with linux (several years ago), I have always had one > problem or another with sound. Works with one window manager but not > another. Works with this app but not that one. Works for a while but > stops inexpicibly (sp??) whenever it feels like it. Someone, anyone, > tell me what soundcard you are using, what software drivers you loaded > (esd, artsd, etc.), if any, what you have in /etc/modules.conf, and any > other immediately apparent tips. From my experience, this in one of > those things that will keep linux off the desktop for most people, > unless we get it straight. > > Skip Although I'll get flamed for this, RedHat isn't quite the best for sound/multimedia - there are other distributions that have made more of an effort in this arena, and you might find it worth your while to check it out being that sound/multimedia are a priority to you. I used to live solely for the RedHat, but after RH 8.0, I had no choice but to find something else for my "workstation" purposes. Now, on the other hand, I love to put RH on every server I get in my grubby little hands, so I haven't quite left the flock - I sincerely believe that RHL works wonders on servers and is a better product for that purpose...but for a workstation, there are way too many performance issues, sound/multimedia issues and other niggling issues that prevent me from mucking around with it too much. Mandrake 9.1 is turning into a quite a multimedia/sound package - and generally, 90% of the time picks up all your sound/multimedia devices on the first go; and I'm personally more than impressed with it's sound reproduction and performance for doing things as complex as sound engineering and DD recording...(aside from the usual MP3 playing and DVD playing and the likes). Just my two Aussie cents... -- Sat Jun 14 17:05:00 EST 2003 17:05:00 up 1 day, 19 min, 1 user, load average: 0.05, 0.11, 0.06 ----------------------------------------------------------------- | __ __ |kuhn media australia | | /-oo /| |'-. |http://kma.0catch.com | | .\__/ || | | |================================| | _ / `._ \|_|_.-' |stephen kuhn | | | / \__.`=._) (_ | email: [EMAIL PROTECTED] | ----------------------------------------------------------------- linux user #:267497 linux machine #:194239 * MDK 9.1 & RH 7.3 Mandrake Linux Kernel 2.4.21-11mdk Cooker for i586 ----------------------------------------------------------------- * This message was composed on a 100% Microsoft free computer * *C'est ca la mer ?!! En fait c'est de l'eau ! Vas-y toi, elle m'a mouill la mer !* Attend tu respectes "the Sea", d'accord !! --__--__-- Message: 7 Date: Sat, 14 Jun 2003 15:22:54 +0800 (SGT) From: Didier Casse <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Mozilla ugly radio buttons/widgets Reply-To: [EMAIL PROTECTED] When I browse the web with Mozilla on Linux... All the radio buttons, check buttons, form buttons/search buttons on the web look horrible when compared to Windows environment. If I browse with opera then these buttons look nice. Does anybody know how to make these buttons look nice on Mozilla? I heard there's something called widget which we have to modify but I've no clue how. Anybody can enlighten me on this? -- Didier PhD student Singapore Synchrotron Light Source (SSLS) 5 Research Link, Singapore 117603 Email: [EMAIL PROTECTED] or [EMAIL PROTECTED] Website: http://ssls.nus.edu.sg --__--__-- Message: 8 Subject: MATLAB , like application beyond octave From: Karim Nowruzi <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Organization: Shiraz University Date: 14 Jun 2003 01:14:26 +0430 Reply-To: [EMAIL PROTECTED] is there any program(of course GNU) smilier to MATLAB except octave. --__--__-- Message: 9 From: "Arnaldo Bento" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Internet sharing with ADSL/USB modem Date: Sat, 14 Jun 2003 10:36:03 +0100 Reply-To: [EMAIL PROTECTED] Hi I will answer some questions done by those that answered to this subject: - Yes the computer that has RH 9.0 is defined as Gateway - The modem Siemens Santis doesn't have ethernet connection. It is a modem with USB connection. - The other computers have Win 2000 and Win XP with static IPs and the gateway is the IP of computer with RH 9.0. After reading recommended HowTos I think that the problem that I am to face it is because the modem doesn't have ethernet connection. HowTos that I read doesn´t indicate how sharing an internet connection with this type of modem. I wait to have left more indications so that you can help me. Thanks. Arnaldo Bento >Hi >I don't know if this subject was already discussed in this group but me >I didn't find the information on my problem. > >I have a small network with 5 computers and I want to share >ADSL internet connection that is in a computer with RH 9.0. > >The connection to the internet is made with a modem ADSL / USB Siemens Santis. > >The connection works well in this computer (RH 9.0) but I don't get to configure >this connection to be shared by the other computers. > >Any help will be appreciated. >Arnaldo --__--__-- Message: 10 Date: Sat, 14 Jun 2003 19:03:55 +0900 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Simple networking woes Reply-To: [EMAIL PROTECTED] I'm a Linux networking newbie, but I've spent quite a few hours googling and going through howto's so thought I would now try here. I have a redhat 9 box and a redhat 8 laptop. The redhat 9 is online and working find (gets it's ip address from the cable modem.) I've been trying to add the laptop. Firstly, I seem to have a few problems getting the laptops card to work. The right device is detected in the network device control util. However, tryign to activate the card fails, as does /etc/rc.id/init.d/network start (error: Determining IP information for eth0.... failed.) I can bring it up with ifconfig, which subsequently reports that everything is active. Why would the network start call fail, yet ifconfig appear to work? Anyway, even after it appears to be working, the two machines can't ping each other. (Either pinging the dhcp assigned address, or the one obtained after adding a second interface. Output of ifconfig is included (IP address ommitted): eth0 Link encap:Ethernet HWaddr 00:00:21:C6:EF:63 inet addr:81.x.x.139 Bcast:255.255.255.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:23499 errors:0 dropped:0 overruns:0 frame:0 TX packets:8355 errors:0 dropped:0 overruns:0 carrier:0 collisions:5 txqueuelen:100 RX bytes:20813589 (19.8 Mb) TX bytes:677925 (662.0 Kb) Interrupt:5 Base address:0xd400 eth0:0 Link encap:Ethernet HWaddr 00:00:21:C6:EF:63 inet addr:10.0.0.2 Bcast:10.255.255.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:23499 errors:0 dropped:0 overruns:0 frame:0 TX packets:8355 errors:0 dropped:0 overruns:0 carrier:0 collisions:5 txqueuelen:100 RX bytes:20813589 (19.8 Mb) TX bytes:677925 (662.0 Kb) Interrupt:5 Base address:0xd400 running 'arp -a' on the laptop reports 10.0.0.2, but I'm not sure what arp is telling me. My guess is that the laptop ethernet card is not being bought up fully - does this sound feasible? If not, anything else I could do to debug? Or, any more info you need? Thanks in advance Ben --__--__-- Message: 11 From: "John Ellenberger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Custom Kernel on RH9 Date: Sat, 14 Jun 2003 06:13:42 -0400 Reply-To: [EMAIL PROTECTED] I need to build a custom kernel for the ATI.2 drivers. Right now I'm just trying to reproduce the existing RH9 Kernel 2.4.20-18.9.i686 using the build procedures described in Appendix A of the customization manual. With no changes to the config I get a "kernel panic no init found" on the resulting kernel. I am doing: make mrproper cp configs/kernel-2.4.20-i686.config .config make xconfig >>save and exit make dep make bzImage make install The only warning is "kernel too big for standalone/floppy boot". What gives? Are the directions bogus? --__--__-- Message: 12 Date: Sat, 14 Jun 2003 12:15:58 +0200 (CEST) From: =?iso-8859-1?q?Manuel=20Ar=F3stegui=20Ramirez?= <[EMAIL PROTECTED]> Subject: Re: Simple networking woes To: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] if you reboot your RH8 your ifconfig -a output show your 10.x.x.x IP o you must run ifconfig lo YOUR-IP after rebooting your RH8? --- [EMAIL PROTECTED] escribió: > I'm a Linux networking newbie, but I've spent quite > a few hours googling and > going through howto's so thought I would now try > here. I have a redhat 9 box > and a redhat 8 laptop. The redhat 9 is online and > working find (gets it's ip > address from the cable modem.) I've been trying to > add the laptop. > > Firstly, I seem to have a few problems getting the > laptops card to work. The > right device is detected in the network device > control util. However, tryign to > activate the card fails, as does > /etc/rc.id/init.d/network start (error: > Determining IP information for eth0.... failed.) I > can bring it up with > ifconfig, which subsequently reports that everything > is active. Why would the > network start call fail, yet ifconfig appear to > work? > > Anyway, even after it appears to be working, the two > machines can't ping each > other. (Either pinging the dhcp assigned address, > or the one obtained after > adding a second interface. Output of ifconfig is > included (IP address ommitted): > > eth0 Link encap:Ethernet HWaddr > 00:00:21:C6:EF:63 > inet addr:81.x.x.139 > Bcast:255.255.255.255 Mask:255.255.255.0 > UP BROADCAST RUNNING MULTICAST MTU:1500 > Metric:1 > RX packets:23499 errors:0 dropped:0 > overruns:0 frame:0 > TX packets:8355 errors:0 dropped:0 > overruns:0 carrier:0 > collisions:5 txqueuelen:100 > RX bytes:20813589 (19.8 Mb) TX > bytes:677925 (662.0 Kb) > Interrupt:5 Base address:0xd400 > > eth0:0 Link encap:Ethernet HWaddr > 00:00:21:C6:EF:63 > inet addr:10.0.0.2 Bcast:10.255.255.255 > Mask:255.255.255.0 > UP BROADCAST RUNNING MULTICAST MTU:1500 > Metric:1 > RX packets:23499 errors:0 dropped:0 > overruns:0 frame:0 > TX packets:8355 errors:0 dropped:0 > overruns:0 carrier:0 > collisions:5 txqueuelen:100 > RX bytes:20813589 (19.8 Mb) TX > bytes:677925 (662.0 Kb) > Interrupt:5 Base address:0xd400 > > running 'arp -a' on the laptop reports 10.0.0.2, but > I'm not sure what arp is > telling me. My guess is that the laptop ethernet > card is not being bought up > fully - does this sound feasible? If not, anything > else I could do to debug? > Or, any more info you need? > > Thanks in advance > Ben > > > > > > > -- > redhat-list mailing list > unsubscribe > mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list ===== -- Manuel Aróstegui Linux user 200896 ___________________________________________________ Yahoo! Sorteos - http://loteria.yahoo.es Juega a la Lotería Primitiva sin salir de casa --__--__-- Message: 13 Date: Sat, 14 Jun 2003 12:21:55 +0200 (CEST) From: =?iso-8859-1?q?Manuel=20Ar=F3stegui=20Ramirez?= <[EMAIL PROTECTED]> Subject: Re: Custom Kernel on RH9 To: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] When I recompile my kernel I always do: (in /usr/src/linux) cp ./arch/i386/boot/bzImage /boot/vmlinuz And then: cp System.map /boot I hope you have made a new LiLo menu for your new vmlinuz, haven't you? Regards --- John Ellenberger <[EMAIL PROTECTED]> escribió: > I need to build a custom kernel for the ATI.2 > drivers. Right now I'm just > trying to reproduce the existing RH9 Kernel > 2.4.20-18.9.i686 using the build > procedures described in Appendix A of the > customization manual. With no > changes to the config I get a "kernel panic no init > found" on the resulting > kernel. I am doing: > > make mrproper > cp configs/kernel-2.4.20-i686.config .config > make xconfig > >>save and exit > make dep > make bzImage > make install > > The only warning is "kernel too big for > standalone/floppy boot". > > What gives? Are the directions bogus? > > > > > -- > redhat-list mailing list > unsubscribe > mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list ===== -- Manuel Aróstegui Linux user 200896 ___________________________________________________ Yahoo! Sorteos - http://loteria.yahoo.es Juega a la Lotería Primitiva sin salir de casa --__--__-- Message: 14 Date: Sat, 14 Jun 2003 20:22:52 +1000 From: Cameron Simpson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: simultaneously Reply-To: [EMAIL PROTECTED] On 09:24 14 Jun 2003, Dadi <[EMAIL PROTECTED]> wrote: | I need to launch a command, simultaneously, on several 'Nix servers from | a remote computer runnig RH; the number of the servers is quite big so | to telnet or ssh in each one of them is not the way to do it ... ; is | there any way that I can do that on a single line of command ?? (the | command must log me in [start a tty I guess ..], do the thing that I | want and them log me off (encryption is not an issue so I don't | necessary need ssh)). Once I know the command I can write a small script | that can do the job whenever I want by using cron .... Why not just loop over the servers? while read host do ssh $host 'command ...' & done <list-of-servers I do a variant on that regularly at work. -- Cameron Simpson <[EMAIL PROTECTED]> DoD#743 http://www.cskk.ezoshosting.com/cs/ The face of a child says it all, especially the mouth part of the face. - Jack Handey --__--__-- Message: 15 Date: Sat, 14 Jun 2003 20:32:59 +1000 From: Cameron Simpson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: BASH scripting for a mouse Reply-To: [EMAIL PROTECTED] On 10:55 13 Jun 2003, David Kramer <[EMAIL PROTECTED]> wrote: | On Friday 13 June 2003 04:40 am, Matthew Richards wrote: [...] | > but I do not know how to determine if the string "serial" exists in the | variable SMOUSE in terms of the 'if' statement. | | The answer is.... you don't. | | If you specify the -q option, grep will exit immediately with zero status if | any match is found (even if an error was detected), or non-zero if no match | is found. The $? shell variable is always set to the exit code of the | previous command, so just check that. | | /bin/grep -qi "serial" /etc/sysconfig/mouse | if [ $? != 0 ]; then | echo "There is not a serial mouse attached to this system." | else | echo "A serial mouse is attached to this system." | fi Of course, because grep (and many other command) act as boolean tests, and if's condition test _is_ a command, a much more readbale idom is this: if /bin/grep -qi "serial" /etc/sysconfig/mouse then echo "A serial mouse is attached to this system." else echo "There is not a serial mouse attached to this system." fi No ugly poking at $? required. Cheers, -- Cameron Simpson <[EMAIL PROTECTED]> DoD#743 http://www.cskk.ezoshosting.com/cs/ The impossible we understand right away - the obvious takes a little longer. --__--__-- Message: 16 From: "Roger Harrington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Subject: Domain Name Date: Sat, 14 Jun 2003 21:16:40 +1000 Reply-To: [EMAIL PROTECTED] I have the following LAN setup:- athlon 192.168.0.10 Windows 2000 server 192.168.0.100 Rehat 9.0 backup 192.168.0.15 Windows 2000 laptop DHCP W98SE These interface with Internet via a Netgear RT314 router, with DHCP activated with up to 9 addresses. All PCs, inlcuding the RH9 have the fixed ip addresses and the host names put in their hosts files. I am not running a domain but have set the Windows PCs under Workgroup rather than a domain name. The RH9 machine I just put the name, server in the etc/hosts file along with its ip number. Some programs on the RH9 seem to be "grizzling" about such a setup, i.e. sendmail commenting on lack of fully qualified domain name. I also have a situation where transferring data from the Windows 2K to the RH9 goes well (100MB LAN) but coming back it is dead slow, about 3 minutes for a 10MB file. Should I set up a domain on my LAN, would it make things easier to set up and what software would I use? Roger --__--__-- Message: 17 Date: Sat, 14 Jun 2003 17:15:31 +0530 (IST) From: Ravi Narwade <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: [EMAIL PROTECTED] Subject: Re: Domain Name Reply-To: [EMAIL PROTECTED] hi if you are working with sendmail then you should configure DNS ravi On Sat, 14 Jun 2003, Roger Harrington wrote: > I have the following LAN setup:- > > athlon 192.168.0.10 Windows 2000 > server 192.168.0.100 Rehat 9.0 > backup 192.168.0.15 Windows 2000 > laptop DHCP W98SE > > These interface with Internet via a Netgear RT314 router, with DHCP > activated with up to 9 addresses. > > All PCs, inlcuding the RH9 have the fixed ip addresses and the host names > put in their hosts files. > > I am not running a domain but have set the Windows PCs under Workgroup > rather than a domain name. The RH9 machine I just put the name, server in > the etc/hosts file along with its ip number. > > Some programs on the RH9 seem to be "grizzling" about such a setup, i.e. > sendmail commenting on lack of fully qualified domain name. > > I also have a situation where transferring data from the Windows 2K to the > RH9 goes well (100MB LAN) but coming back it is dead slow, about 3 minutes > for a 10MB file. > > Should I set up a domain on my LAN, would it make things easier to set up > and what software would I use? > > Roger > > > > > > > > > > > -- ravi --__--__-- Message: 18 Date: Sat, 14 Jun 2003 08:23:19 -0400 From: fred smith <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Please help: Equivalent software packages of Windows on Linux Reply-To: [EMAIL PROTECTED] On Fri, Jun 13, 2003 at 07:53:10AM -0700, Jonathan Bartlett wrote: > > > 6) TOAD > > Tools for Oracle Application Developers? Or does it stand for something > else? Postgres's command-line interface is very good and powerful, and is > all I've ever needed. It doesn't suck like Oracle's > I dunno what TOAD is either, but if it is an Oracle developer's tool, check out TORA, which is something sorta kinda like "PL-SQL Developer" for windoze. A really cool tool. Do a search on freshmeat.net to turn up the URL for TORA. -- ---- Fred Smith -- [EMAIL PROTECTED] ----------------------------- "For him who is able to keep you from falling and to present you before his glorious presence without fault and with great joy--to the only God our Savior be glory, majesty, power and authority, through Jesus Christ our Lord, before all ages, now and forevermore! Amen." ----------------------------- Jude 1:24,25 (niv) ----------------------------- --__--__-- Message: 19 Subject: Re: Sound From: David Eduardo Gomez Noguera <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: 14 Jun 2003 07:38:51 -0500 Reply-To: [EMAIL PROTECTED] If you have made your soundcard work with, say, xmms, then lookout for what sound daemons your running, if any (i.e. esd, or that of kde or another, or any at all) and look for what sound daeoms your apps are trying to use, if any. An how they are configured. What could be happening is that they keep stepping on each others toes. --__--__-- Message: 20 Date: Sat, 14 Jun 2003 06:35:08 -0600 From: Syl <[EMAIL PROTECTED]> Subject: LILO - Getting other kernels at boot time? To: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] I have a dual Win2k/RH9 system with Lilo installed on the boot sector of /dev/hdb1. At start up I get two Win2k and one Linux boot options. After I select Linux RH9 boots without displaying Lilo. I want to access different kernel images however even if I hold the <Alt> or <Shift> all I get is a RH start screen with Linux/Dos. And when RH9 boots it loads the kernel 2.4.20-8. How do I access different kernels? Syl Here is my lilo.conf prompt timeout=50 default=linux boot=/dev/hdb1 map=/boot/map install=/boot/boot.b message=/boot/message linear image=/boot/vmlinuz-2.4.20-18.9 label=2.4.20-18.9 initrd=/boot/initrd-2.4.20-18.9.img read-only append="hdc=ide-scsi root=LABEL=/" image=/boot/vmlinuz-2.4.20-8 label=linux.bak initrd=/boot/initrd-2.4.20-8.img read-only append="hdc=ide-scsi root=LABEL=/" other=/dev/hda1 optional label=DOS image=/boot/vmlinuz-2.4.20-18.9 label=linux append="hdc=ide-scsi root=LABEL=/" read-only initrd=/boot/initrd-2.4.20-18.9.img --__--__-- Message: 21 From: Jason Staudenmayer <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: RE: Configuring sendmail as a backup relay Date: Sat, 14 Jun 2003 08:36:39 -0400 Reply-To: [EMAIL PROTECTED] How about qmail? -----Original Message----- From: Cowles, Steve [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 10:38 PM To: '[EMAIL PROTECTED]' Subject: RE: Configuring sendmail as a backup relay > -----Original Message----- > From: Jake Colman > Sent: Friday, June 13, 2003 10:07 AM > Subject: Configuring sendmail as a backup relay > > > I'd like configure a backup mail server for my domain. The > backup mail server is a RedHat box in another domain. It > would seem I need to do the following: > > 1) Create a higher numbered MX record in my domain's dns > entry that points to the backup mail server. Correct! > > 2) On the backup up mail server, configure sendmail.mc to > uncomment the line containing "FEATURE(`relay_based_on_MX')dnl". The relay_based_on_MX feature is not needed. 1) Add an entry to your mailertable file: mydomain.com esmtp:[ip of primary mail server] 2) Then add mydomain.com to /etc/mail/relay-domains. Whatever you do... do NOT add mydomain.com to /etc/mail/local-host-names. 3) Rebuild the mailertable database and then restart sendmail FWIW: There is a second option (this is what I do). Use the DSMTP mailer. 1) add mydomain.com to /etc/mail/mailertable: mydomain.com dsmtp:[ip of primary mail server] 2) add my domain.com to /etc/mail/relay-domains. 3) Rebuild the mailertable database and then restart sendmail The difference is now sendmail will queue all e-mail for mydomain.com instead of trying to deliver to the primary (which is down). Plus the normal sendmail queue runs will be ignored for e-mails that were queued with the DSMTP mailer. i.e. No DSN's are issued should your primary be down for an extended amount of time. There is an added step to using the DSMTP mailer. To release the queued e-mail from the backup server, you will need to issue an ETRN against the backup mailer server from the primary when its backup and running. I simply have a cronjob do this once an hour. Example: Using the supplied etrn.pl script supplied with the sendmail source... from the primary: etrn.pl backup.mydomain.com mydomain.com Steve Cowles -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list --__--__-- Message: 22 Subject: Re: dma_intr crc error booting kernel From: Angelo <[EMAIL PROTECTED]> To: RedHat List <[EMAIL PROTECTED]> Organization: Date: 14 Jun 2003 14:45:33 +0200 Reply-To: [EMAIL PROTECTED] Il sab, 2003-06-14 alle 03:44, pnelson <[EMAIL PROTECTED]> ha scritto: > try setting ide=nodma in your grub.conf or on the bootup command line. > > so the kernel line whould look like: > > kernel /vmlinuz-<your version> ro root=/dev/<your part> ide=nodma it worked! 10x do you think that i can re-enable dma after boot... now my box slowed down really a lot... after booting with dma (except that error messages) all worked good or maybe i can update something (kernel? hdparm?) to solve this keeping dma enabled bye --__--__-- Message: 23 Date: Sat, 14 Jun 2003 20:44:09 +0400 (EDT) Subject: do I have to pay for xmms ? From: "Arema" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] hello Friends, I just installed RH 9, then I played xmms BUT..it showed "MPEG Layer 1/2/3 not supported--Due to patent licensing, and conflicts between such patent licenses and the licences of application source code, MPEG-1/2 audio player(mp3) has been removed from this application by Red Hat, Inc. --We Appologize for the inconveniece" What's that all ? :( How can I play mp3 in RH 9? -- fresh newbie --__--__-- Message: 24 Date: Sat, 14 Jun 2003 15:57:07 +0300 (EEST) From: Devrim GUNDUZ <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: do I have to pay for xmms ? Reply-To: [EMAIL PROTECTED] Hi, On Sat, 14 Jun 2003, Arema wrote: > How can I play mp3 in RH 9? Visit http://www.xmms.org; read the instructions for rh9 and download the related rpm. Then have fun. I really appreciate Red Hat's approach on mp3. It is not an Open Source algorithm and should not take part in any of the distributions. Regards, -- Devrim GUNDUZ [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.tdmsoft.com http://www.gunduz.org --__--__-- Message: 25 Subject: Re: Can I change user UID and not lose ownership? From: Technoslick <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Organization: Date: 14 Jun 2003 09:12:52 -0400 Reply-To: [EMAIL PROTECTED] On Fri, 2003-06-13 at 19:49, Johnie Stafford wrote: > >>> On Fri, 13 Jun 2003 19:34:35 -0400, Technoslick <[EMAIL PROTECTED]> said: > > t> I've been looking for an answer to a question, but haven't seen anything > t> that helps me understand what to do... > > t> I'm running a mixture of RedHat and Mandrake machines in a Samba > t> supported network. Too late, I learned that the two distro's do not > t> default to the same starting number when first creating a user. Since I > t> am the only user, I have two UID's and its causing me connectivity > t> problems between the two distro's and Samba. > > t> I need to change the user UID from 500 to 501. From my research it > t> "appears" I may lose ownership, and/or home settings for that user. I > t> want to avoid this. > > t> How difficult is it and what steps need to be taken to successfully > t> change a user's UID while preserving his home and its contents as owner? > t> Is this something a newbie to Linux should be able to do? Any pointers > t> to URL's that tell it as it is are *highly* welcomed. I especially am > t> interested in cautions and real-life issues that I might not see in the > t> information I have scanned so far. > > > "find" is your friend. :) > > The "find" command will do what you want to do. > > First, just to make sure you're only going to affect the files you > really want to change, run this command: > > find / -uid 500 -ls > > That will give you a "ls -l" like listing of all the files owned by > the user with UID 500. If the list seems reasonable, then change the > UID of your user (by editing /etc/passwd or whatever means works best > for you). Then run the following command: (<username> is the login id > of your login account) > > find / -uid 500 -exec chown <username> {} \; > > When the find command runs, it will run the chown (change owner) > command on each file that it finds, it will replace the "{}" with the > file name. Don't forget the "\;" that is important as well. > > If the listing that you got with the original command isn't what you > were expecting, you might need to tweak the arguments to find. Do a > "man find" for a complete description of what find can do for you. > > Johnie Here's what I ended up doing, Johnie: I first exited to the console and logged in as root since I would be changing the status of some files that would be operational in X. I next changed the user's UID to 501: # usermod -u 500 501 ; Thanks Jerry Maldonado! Then, I applied your suggested method to convert all the files marked as UID 500 to 501: # find / -uid 500 -exec chown 501 {} \; That resolved the UID problem. However... On logging back in as user, I experienced a problem I didn't expect: GID would also be off. It was still set to 500. So, I changed the default group for the user to anything but its own named group, then deleted the group that I needed the GID changed on. I recreated the group, but with the GID as 501. Then I set the user to default to this newly formed group. Now, I had to change any file on the system that was tagged as GID 500 to 501 under that same group name. I used a modified version of what you gave me to do that: # find / -gid 500 -exec chgrp 501 {} \; It took a while, but when it was through, I had changed all that could be changed over to the new GID. Incidentally, I should mention that as the screen scrolled by with files that were changed, I saw that 'chgrp' was trying to modify the GID to those files on the server mounted as a share on this PC. Unfortunately, it failed to do so. A permissions issue over the network? If I were to do this again, I think I would make sure that no shares are mounted. Everything seems to be as it should be under the user's new identity. LinNeighborhood automatically sets my predefined shares almost immediately, something I had re-invoke manually each time, even though set to automatically do so. It would seem the mission was accomplished and a success. Thanks to you, Johnie (and to Jerry Maldonado for showing me how to use 'usermod'.) T --__--__-- Message: 26 Date: Sat, 14 Jun 2003 08:15:35 -0500 From: John Nichel <[EMAIL PROTECTED]> Organization: By-Tor.com To: [EMAIL PROTECTED] Subject: Re: Sound Reply-To: [EMAIL PROTECTED] Stephen Kuhn wrote: > On Sat, 2003-06-14 at 14:28, Skip Morrow wrote: > >>Once and for all, I'd like to have my sound card working *right*. Ever >>since I started with linux (several years ago), I have always had one >>problem or another with sound. Works with one window manager but not >>another. Works with this app but not that one. Works for a while but >>stops inexpicibly (sp??) whenever it feels like it. Someone, anyone, >>tell me what soundcard you are using, what software drivers you loaded >>(esd, artsd, etc.), if any, what you have in /etc/modules.conf, and any >>other immediately apparent tips. From my experience, this in one of >>those things that will keep linux off the desktop for most people, >>unless we get it straight. >> >>Skip > > > Although I'll get flamed for this, RedHat isn't quite the best for > sound/multimedia <snip> How dare you tell the truth. Flame, flame, flame. :) --__--__-- Message: 27 Date: Sat, 14 Jun 2003 08:18:31 -0500 From: John Nichel <[EMAIL PROTECTED]> Organization: By-Tor.com To: [EMAIL PROTECTED] Subject: Re: Internet sharing with ADSL/USB modem Reply-To: [EMAIL PROTECTED] Arnaldo Bento wrote: > Hi > I will answer some questions done by those that answered to this > subject: > - Yes the computer that has RH 9.0 is defined as Gateway > - The modem Siemens Santis doesn't have ethernet connection. It is a > modem with > USB connection. > - The other computers have Win 2000 and Win XP with static IPs and > the gateway is the IP of computer with RH 9.0. > > After reading recommended HowTos I think that the problem that I am > to face it is because the modem doesn't have ethernet connection. > > HowTos that I read doesn´t indicate how sharing an internet > connection with this type of modem. > > I wait to have left more indications so that you can help me. > > Thanks. > Arnaldo Bento How is the modem set up for networking? Is it set as eth0, eth1, or something like that? --__--__-- Message: 28 Date: Sat, 14 Jun 2003 15:30:06 +0200 From: Michael Schwendt <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: do I have to pay for xmms ? Reply-To: [EMAIL PROTECTED] -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sat, 14 Jun 2003 20:44:09 +0400 (EDT), Arema wrote: > I just installed RH 9, then I played xmms BUT..it showed > "MPEG Layer 1/2/3 not supported--Due to patent licensing, and conflicts > between such patent licenses and the licences of application source code, > MPEG-1/2 audio player(mp3) has been removed from this application by Red > Hat, Inc. --We Appologize for the inconveniece" > What's that all ? :( > How can I play mp3 in RH 9? Get and install an add-on package as offered on the following pages, for instance: http://www.fedora.us http://shrike.freshrpms.net http://www.xmms.org http://www.gurulabs.com - -- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQE+6yNe0iMVcrivHFQRAi57AJ9bdgiGhcPpLqNIMPP759WmPl34VgCfbfNU Q81bXwzqYtXjFr7cNrU3QWs= =nyrx -----END PGP SIGNATURE----- --__--__-- Message: 29 Date: Sat, 14 Jun 2003 09:48:56 -0400 From: "Anthony E. Greene" <[EMAIL PROTECTED]> Subject: Re: Can I change user UID and not lose ownership? To: [EMAIL PROTECTED] Organization: Americal Division Veterans Association <http://www.americal.org/> Reply-To: [EMAIL PROTECTED] On 13-Jun-2003/18:49 -0500, Johnie Stafford <[EMAIL PROTECTED]> wrote: >>>> On Fri, 13 Jun 2003 19:34:35 -0400, Technoslick <[EMAIL PROTECTED]> said: > t> I need to change the user UID from 500 to 501. From my research it > t> "appears" I may lose ownership, and/or home settings for that user. I > t> want to avoid this. > >"find" is your friend. :) > >The "find" command will do what you want to do. You'll need to edit /etc/group and change the group membership of those files too. Tony -- Anthony E. Greene <mailto:[EMAIL PROTECTED]> OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 239D AOL/Yahoo Messenger: TonyG05 HomePage: <http://www.pobox.com/~agreene/> Linux. The choice of a GNU generation <http://www.linux.org/> --__--__-- Message: 30 From: "Liam Meadows" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Subject: RE: Sage Line 50 Version 9 Date: Sat, 14 Jun 2003 14:53:13 +0100 Reply-To: [EMAIL PROTECTED] Thanks for that it also helped me with moving over my Access Data Backend But When running reports in sage it takes ages to do, where as it would only take 20 secs or so before it now takes 5 minutes, watching the packets move around it's as if the whole data is being moved over before the report previews, any idea's Liam -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Louis Sabet Sent: 10 June 2003 12:42 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Sage Line 50 Version 9 --On Saturday, June 07, 2003 11:27:32 +0100 [EMAIL PROTECTED] wrote: > Currently I have Sage Line 50 installed on a client PC and shared amongst > others via this, but I would like to install it on the RH9 Dell Server, > anyone done this or have any pointers how to do it ? > > Liam Hi Liam, I just battled through this myself - it wasn't easy. Mostly because of a lack of information on this specific problem out there, but the solution is relatively simple. (The trick is to look for info on file locking and MS Access databases). I presume you're currently running it on a windows machine, and want to instead store the data on SAMBA under linux. Step1: Install Samba (If you haven't already) Step2: Set up your smb.conf how you want it Step3: Create a SAGE share in the smb.conf like this: [sageline50] path = /home/netapps/sageline50 writeable = yes browseable = no create mask = 0777 directory mask = 0777 veto oplock files = /*.mdb/*.MDB/*.ldb/*.LDB locking = yes share modes = yes ...obviously replacing the path and share name above as appropriate. I found this worked well for me - you'll want to do some tweaking, specifically with permissions to stop people fiddling with things they shouldn't, but at least it works :-) Step4: chkconfig smb on (if you haven't already) Step5: /etc/rc.d/init.d/smb start (if you haven't already) Step4: Copy your sage data files from the windows machine to the samba share you just created Step5: Map drives from your windows clients to the new samba share (you'll need to ensure that usernames are the same on the client and redhat server). If you don't have users on the server (and don't want to), you can always set up the above share as a public share. You'll need a line like: guest user = ftp ...under the [general] section in smb.conf, and you'll want to add the line: public = yes ...to the share definition shown above. Step6: Change the Sage shortcuts on the windows machines so that the target is specified as: c:\path\to\sage\sfw.exe x: ...where x: is the drive letter you used to map to the sage data on your redhat server. The crucial lines in smb.conf for sage are: veto oplock files = /*.mdb/*.MDB/*.ldb/*.LDB locking = yes share modes = yes I found that unless these were in there, Sage would only allow access to one user at a time. Best Regards - feel free to contact me off-list if you need anything further. L -- Louis Sabet - IT Manager http://www.mobiles.co.uk http://www.gadgets.co.uk -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list --__--__-- Message: 31 Date: Sat, 14 Jun 2003 09:51:35 -0400 From: "Anthony E. Greene" <[EMAIL PROTECTED]> Subject: Re: Using syslog across network To: [EMAIL PROTECTED] Organization: Americal Division Veterans Association <http://www.americal.org/> Reply-To: [EMAIL PROTECTED] On 13-Jun-2003/16:55 -0700, "Chris W. Parker" <[EMAIL PROTECTED]> wrote: >I read that syslogd should be started with the -r command. According to >'ps aux|grep syslog' it is not and I can't find the file that specifies >how syslog should start so that I can add the -r to it. /etc/rc.d/init.d/syslog Tony -- Anthony E. Greene <mailto:[EMAIL PROTECTED]> OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 239D AOL/Yahoo Messenger: TonyG05 HomePage: <http://www.pobox.com/~agreene/> Linux. The choice of a GNU generation <http://www.linux.org/> --__--__-- Message: 32 Subject: Re: Can I change user UID and not lose ownership? From: Technoslick <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Organization: Date: 14 Jun 2003 10:23:58 -0400 Reply-To: [EMAIL PROTECTED] On Sat, 2003-06-14 at 09:48, Anthony E. Greene wrote: <snip> > You'll need to edit /etc/group and change the group membership of those > files too. I see I did it the long and hard way. ;0) If I had manually changed the GID number here, wouldn't I still have had to use 'chgrp' to modify all the files that had the wrong GID number for the said group? T --__--__-- Message: 33 From: "Reuben D. Budiardja" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Mozilla ugly radio buttons/widgets Date: Sat, 14 Jun 2003 11:09:26 -0400 Reply-To: [EMAIL PROTECTED] On Saturday 14 June 2003 03:22 am, Didier Casse wrote: > When I browse the web with Mozilla on Linux... All the radio buttons, > check buttons, form buttons/search buttons on the web look horrible when > compared to Windows environment. If I browse with opera then these buttons > look nice. how ugly is ugly? My Linux Mozilla looks the same as Win mozilla. What mozila version do you use? RDB -- Reuben D. Budiardja Department of Physics and Astronomy The University of Tennessee, Knoxville, TN ------------------------------------------------- /"\ ASCII Ribbon Campaign against HTML \ / email and proprietary format X attachments. / \ ------------------------------------------------- Have you been used by Microsoft today? Choose your life. Choose freedom. Choose LINUX. ------------------------------------------------- --__--__-- Message: 34 Subject: RUN fsck MANUALLY From: rm <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Organization: Date: 14 Jun 2003 10:40:09 -0500 Reply-To: [EMAIL PROTECTED] Last night a storm knocked out power for a couple hours, and shut down two Redhat 7.1 systems on a small network. One booted up fine, the other, after reaching 93% "forced check" reported: FAILED and said to: "RUN fsck MANUALLY" After checking the archives of several Linux lists, I ran cat /etc/fstab which, in the first column showed: LABEL=/ LABEL=/boot /dev/fd0 none none /dev/hda5 /dev/cdrom Then I did: fsck -y /dev/fd0 and it responded: fsck 1.26 (3-Feb-2002) Could not determine filesystem type for /dev/fd0 fsck: fsck.auto: not found fsck Error 2 while executing fsck.auto for /dev/fd) Any idea what the fsck I did wrong here? thanks, regis -- rm <[EMAIL PROTECTED]> --__--__-- Message: 35 Date: Sat, 14 Jun 2003 11:51:23 -0400 From: Hal Burgiss <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: RUN fsck MANUALLY Reply-To: [EMAIL PROTECTED] On Sat, Jun 14, 2003 at 10:40:09AM -0500, rm wrote: > > LABEL=/ > LABEL=/boot > /dev/fd0 > none > none > /dev/hda5 > /dev/cdrom > > Then I did: fsck -y /dev/fd0 > > and it responded: > > fsck 1.26 (3-Feb-2002) > Could not determine filesystem type for /dev/fd0 > fsck: fsck.auto: not found > fsck Error 2 while executing fsck.auto for /dev/fd) > > Any idea what the fsck I did wrong here? Do you want to check the floppy drive? Try e2fsck -f -c /dev/hda5 and other Linux partitions on hda. -- Hal Burgiss --__--__-- __ redhat-list mailing list Unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list End of redhat-list Digest -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list