LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 05-19-2008, 03:06 PM   #1
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Rep: Reputation: 0
network device not recognized on live cd


Trying to use clonezilla (debian pkg) and for severaly machine the network interface is not recognized. Ifconfig only returns the loopback address. How do I manually install the drivers for the nic card. Assuming i find the linux capatable drivers, found one so far.

I don't know how to install drivers on linux, whats the command.


thanks for any help.
 
Old 05-19-2008, 07:47 PM   #2
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
Hi 81griffIT, We'll need to see the output from the following please.
Code:
/sbin/lspci -v
/sbin/lsmod
To answer your question, installing drivers or modules varies greatly depending on the device and the driver. If the device is supported by current kernel modules it can be as simple as this.
Code:
# modprobe modulename
If you have to download and install drivers you should pay close attention to any readme, install files, or howto's available for that particular driver. Hope that helps.
Good luck. ;-)
 
Old 05-20-2008, 09:51 AM   #3
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
I downloaded the drivers and extracted, could it be as easy as # modprobe defines

that file "defines" is in the root of the extracted files and there are several folders.

What is the command to output to a file? For the lsmod and lspci, need to put onto a key and copy from another machine.

thanks
 
Old 05-20-2008, 10:11 AM   #4
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
What drivers did you download and from where? I'll wait for the output from the ls commands before any more suggestions.
Good luck. ;-)
 
Old 05-20-2008, 10:39 AM   #5
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
Driver for the Atheros L2 Fast Ethernet Adapter modules for Linux 2.6.24 on x86

On a search for Debian Packages page, I know clonezilla is debian base.

Looking back I may need the package for P4 instead of x86 I really don't want to give up on linux but this is fraustrating.

thanks for all the help. If i can undersatnd this i need it to work with "Marvel Gigabit adapter too"
 
Old 05-21-2008, 11:03 AM   #6
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
I don't believe the device is supported by the kernel. "Ethernet controller : device unkown"


Can this be fixed myself (learning how to install drivers) or is this something i have to hope gets picked up in the next release of clonezilla?
 
Old 05-21-2008, 11:33 AM   #7
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
I'm going to echo my last post. If you'll post the information I've asked for I may be able to help you. Otherwise I'm just guessing as to what device you have, what driver package you've downloaded, whether or not the proper modules/drivers are loaded, etc. It's a shot in the dark until I have some more information.
Good luck. ;-)
 
Old 05-21-2008, 02:12 PM   #8
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
lsmod

dm_snapshot
dm_mirror
dm_mod
jfs
xfs
fuse
tsdev
parport_pc
i2c_i801
rtc
i2c_core
iTco_wdt
serio_raw
psmouse
pcspkr
snd_hda_intel
snd_pcm
snd_timersnd
soundcore
intel_agp
snd_page_alloc
agpgart
evdev
squashfs
loop
unionfs
nls_iso8859_1
nls_cp437
vfat
fat
ide_cd
cdrom
sd_mod
piix
ide_core
ati_piix
ati_generic
lbatat
scsi_mod
ehci_hcd
uhci_hcd
usbcore
thermal
processor
fan

lspci show

Ethernet controller : unknown device 1969:2048

this happens for an Atheros Fast Ethernet L2, its an onboard nic

also for Marvell Gigabit(but i'll worry about that if i get this working

Sorry for the delay
 
Old 05-21-2008, 05:12 PM   #9
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
As best I can decipher from your information this is the driver you're looking for. From some reading you may have better luck with the Marvell card.
Good luck. ;-)
 
Old 05-22-2008, 09:06 AM   #10
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
Thank you so much for your help. I guess as a newbie, my next question is.....

can someone point me in the direction of a tutorial on how to install drivers in linux?


thanks again for all of your help
 
Old 05-22-2008, 12:30 PM   #11
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
Sorry for the delay. I think I understand your problem now. I've downloaded and had a look at the driver files. There are no instructions included. I did contact the developer for some instructions and haven't heard back yet. Some Googleing has produced this.
Code:
# tar jxvf atl2-2.0.4.tar.bz2 
# make
# cp atl2.ko /lib/modules/kernelversion/kernel/drivers/net/
# depmod -a
# modprobe atl2
I hope that is all there is to it. This is an example of what I mentioned earlier that all installations aren't the same.
Good luck. ;-)
 
Old 05-28-2008, 11:35 AM   #12
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
Thanks

thanks for all your help. I will give this a shot as soon as i have some free time. I'll post back and let you know how i make out.

thanks again.
 
Old 05-30-2008, 11:41 AM   #13
81griffIT
LQ Newbie
 
Registered: Nov 2005
Location: NJ
Posts: 13

Original Poster
Rep: Reputation: 0
ok, i think i'm getting closer. after this command

# tar jxvf atl2-2.0.4.tar.bz2

i get "cannot change ownership to uid 4465,guid 4465 operation not permitted"

for each file. Once finished ls shows those files in a directory "atl2-2.0.4"

no atl2.ko file is listed though.

I'm doing this as root, is it at all related to using a live usb key?
 
Old 05-30-2008, 04:29 PM   #14
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
You shouldn't have the .ko file until you make it. Try running make and see how that goes.
Good luck. ;-)
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Air Live WT-2000PCI fully recognized except for DHCP. AdBus Linux - Hardware 2 11-03-2006 06:07 AM
Air Live WT-2000PCI fully recognized except for DHCP. AdBus Ubuntu 1 10-29-2006 06:07 AM
USB device not recognized Greek Acrobat Slackware 5 07-25-2005 11:30 AM
why is usb device recognized? kangaman Linux - Hardware 1 10-27-2004 11:05 AM
CD-R: Device recognized, blank CD in it is not! svar Linux - General 9 09-10-2004 02:11 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 07:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration