Below are the basic steps for installing GNS3 0.8.3 on Linux Mint 13 Maya (and Linux Mint 14)
Following same steps should work on Ubuntu Linux as well.
Following same steps should work on Ubuntu Linux as well.
Conky is a free, light-weight system monitor for X, that displays any information on your desktop. Conky can display just about anything, either on your root desktop or in its own window by using scripts and other external programs. Conky has more than 250 built in objects, including support for a plethora of OS stats Conky can display this info either as text, or using simple progress bars and graph widgets, with different fonts and colours.Internet is full of examples as well as a wiki page
~$ lspci | grep -i eth
00:0a.0 Ethernet controller: nVidia Corporation MCP77 Ethernet (rev a2)
~$ ethtool -i eth0
driver: forcedeth
version: 0.64
firmware-version:
bus-info: 0000:00:0a.0
How to determine Ethernet connection speed in Ubuntu ~$ sudo ethtool eth0
Settings for eth0:
Supported ports: [ MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised pause frame use: No
Advertised auto-negotiation: Yes
Link partner advertised link modes: Not reported
Link partner advertised pause frame use: No
Link partner advertised auto-negotiation: No
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 1
Transceiver: external
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Link detected: yes
sudo ethtool eth0 | grep -i speed
Speed: 100Mb/s
To Turn off Auto-Negotiate feature
sudo ethtool -s eth0 autoneg off
To setup your Ethernet network card speed 100 and full duplex
sudo ethtool -s eth0 speed 100 duplex full
To setup your Ethernet network card speed 10 and half duplex
sudo ethtool -s eth0 speed 10 duplex half
sudo mii-tool eth0
SIOCGMIIPHY on 'eth0' failed: Operation not supported