Last active
August 29, 2015 14:13
-
-
Save danish-rehman/e03442e7ccb7ab7f3bca to your computer and use it in GitHub Desktop.
Check your NIC card
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check your NIC card | |
>> lspci | awk '/net/ {print $1}' | xargs -i% lspci -ks % | |
>> lspci | grep -i net | |
>> sudo lshw -c network | |
# Determine which driver is currently running | |
>> ls -l /sys/class/net/<devname>/device/driver/module | |
../../../../module/e1000e | |
>> ls -l /sys/class/net/<devname>/device/driver | |
../../../../../bus/pci/drivers/e1000e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment