[techtalk] Building ADSL - LAN
First off, I would like to thank everyone who wrote back with their advice and reading suggestions. However, I am still having the following problem. I have gotten to the Internet through my ADSL modem from my Windows98 partition. What follows is the route PRINT from the command prompt while running Windows98: Network Address Netmask Gateway Address Interface 0.0.0.0 0.0.0.0 xxx.yyy.zzz.246 xxx.yyy.zzz.242 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 xxx.yyy.zzz.240 255.255.255.248 xxx.yyy.zzz.242 xxx.yyy.zzz.242 xxx.yyy.zzz.242 255.255.255.255 127.0.0.1 127.0.0.1 xxx.yyy.zzz.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 224.0.0.0 224.0.0.0 xxx.yyy.zzz.242 xxx.yyy.zzz.242 255.255.255.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 TCP/IP on Windows98 is set up as follows: Gateway: xxx.yyy.zzz.242 IP Addr: xxx.yyy.zzz.242 Netmask: 255.255.255.248 The ADSL modem is configured with: Gateway: xxx.yyy.zzz.246 IP Addr: xxx.yyy.zzz.241 Netmask: 255.255.255.248 The ADSL modem is an Alcatel 1000. The NIC above is a 3COM EtherLink III 3c509B. I have done the set-up, disabled PNP, and all those goodies. The addresses referenced with xxx.yyy.zzz.### are public IP addresses, not private. What I am having problems with is duplicating the successful Windows98 routing under the Linux partition, the partition I -really- want to run full-time. However, when I ifconfig eth0 (the NIC under Linux) using this: ifconfig eth0 xxx.yyy.zzz.242 it automatically inserts this into the route table: Kernel IP routing table Destination Gateway Genmask Flags Metric RefUse Iface xxx.yyy.zzz.240 0.0.0.0 255.255.255.248 U 0 00 eth0 Note the gateway. I want xxx.yyy.zzz.242 as the gateway, NOT 0.0.0.0, but it will not let me delete this route to readd it. This is the error I get: bash# route del -net xxx.yyy.zzz.240 SIOCDELRT: Invalid argument What I -think- I should be typing to get the routing displayed in Windows98 is: route add default gw xxx.yyy.zzz.246 route add -net xxx.yyy.zzz.240 gw xxx.yyy.zzz.242 netmask 255.255.255.248 route add xxx.yyy.zzz.242 gw localhost route add xxx.yyy.zzz.255 gw xxx.yyy.zzz.242 route add -net 224.0.0.0 gw xxx.yyy.zzz.242 netmask 224.0.0.0 route add 255.255.255.255 gw xxx.yyy.zzz.242 However, Linux complains and moans about the last two entries. Do I have an old version of route? My version is: bash# route -V net-tools 1.52 route 1.96 (1999-01-01) I would appreciate any input on what I am doing wrong here. -- O.--. Give me some Slack! o. |o_o | U==l_/ | Just This Girl // \ \[EMAIL PROTECTED] (| | ) http://home1.gte.net/archmage /\_ _/`\ \__)-(___/ Spam >> /dev/null [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Building ADSL - LAN
Just This Girl wrote: > Network Address Netmask Gateway Address Interface > 0.0.0.0 0.0.0.0 xxx.yyy.zzz.246 xxx.yyy.zzz.242 > 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.240 255.255.255.248 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > xxx.yyy.zzz.242 255.255.255.255 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 224.0.0.0 224.0.0.0 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 255.255.255.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > > TCP/IP on Windows98 is set up as follows: > Gateway: xxx.yyy.zzz.242 > IP Addr: xxx.yyy.zzz.242 > Netmask: 255.255.255.248 > > The ADSL modem is configured with: > Gateway: xxx.yyy.zzz.246 > IP Addr: xxx.yyy.zzz.241 > Netmask: 255.255.255.248 > > However, when I ifconfig eth0 (the NIC under Linux) using this: > > ifconfig eth0 xxx.yyy.zzz.242 > > it automatically inserts this into the route table: > > Kernel IP routing table > Destination Gateway Genmask Flags Metric RefUse > Iface > xxx.yyy.zzz.240 0.0.0.0 255.255.255.248 U 0 00 > eth0 This is a network route, not a gateway route. Notice the genmask; it says which IPs will be directed through this route. "route add default gw" will add your gateway with a genmask of 0.0.0.0, for "everything not yet caught". > Note the gateway. I want xxx.yyy.zzz.242 as the gateway, NOT 0.0.0.0, > but it will not let me delete this route to readd it. This is the error > I get: > > bash# route del -net xxx.yyy.zzz.240 > SIOCDELRT: Invalid argument You might be able to delete that route by giving it the full settings: bash# route del -net xxx.yyy.zzz.240 netmask 255.255.255.248 dev eth0 but as I said, I don't think this is needed. The route only affects IPs from xxx.yyy.zzz.240 to xxx.yyy.zzz.255. > What I -think- I should be typing to get the routing displayed in > Windows98 is: > > route add default gw xxx.yyy.zzz.246 won't work before there's a route to the gateway! i.e. delete the first route and add this, and you get "what device is that? no route to the gateway..." > route add -net xxx.yyy.zzz.240 gw xxx.yyy.zzz.242 netmask 255.255.255.248 This is the route that points to the gateway; traffic to this net _don't have to go through the gateway_. Don't use the gw parameter here. > route add xxx.yyy.zzz.242 gw localhost Don't "gw localhost". This must be windows silliness. > route add xxx.yyy.zzz.255 gw xxx.yyy.zzz.242 > route add -net 224.0.0.0 gw xxx.yyy.zzz.242 netmask 224.0.0.0 > route add 255.255.255.255 gw xxx.yyy.zzz.242 You really only need one route per device plus one default gateway route for most setups. These don't make much sense. > However, Linux complains and moans about the last two entries. It should. The entries you've shown are redundant and/or recursive. In short, just do: bash# route add default gw xxx.yyy.zzz.242 and you're home free. The automatic route you've seen is necessary to reach the gateway. [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Building ADSL - LAN
Oops. misread, and made the same mistake... bash# route add default gw xxx.yyy.zzz.246 is the proper line. The rule is simple; if windows says _your IP_ is the gateway, there _is no gateway_. Never point a gateway route at yourself, that would be recursive. [EMAIL PROTECTED] http://www.linuxchix.org
[Fwd: Re: [techtalk] Building ADSL - LAN]
Just This Girl wrote: > Network Address Netmask Gateway Address Interface > 0.0.0.0 0.0.0.0 xxx.yyy.zzz.246 xxx.yyy.zzz.242 > 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.240 255.255.255.248 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > xxx.yyy.zzz.242 255.255.255.255 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 224.0.0.0 224.0.0.0 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 255.255.255.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > > TCP/IP on Windows98 is set up as follows: > Gateway: xxx.yyy.zzz.242 > IP Addr: xxx.yyy.zzz.242 > Netmask: 255.255.255.248 > > The ADSL modem is configured with: > Gateway: xxx.yyy.zzz.246 > IP Addr: xxx.yyy.zzz.241 > Netmask: 255.255.255.248 > > However, when I ifconfig eth0 (the NIC under Linux) using this: > > ifconfig eth0 xxx.yyy.zzz.242 > > it automatically inserts this into the route table: > > Kernel IP routing table > Destination Gateway Genmask Flags Metric RefUse > Iface > xxx.yyy.zzz.240 0.0.0.0 255.255.255.248 U 0 00 > eth0 This is a network route, not a gateway route. Notice the genmask; it says which IPs will be directed through this route. "route add default gw" will add your gateway with a genmask of 0.0.0.0, for "everything not yet caught". > Note the gateway. I want xxx.yyy.zzz.242 as the gateway, NOT 0.0.0.0, > but it will not let me delete this route to readd it. This is the error > I get: > > bash# route del -net xxx.yyy.zzz.240 > SIOCDELRT: Invalid argument You might be able to delete that route by giving it the full settings: bash# route del -net xxx.yyy.zzz.240 netmask 255.255.255.248 dev eth0 but as I said, I don't think this is needed. The route only affects IPs from xxx.yyy.zzz.240 to xxx.yyy.zzz.255. > What I -think- I should be typing to get the routing displayed in > Windows98 is: > > route add default gw xxx.yyy.zzz.246 won't work before there's a route to the gateway! i.e. delete the first route and add this, and you get "what device is that? no route to the gateway..." > route add -net xxx.yyy.zzz.240 gw xxx.yyy.zzz.242 netmask 255.255.255.248 This is the route that points to the gateway; traffic to this net _don't have to go through the gateway_. Don't use the gw parameter here. > route add xxx.yyy.zzz.242 gw localhost Don't "gw localhost". This must be windows silliness. > route add xxx.yyy.zzz.255 gw xxx.yyy.zzz.242 > route add -net 224.0.0.0 gw xxx.yyy.zzz.242 netmask 224.0.0.0 > route add 255.255.255.255 gw xxx.yyy.zzz.242 You really only need one route per device plus one default gateway route for most setups. These don't make much sense. > However, Linux complains and moans about the last two entries. It should. The entries you've shown are redundant and/or recursive. In short, just do: bash# route add default gw xxx.yyy.zzz.246 and you're home free. The automatic route you've seen is necessary to reach the gateway. [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Building ADSL - LAN
On Fri, 8 Oct 1999, Just This Girl wrote: > ifconfig eth0 xxx.yyy.zzz.242 > > it automatically inserts this into the route table: > > Kernel IP routing table > Destination Gateway Genmask Flags Metric RefUse > Iface > xxx.yyy.zzz.240 0.0.0.0 255.255.255.248 U 0 00 > eth0 > > Note the gateway. I want xxx.yyy.zzz.242 as the gateway, NOT 0.0.0.0, > but it will not let me delete this route to readd it. This is the error > I get: This is simply a net route for your little chunk of IP space. You also want to add a *default* route that goes to .246. > bash# route del -net xxx.yyy.zzz.240 > SIOCDELRT: Invalid argument remove the -net and you'll be fine. -net is only a parameter for adding routes. Deleting them just requires you to tell it the destination to remove. -Ian -- wow, this is kinda nifty. the win98 protocol stack is like a chinese finger puzzle, twist and turn in the right places, and it pops right off --Seen on EFNet IRC [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Setting up my Mitsumi 4802TE CDRW under Redhat Linux 6.0
Hopefully, I can help you out. What version of the kernel are you using? Also, does the CDRW recognized as an IDE drive when you boot up? I'm at work right now, so I can't give you my settings. I'll get to it as soon as I get home and mail you. Beverly From: Norma Armstrong <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 07, 1999 1:13 PM Subject: [techtalk] Setting up my Mitsumi 4802TE CDRW under Redhat Linux 6.0 > Hi first of all I'm new and I'd like to say that this list is wonderful :) > Anyways to my question. I've read the CD-Writing FAQ and followed the > suggestions to make my CDRW drive to work. It is now not loading as an ide > drive like it's supposed to. However it's still not being recognized as a > SCSI drive and cdrecord -scanbus doesn't recognize it (it just lists my zip > drive). I tried to mount /dev/scd0 but it's not recognized if I mount > /dev/hdc it just mounts it as an ide drive (even though it's ignored when > XCdroast shows my ide drives). So XCDRoast doesn't show it as either SCSI or > IDE. This problem is driving me nuts. I even put in (I forgot the exact > command - so this may not be right but under Linux I have it right) > "ide-scsi=ignore hdc" (without quotes) in lilo.conf. By the way I just > figured out how to run my old zip properly (it doesn't get autodetected upon > installation). If somebody out there has an old parallel port zip drive they > can't get to work. Try - "modprobe -sg" and then try "modprobe -ppa" then > you will be able to (assuming you are running RedHat 6.0) mount /dev/sda4. > Oh I'm writing this from Windows because that's the only OS the free > Internet providers will support. Although I heard dotnow will be supporting > Linux soon. > > TIA, > Norma > > __ > NetZero - Defenders of the Free World > Get your FREE Internet Access and Email at > http://www.netzero.net/download/index.html > > > [EMAIL PROTECTED] http://www.linuxchix.org > > [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Building ADSL - LAN
you could check your /etc/rc.d/rc.inet1 file On Fri, 8 Oct 1999, Just This Girl wrote: > Date: Fri, 08 Oct 1999 02:58:03 -0500 > From: Just This Girl <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: [techtalk] Building ADSL - LAN > > First off, I would like to thank everyone who wrote back with their > advice and reading suggestions. > > However, I am still having the following problem. > > I have gotten to the Internet through my ADSL modem from my Windows98 > partition. > What follows is the route PRINT from the command prompt while running > Windows98: > > Network Address Netmask Gateway Address Interface > 0.0.0.0 0.0.0.0 xxx.yyy.zzz.246 xxx.yyy.zzz.242 > 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.240 255.255.255.248 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > xxx.yyy.zzz.242 255.255.255.255 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 224.0.0.0 224.0.0.0 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 255.255.255.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > > TCP/IP on Windows98 is set up as follows: > Gateway: xxx.yyy.zzz.242 > IP Addr: xxx.yyy.zzz.242 > Netmask: 255.255.255.248 > > The ADSL modem is configured with: > Gateway: xxx.yyy.zzz.246 > IP Addr: xxx.yyy.zzz.241 > Netmask: 255.255.255.248 > > The ADSL modem is an Alcatel 1000. The NIC above is a 3COM EtherLink III > 3c509B. I have done the set-up, disabled PNP, and all those goodies. The > addresses referenced with xxx.yyy.zzz.### are public IP addresses, not > private. > > What I am having problems with is duplicating the successful Windows98 > routing under the Linux partition, the partition I -really- want to run > full-time. > > However, when I ifconfig eth0 (the NIC under Linux) using this: > > ifconfig eth0 xxx.yyy.zzz.242 > > it automatically inserts this into the route table: > > Kernel IP routing table > Destination Gateway Genmask Flags Metric RefUse > Iface > xxx.yyy.zzz.240 0.0.0.0 255.255.255.248 U 0 00 > eth0 > > Note the gateway. I want xxx.yyy.zzz.242 as the gateway, NOT 0.0.0.0, > but it will not let me delete this route to readd it. This is the error > I get: > > bash# route del -net xxx.yyy.zzz.240 > SIOCDELRT: Invalid argument > > What I -think- I should be typing to get the routing displayed in > Windows98 is: > > route add default gw xxx.yyy.zzz.246 > route add -net xxx.yyy.zzz.240 gw xxx.yyy.zzz.242 netmask > 255.255.255.248 > route add xxx.yyy.zzz.242 gw localhost > route add xxx.yyy.zzz.255 gw xxx.yyy.zzz.242 > route add -net 224.0.0.0 gw xxx.yyy.zzz.242 netmask 224.0.0.0 > route add 255.255.255.255 gw xxx.yyy.zzz.242 > > However, Linux complains and moans about the last two entries. > > Do I have an old version of route? My version is: > > bash# route -V > net-tools 1.52 > route 1.96 (1999-01-01) > > I would appreciate any input on what I am doing wrong here. > > -- > O.--. Give me some Slack! > o. |o_o | > U==l_/ | Just This Girl >// \ \[EMAIL PROTECTED] > (| | ) http://home1.gte.net/archmage > /\_ _/`\ > \__)-(___/ Spam >> /dev/null > > > [EMAIL PROTECTED] http://www.linuxchix.org > [EMAIL PROTECTED] http://www.linuxchix.org
[techtalk] Network cards supported by RH 6.0 & 6.1
I'm wondering if there's any chance that I can use my cheapo AOpen NIC (ALN-101) with RH 6.0 or 6.1. If not, any other suggestions for inexpensive cards that will work? I need to pick up a hard drive as it is, and would rather not add to my debts more than necessary. Thanks in advance, Deanne [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Network cards supported by RH 6.0 & 6.1
On Fri, 8 Oct 1999, Deanne wrote: > I'm wondering if there's any chance that I can use my cheapo AOpen NIC > (ALN-101) with RH 6.0 or 6.1. If not, any other suggestions for > inexpensive cards that will work? I need to pick up a hard drive as it is, > and would rather not add to my debts more than necessary. The AOpen ALN-101 is NE2000 compatible. It will work fine. But you will probably need to know what irq and memory address it uses in case the install doesn't find it when it "autoprobes". If that happens, you'll have to "specify options" and put in something like "io=0x340,irq=10". (obviously, replace with the right values for your card) -- Amos Hayes [EMAIL PROTECTED] http://polkaroo.net/~ahayes [EMAIL PROTECTED] http://www.linuxchix.org
RE: [techtalk] Network cards supported by RH 6.0 & 6.1
I know there's a page on the redhat site that lists the supported shipsets, but damned it I could find my copy of it and I kept getting a network error when I tried to connect to http://www.redhatonline.com sorry, Clare "Computers are useless. They can only give you answers." ~Pablo Picasso (1881-1973) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Deanne Sent: Friday, October 08, 1999 12:33 PM To: [EMAIL PROTECTED] Subject: [techtalk] Network cards supported by RH 6.0 & 6.1 I'm wondering if there's any chance that I can use my cheapo AOpen NIC (ALN-101) with RH 6.0 or 6.1. If not, any other suggestions for inexpensive cards that will work? I need to pick up a hard drive as it is, and would rather not add to my debts more than necessary. Thanks in advance, Deanne [EMAIL PROTECTED] http://www.linuxchix.org [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Network cards supported by RH 6.0 & 6.1
On Fri, 8 Oct 1999, Deanne wrote: > I'm wondering if there's any chance that I can use my cheapo AOpen NIC > (ALN-101) with RH 6.0 or 6.1. If not, any other suggestions for > inexpensive cards that will work? I need to pick up a hard drive as it is, > and would rather not add to my debts more than necessary. 30 bucks or so will get you a NetGear FA310TX card, based on the DEC Tulip chipset. a real bargain for a quality PCI 10/100 NIC. -- wow, this is kinda nifty. the win98 protocol stack is like a chinese finger puzzle, twist and turn in the right places, and it pops right off --Seen on EFNet IRC [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Network cards supported by RH 6.0 & 6.1
Have you considered trying out a Buy/Sell/Trade computer parts store? I tried that, not wanting to spend alot of money and being unable to find NICs that I was confident were Linux-supported. Also, I was specifically wanting ISA cards, and the retailers are pushing PCI 10/100. Two B/S/T stores in my area had whole -bins- of NICs, both ISA and PCI. One had a whole bin of 3Com 509B, for $15 each when 3Com suggests the retail price as $72 (from their website). They did not have the software with them, but if you find NICs by 3Com or other realiable manufacturers, you can download whatever drivers/setup software you need to get going. Because the stores was B/S/T, I couldn't have gotten my cash back (the one drawback), but if a card had proven to be defective, I could take it back and swap it for another. And as I said, whole -bins-. :) Tips: check out the return policies of the store(s) in question, take the NIC segment of the Hardware How-TO with you to the store, don't by any NIC that is unlabeled -on the card itself-, and don't buy any cards are 'loose': ie, not in a silver anti-static bag. Sorry, plain plastic isn't good enough, IMHO. :) Also, do some research on the cards you think you'd most like to have, such as looking to see if drivers and utilities are available from the manufacturer or third party... likely there won't be software available -with- the card. Also, don't be afraid to ask to unbag the card (carefully!) to physically inspect it before purchase. Look to make sure nothing is broken off, bent, scraped, or elsewise might affect the card's operation. On Fri, 8 Oct 1999, Deanne wrote: > I'm wondering if there's any chance that I can use my cheapo AOpen NIC > (ALN-101) with RH 6.0 or 6.1. If not, any other suggestions for > inexpensive cards that will work? I need to pick up a hard drive as it is, > and would rather not add to my debts more than necessary. O.--. Give me some Slack! o. |o_o | U==l_/ |Just This Girl // \ \ [EMAIL PROTECTED] (| | ) http://home1.gte.net/archmage /\_ _/`\ \__)-(___/ Spam >> /dev/null [EMAIL PROTECTED] http://www.linuxchix.org
RE: [techtalk] Setting up my Mitsumi 4802TE CDRW under Redhat Linux 6.0
I found out how to set it up. The next question I hope is a little easier. If I have the line append="hdb=ide-scsi hdc=ide-scsi" only my cdreader is able to get mounted. Mounting the writer will only show what's on the reader. However if I leave out hdb then although the writer is recognized the cdreader is nowhere to be found. How can I set it up so that both can be seen by the system? I had hdb as /dev/sr0 and hdc as /dev/sr7 at first (when the writer couldn't be accessed). Now I just have hdc as /dev/sr0 but again hdb (my reader) is nowhere to be found. I can't access it under hdb either. Where could it be, or how can I set it up so it will work properly. By the way thanks for the reply :) Oh my kernel is 2.2.15. Again thanks! Norma > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Beverly Guillermo > Sent: Friday, October 08, 1999 9:45 AM > To: [EMAIL PROTECTED] > Subject: Re: [techtalk] Setting up my Mitsumi 4802TE CDRW under Redhat > Linux 6.0 > > > Hopefully, I can help you out. What version of the kernel are you using? > Also, > does the CDRW recognized as an IDE drive when you boot up? > > I'm at work right now, so I can't give you my settings. I'll get to it as > soon as I > get home and mail you. > > Beverly > __ NetZero - Defenders of the Free World Get your FREE Internet Access and Email at http://www.netzero.net/download/index.html [EMAIL PROTECTED] http://www.linuxchix.org
[techtalk] modem vs bios
Yeah, Jenn, I'm quasi-certain it's the BIOS, but I already tried resetting to original configuration and that didn't help. The big mistake, really, was not taking note of the original configuration BEFORE I installed the hard drive. What I don't get though, is the fact that Seyon sees and uses the modem - but *no other piece of software can*, either in Win98 or Linux. I'm completely puzzled. Nadine [EMAIL PROTECTED] http://anacaona.org/home http://tww.tao.ca [EMAIL PROTECTED] http://www.linuxchix.org
[techtalk] bizarre kde problem
I can't get the menu or panel to launch anything anymore. I completely uninstalled and upgraded KDE and it still doesn't work. Where did I go wrong? Nadine [EMAIL PROTECTED] http://anacaona.org/home http://tww.tao.ca [EMAIL PROTECTED] http://www.linuxchix.org
RE: [techtalk] Setting up my Mitsumi 4802TE CDRW under Redhat Linux6.0
On Fri, 8 Oct 1999, Norma Armstrong wrote: > way thanks for the reply :) Oh my kernel is 2.2.15. I'm assuming you mean 2.2.12, since .15 isn't out... -- wow, this is kinda nifty. the win98 protocol stack is like a chinese finger puzzle, twist and turn in the right places, and it pops right off --Seen on EFNet IRC [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] bizarre kde problem
On Fri, 08 Oct 1999, you wrote: >I can't get the menu or panel to launch anything anymore. I completely >uninstalled and upgraded KDE and it still doesn't work. If you switch back to the console you started X from after trying to start a program, are there any informative error messages there? I've confused kfm enough that it won't start programs, and it complains there. For me it also leaves a .X.err file in my home directory with the console output of X programs... Are you able to launch programs from the alt-f2 command prompt or an X terminal? When you uninstalled and upgraded KDE, did you get rid of your ~/.kderc file or ~/.kde directory? Perhaps you could try renaming those temporarily and see if it helps... TTFN [EMAIL PROTECTED] http://www.linuxchix.org
[techtalk] Fwd: WinLinux2000
Hi all, I've actually not been near this computer since this morning. I'm taking my temperature as we speak. Anyway, I was just going through all of my email and I received some feedback from a very good friend of mine who installed the WinLinux2000 which I had mentioned earlier this week. I wanted to share his feedback about the d/l, install/ and program itself. I also wanted to ask what may sound like a strange question. Based on my friend's description, it sounds like the entire installation process is point and click (as it advertised). That's a good idea; but I'm debating whether to go that route even though a) I cannot get my modem configured no matter what, have tried everything from pnptools to pci utilities, b) it looks like I have to add a module to my kernel in order to install OSS, which I've never done before. The obvious decision would be to just take what appears to be the easy route, but if I do that, then I haven't really learned anything from the experience, have I? I'm getting another modem that I should be able to get configured this weekend probably. If you had to choose between manual and WinLinux 2000 install, which would you choose, and if you don't mind my asking why? Thanks and have a great weekend everyone! >Date: Fri, 08 Oct 1999 22:34:26 -0700 >To: [EMAIL PROTECTED] >Subject: WinLinux2000 > >MAN!! I downloaded the 140+M file (in 15 min. w/cable modem!), had it >installed w/printer and monitor (set to24 bit color depth) in another 15 >min.! > It's a stripped-down, REAL linux, with the kde desktop. It boots >with loadlin from windoze, and you just restart your computer to go back >to windoze. It has a quick plug-n-play interface to set up, and can >also configure a modem that way. > I give it two thumbs up! Thanks! I think I'm gonna try to >bastardize the loadlin (mine didn't work out...) to boot my SuSE. > >Thanks again C-ya! >Mark Mary Anne Cox http://www.homestead.com/2muchtime/index.html "...to start, press any key. Hnow, exactly where IS the 'any' key?" [EMAIL PROTECTED] http://www.linuxchix.org