Results 1 to 10 of 28
Hi, I just got linux, so hi.
Anyway, I installed it, and it's not letting me connect to the Internet.
I don't really know what specs and that you need ...
- 05-27-2011 #1Just Joined!
- Join Date
- May 2011
- Posts
- 18
Ubuntu Internet Problems
Hi, I just got linux, so hi.
Anyway, I installed it, and it's not letting me connect to the Internet.
I don't really know what specs and that you need to know, so just reply and say what you need to know.
Thanks, Mew.
- 05-27-2011 #2Just Joined!
- Join Date
- May 2011
- Posts
- 38
Hello Mew,
normally, you only have to set your ethernet configurations and dhcp.
I believe this link will solve your problem:
Good luck,Code:http://www.cyberciti.biz/faq/setting-up-an-network-interfaces-file/
Frederico
- 05-27-2011 #3Just Joined!
- Join Date
- May 2011
- Posts
- 18
Umm, thanks, but I don't really understand it, could you please explain what I need to do in a bit, well, more newb friendly way?
Thanks.
- 05-27-2011 #4Just Joined!
- Join Date
- May 2011
- Posts
- 38
Open a terminal first and then, go to the folder /etc/network:
Then, edit the file interfaces. I do not know the editor (vi, nano, gedit) you have. So, try nano (for example):Code:$cd /etc/network
Your file will probably look something like this:Code:$nano interfaces
To save you have to press first "Crtl+x" and the "y" to save.Code:auto lo iface lo inet loopback iface eth0 inet static address 192.168.1.5 netmask 255.255.255.0 gateway 192.168.1.254
Doing the same, edit /etc/resolv.conf. It will look something like:
After that, type the following command line:Code:nameserver 192.168.2.19
Then, reboot and it should work.Code:$/etc/init.d/networking restart
Code:$sudo reboot
- 05-27-2011 #5Just Joined!
- Join Date
- May 2011
- Posts
- 18
Thanks for trying to help, but I am stuck at step one, it says "bash: /ect/network: No such file or directory".
Is there any other way?
Thanks.
- 05-27-2011 #6Just Joined!
- Join Date
- May 2011
- Posts
- 38
"bash: /ect/network: No such file or directory"
You wrote it wrong, you should have written:
Code:$cd /etc/network
- 05-27-2011 #7Just Joined!
- Join Date
- May 2011
- Posts
- 18
Yeah, it's still saying that, the whole terminal says:
Brad@Brad-desktop:~$ $cd /ect/network
Bash: /ect/network: No such file or directory
Thanks.
- 05-27-2011 #8Just Joined!
- Join Date
- May 2011
- Posts
- 38
You did not write the "$", did you?
- 05-27-2011 #9Just Joined!
- Join Date
- May 2011
- Posts
- 18
Yeah, I did.
- 05-27-2011 #10Just Joined!
- Join Date
- May 2011
- Posts
- 38
Try the following command:
If you have the file, the address will be shown for you on the terminal.Code:sudo find / -name interfaces
What is the Linux that you have, by the way?


Reply With Quote