0
  1. I am unable to edit /etc/network/interfaces and /etc/resolv.conf file with vi editor. How can I access the file as a owner?

  2. This is my network settings in Windows 7. I want to configure it in ubuntu 12.10. How can I do this?

    IP address 192.168.40.31
    Subnet mask 255.255.255.0
    Default gateway 192.168.40.1
    Preferred   DNS server 10.230.253.253
    Alternet DNS server 203.147.88.2
    
David Foerster
  • 36,264
  • 56
  • 94
  • 147

2 Answers2

1

Try sudo vi /etc/network/interfaces, and sudo vi /etc/resolv.conf that should let you edit the files.

If that doesn't work, try sudo su enter your password, and try editing the files that way.

Mitch
  • 107,631
0

If you are using the desktop edition, you could also right click on the Network-Manager icon at the top right. (It should look like a little computer, Wi-Fi symbol, or a set of up/down arrows) In the menu that pops up choose "edit connections". Then enter your information in a manner similar to Windows.

If you're using server, and have no graphical interface installed you might try
sudo nano /etc/network/interfaces and sudo nano /etc/resolve.conf

Control + O will write the changes and Ctrl + X will exit.

Hope this helps. Have a great day.

Argusvision
  • 1,711