Ubuntu server12.10을 설치할 때 인터넷에 연결되어 있지 않으며 설치하는 동안 수동으로 네트워크 구성을 선택했습니다. 이제 서버를 인터넷에 연결해야 합니다. 제발 도와주세요..... 미리 감사드립니다.
답변1
네트워크를 수동으로 구성하도록 설정한 경우 다음으로 이동하세요.
nano /etc/network/interfaces
다음과 같을 것이다
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address ..
netmask
gateway
network
broadcast
바꿔야 해
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
#comment out the lines below this and Save the file
그런 다음 실행
sudo /etc/init.d/networking restart
DHCP 서버에 연결되어 있으면 해당 서버에서 IP를 가져옵니다.