I want to see how many interfaces(ethernet cards) are
working using single command?
Answers were Sorted based on User's Feedback
Answer / viren
lspci -n | grep 200
class 200 is the address of ethernet adapter
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / alf55
The command:
ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr')
Would result with an output similar to:
eth0 Link encap:Ethernet HWaddr 00:90:f5:b7:6a:1c
lo Link encap:Local Loopback
sit0 Link encap:IPv6-in-IPv4
wlan0 Link encap:Ethernet HWaddr 00:24:d7:a7:16:c0
So the command:
ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr') | wc -l
would produce the count.
The problem here is that it would also count usages such as
"eth0:0".
To not count those devices use:
ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr:|:[0-9][0-9]*') |wc -l
| Is This Answer Correct ? | 1 Yes | 0 No |
What is clang space engineers?
you wish to create a link to the /data directory in bob's home directory so you issue the command ln /data /home/bob/datalink but the command fails. What options hould you use in this command line to be successful.
What is tty name?
What is linux pwd (print working directory) command?
What is the export command used for?
How do I find my user id in linux?
How do I find command history in linux?
What is a makefile in linux?
What is cpu utilization linux?
You have a tab delimited file called phonenos and want to change each tab to four spaces. What command can you use to accomplish this?
What are different command to check ram, process and hdd of linux machine?
Enlist some linux to file content commands?