Skip to main content

how to install GIGABYTE ethernet driver for linux

in our tour of duty, we are facing another case where the ethernet device on motherboard didn't recognize by linux kernel. here are the specification :

motherboard  :
GIGABYTE G41MT-S2PT

linux operating system : 
Scientific Linux 6.0

another enterprise-based linux (centos, oracle linux) will works (i hope).
we have try with fedora 14, but it didn't recognize the device and the driver is not available yet.

fortunate we have found the driver in binary (RPM package). first download the package file from the following links :

i386 driver :
kmod-atl1e-1.0.1.14-1.el6.elrepo.i686.rpm

x86_64 driver :
kmod-atl1e-1.0.1.14-1.el6.elrepo.x86_64.rpm

step 1
install the package by typing  (as root)
rpm -ivh kmod-atl1e... .rpm

step 2
change directory to /etc/sysconfig/, please check whether there is a file called network, if there isn't create new file with your favourite text editor.

cd /etc/sysconfig/
vim network

the content of network file :
NETWORKING=yes
HOSTNAME=(yourhostname.yourdomain)

step 3
execute the command to load module to the kernel :
modprobe atl1e

step 4
execute the command to activate the service :
service NetworkManager restart

that's it folks! now your network interface is ready and you may configure your computer IP's through your NetworkManager or network service.


Comments

Popular posts from this blog

about getsebool and setsebool

The setsebool is used to set SELinux boolean value i.e. various configurations can be enabled or disabled using this tool. In other words, the setsebool command switches on and off the protection of SELinux. Type getsebool -a to see all such options which can be enabled or disabled at run time: e.g. # getsebool -a The following should give you a complete listing of all the vsftpd switches: e.g.  # getsebool -a | grep ftp  For example, if httpd_disable_trans set to 1, it will disable SELinux protection for  Apache web server. To disable it, enter:  # setsebool -P httpd_can_network_connect=1 To enable it, enter:    # setsebool -P httpd_can_network_connect=0

about gigabyte NIC onboard not detected on enterprise linux distribution

on several gigabyte motherboard, onboard network interface card  will not be detected on enterprise linux distribution (e.g. scientific linux, oracle linux server, etc). alternatively you must supply add-on card. or if you insist to use the onboard card, you must install the unofficial nic driver. this is tutorial how to install driver for onboard network interface card GIGABYTE first of all prepare your system. make sure it has package group "Development Tools" installed. if it has not, install it # yum groupinstall “Development Tools” download the source code : https://www.dropbox.com/s/na91bu4az4p9827/AR81Family-linux-v1.0.1.14.tar.gz extract the source code : # tar zxvf AR81Family-linux1.0.1.14.tar.gz the extraction process will make the new directory "AR81Family*", change to the directory # cd AR81Family* compile the source by type on terminal : # make then, # make install wait until the compiling process finish. next make the new scrip...

Installing Qualcomm Atheros AR8162 Fast Ethernet Driver on Lenovo G400

I was preparing Lenovo G400 laptop for my linux class, after I installed CentOS 6.5 on it, tada,,,, my ethernet adapter won't show up. I checked with ifconfig command but where the hell my eth0 ??. Then i type the command below : # lspci -v 01:00.0 Ethernet controller: Qualcomm Atheros AR8162 Fast Ethernet (rev 10)     Subsystem: Lenovo Device 3802     Flags: bus master, fast devsel, latency 0, IRQ 32     Memory at 90500000 (64-bit, non-prefetchable) [size=256K]     I/O ports at 2000 [size=128]     Capabilities: <access denied>     Kernel driver in use: alx It seem my wired network adapter do not have its driver. After searching on the net then I find this great article. I wrote it out on my blog to make it sure I have notes for the trouble. This is how we troubleshoot it :   First download this file : alx-linux-v2.0.0.6.rar unrar it, run make command, change directory...