Created
March 23, 2015 23:24
-
-
Save CreatorB/0b9606a89fdf93fd466e to your computer and use it in GitHub Desktop.
Connecting Wired via CLI - UBUNTU LINUX
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
nano /etc/network/interfaces | |
Default conf show like this: | |
auto lo | |
iface lo inet loopback | |
and now following add this lines and save it and close: | |
auto eth0 | |
iface eth0 inet dhcp | |
and restart the network manager: sudo service network-manager restart (alt : /etc/init.d/networking restart) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment