Skip to content

Instantly share code, notes, and snippets.

@cbarraford
Last active November 28, 2019 21:35
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save cbarraford/8850424 to your computer and use it in GitHub Desktop.
Save cbarraford/8850424 to your computer and use it in GitHub Desktop.
Install ixgbevf driver for amazon aws enhanced networking (ubuntu)
aptitude install -y build-essential
wget "http://downloads.sourceforge.net/project/e1000/ixgbevf stable/2.11.3/ixgbevf-2.11.3.tar.gz"
tar -zxf ./ixgbevf-*
cd ixgbevf*/src
make install
modprobe ixgbevf
sudo update-initramfs -c -k all
echo "options ixgbevf InterruptThrottleRate=1,1,1,1,1,1,1,1" > /etc/modprobe.d/ixgbevf.conf
@skyshard
Copy link

skyshard commented Mar 5, 2014

Related discussion in https://bugs.launchpad.net/ubuntu-on-ec2/+bug/1274676

Recommended solution is to install linux-image-generic-lts-saucy

@1mentat
Copy link

1mentat commented May 21, 2014

Edited: 14.04 works out of the box though options are not set.

@danvaida
Copy link

For those that want to do the same on Wheezy, here's what I did to get it working:
https://forums.aws.amazon.com/message.jspa?messageID=585759#586007

@vdm
Copy link

vdm commented Feb 10, 2015

@bedge
Copy link

bedge commented Jun 29, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment