1

I am configuring an custom built server with Intel Server Board 1200v3RPS. I have installed Ubuntu 12.04 Desktop amd64 as the OS. Issue that I am facing in this is, On-board Network has not been installed by default.

I did a quick search and found that not many people have installed Ubuntu on this Intel board.

Intel website gives drivers for Redhat & SUSE only. This is first time I am installing Ubuntu on Server platform. So far only worked with Redhat/CentOS.

Kindly let me know how to do I install network card drivers in Ubuntu 12.04.

Thanks in advance.

david6
  • 14,528
  • 5
  • 38
  • 46

2 Answers2

1

The issue is resolved, i used the driver from CD as it had source files. I used the below link as reference.

Ubuntu 12.04 loses ethernet driver after update and reboot

Inside the folder of linux drivers from Intel CD, I ran the following commands, and the network got connected.

sudo make install
sudo modprobe igb
0

Welcome to Ubuntu Linux

You may not actually need a brand/device 'driver', as Debian/Ubuntu have generic drivers for most mainstream hardware.

Unless you have a new chip/design, or specific high performance/availability requirements, the standard driver should suffice.

Gone and the bad old yesterdays (from RedHat/Fedora 4) of insert first CD (for OS install), then spend 20-40 minutes shuffling through discs 4 thru 9 for each brand/device driver. Ubuntu OS (and all drivers) has fit on a single 600MB CD until only quite recently.


Does this have / need a screen, keyboard, and graphic interface?

Otherwise you are better off using the Ubuntu 12.04 LTS server variant.


UPDATE:

Check (and or add to your question) output from dmesg | grep igb. I'm not sure if that is the correct ID for Intel Gigabit Ethernet driver for Ubuntu, but its sound right.

Look at How do I enable the "backports" repository? for Precise (12.04) back ports.

david6
  • 14,528
  • 5
  • 38
  • 46