Results 1 to 10 of 28
first of, i am a certified newbie to linux and this is my problem (sounds like AA).
i have slackware 10.0 installed and used the CD-ROM kernel when I was ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-17-2005 #1Just Joined!
- Join Date
- Mar 2005
- Posts
- 15
noob network question
first of, i am a certified newbie to linux and this is my problem (sounds like AA).
i have slackware 10.0 installed and used the CD-ROM kernel when I was prompted in the setup. I have a KV8Pro motherboard with an onboard VT6122 10/100/1000 Mb PCI Ethernet Controller.
i read the previous thread and found that i can reconfigure the network using NETCONFIG. I am using a router that is also a DHCP. When I ran NETCONFIG, these are my answers:
1. hostname=amilix
2. domainname=localdomain
3. setup ip=DHCP
4. set DHCP hostname= (left blank)
This is the IFCONFIG output
Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:34 errors:0 dropped:0 overruns:0 frame:0
TX packets:34 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
Rx bytes:2500 (2.4 Kb) TX bytes:2500 (2.4 Kb)
Amilix
- 03-17-2005 #2
Looks like slack didn't "see" your network card...all you've got there is a loopback interface. Could you run lspci and lsmod and post the output?
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 03-17-2005 #3Linux Engineer
- Join Date
- Oct 2004
- Location
- Vancouver
- Posts
- 1,366
also try
if that works then you should be able to ping, if not you will now that your comp is not recognizing your eth0. When you boot do you have pcmcia started?Code:ifconfig eth0 up
Operating System: GNU Emacs
- 03-17-2005 #4Just Joined!
- Join Date
- Mar 2005
- Posts
- 15
these are, hopefully, the relevant snippets of the LSPCI output:
Originally Posted by Flatline
1. There are 8 Host bridge: VIA Techonologies, Inc.: Unknown device
2. Ethernet controller: VIA Technologies, Inc: Unkownn device 3119 (rev 11)
For the LSMOD, this the list:
snd-pcm0oss (unused)
snd-mix-oss [snd-pcm-oss]
printer
uhci (unused)
ehci-hcd (unused)
usbcore [printer uhci ehci-hcd]
snd-via82xx
gameport [snd-via82xx]
... nothing looked relevant here (all of them sound related)
ide-scsi
- 03-17-2005 #5Just Joined!
- Join Date
- Mar 2005
- Posts
- 15
says, eth0: unknown interface: No such device.
Originally Posted by genesus
How do I start the PCMCIA? I am using a PC, not a notebook, with an onboard ethernet card.
- 03-17-2005 #6
Looks like there isn't native support for the chip on your card. You can grab drivers here: http://www.viaarena.com/downloads/dr...elocityget.tgz
Unzip the file and do aI think you'll have to have your kernel source package installed for it to work properly.Code:make make install insmod velocityget.ko
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 03-17-2005 #7Just Joined!
- Join Date
- Mar 2005
- Posts
- 15
what does this mean exactly?
Originally Posted by Flatline
- 03-17-2005 #8
After you download the driver from the link I gave
The kernel-source package contains the source code for your kernel; the reason I think you need it installed in order to install this driver is that you are basically compiling a kernel module, which usually requires the kernel's source code to compile against. If it's already installed (and it may be), there would be a directory full of stuff in /usr/linux/src.Code:tar -xvzf velocityget.tgz cd velocityget make make install insmod velocityget.ko
The kernel source package should be on your Slackware CD. If it isn't, you can go to linuxpackages.net and grab the right one. Be sure to grab the kernel source that matches your kernel version. You can check your kernel version by using thecommandCode:uname -r
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 03-17-2005 #9Just Joined!
- Join Date
- Mar 2005
- Posts
- 15
i am using a usb flash drive because i don't have a floppy disk. i can see from the terminal using LSPCI, that all my 4 USB ports are properly identified. However, from KDE-Devices, i don't see any USB drive. I already rebooted the machine with the USB inserted before powering up the machine. Also, do I have to move the TGZ file to the root device and run it from there?
Originally Posted by Flatline
- 03-17-2005 #10
You can probably mount the USB drive with
and then copy the package from the /mnt/usb directory to your "real" hard drive. You could run it directly from the usb drive, but it will be faster from your "real" drive. If you get an error while mounting the drive, runCode:mkdir /mnt/usb && mount /dev/sda1 /mnt/usb
and post the output.Code:fdisk -l
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson


Reply With Quote
