
Originally Posted by
jbrown96
However, I'm not sure how to configure Ubuntu for DHCP without Network-Manager.

Originally Posted by
aheckler
Go into System > Preferences > Sessions and uncheck Network Monitor. That does the trick for me.
these two messages miss one thing in order not to be contradicting each other:
Code:
gksudo gedit /etc/network/interfaces
... 
it should look something like (get the right numbers from ifconfig while You have working connection) (remove "#" in lines You want active (depending You want DHCP or static IP)):
Code:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface DHCP
#auto eth0
#iface eth0 inet dhcp
# The primary network interface static
#auto eth0
#iface eth0 inet static
# address ***.***.***.***
# netmask ***.***.***.***
# gateway ***.***.***.***
# broadcast ***.***.***.***
to jbrown96:since You want just DHCP You could go with:
Code:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface DHCP
auto eth0
iface eth0 inet dhcp
Bookmarks