Checking link speed in Ubuntu
First Update the system
$ sudo apt update & sudo apt upgradeInstall the network tools
$ sudo apt-get install ethtool net-toolsMethod 1
$ ip addrThe other methods below require you to know the name of the interface. For example in the below cases it is enp0s3.
Method 2
$ sudo ethtool enp0s3Method 3
$ sudo cat /sys/classes/net/enp0s3/speed
Comments
Post a Comment