Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Other Community Discussions > Ubuntu LoCo Team Forums > United States LoCo Teams > Washington DC Team - US
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Washington DC Team - US
Washington DC LoCo Team - US

 
Thread Tools Display Modes
Old August 29th, 2007   #1
ericsaxalto
5 Cups of Ubuntu
 
Join Date: Aug 2007
Location: Washington, DC
Beans: 16
Ubuntu 6.06 Dapper
Question Internet problems Gateway MT6705 laptop

I have successfully installed Ubuntu on my Gateway MT6705 as the primary operating system, however, I cannot get any internet connection - even with an ethernet connection. I have wireless at the house and the computer detects wireless, but I get a message saying "Firefox can't find server". I went into the Networking and punched in the IP address but nothing has changed. Any suggestions?

Last edited by KevinCole; August 29th, 2007 at 07:56 PM..
ericsaxalto is offline   Reply With Quote
Old August 29th, 2007   #2
KevinCole
5 Cups of Ubuntu
 
KevinCole's Avatar
 
Join Date: Sep 2005
Location: Washington, DC
Beans: 21
Kubuntu 7.10 Gutsy Gibbon
Lightbulb Re: Internet problems Gateway MT6705 laptop

Quote:
Originally Posted by ericsaxalto View Post
I have successfully installed Ubuntu on my Gateway MT6705 as the primary operating system, however, I cannot get any internet connection - even with an ethernet connection. I have wireless at the house and the computer detects wireless, but I get a message saying "Firefox can't find server". I went into the Networking and punched in the IP address but nothing has changed. Any suggestions?
If you know the IP number of a web site (as opposed to the IP name), you could try entering that into your browser to see if that part is working okay. For example, http://69.147.114.210/ should take you to Yahoo. If that works then the problem sounds like a DNS error. Look at the contents of /etc/resolv.conf . It should have a couple of lines in it that begin with:
nameserver
followed by an IP number. Since you are setting your IP number manually, I'm assuming you will also know the IP addresses of your DNS nameservers.

Let us know how it goes.
__________________
Free software, free speech, free thought
GNU/Linux, Esperanto, Atheism
KevinCole is offline   Reply With Quote
Old August 29th, 2007   #3
ericsaxalto
5 Cups of Ubuntu
 
Join Date: Aug 2007
Location: Washington, DC
Beans: 16
Ubuntu 6.06 Dapper
Re: Internet problems Gateway MT6705 laptop

KevinCole,

Thanks for the suggestion. I entered the IPaddress and it poped up with a message that says: "Firefox doesn't know how to open this address, because the protocol (htp) isn't associated with any program." I tried it with a couple different IP addresses and it didn't work. If you have any other thoughts I'm happy to try. Thanks again!
ericsaxalto is offline   Reply With Quote
Old August 29th, 2007   #4
KevinCole
5 Cups of Ubuntu
 
KevinCole's Avatar
 
Join Date: Sep 2005
Location: Washington, DC
Beans: 21
Kubuntu 7.10 Gutsy Gibbon
Lightbulb Re: Internet problems Gateway MT6705 laptop

Quote:
Originally Posted by ericsaxalto View Post
KevinCole,

Thanks for the suggestion. I entered the IPaddress and it poped up with a message that says: "Firefox doesn't know how to open this address, because the protocol (htp) isn't associated with any program." I tried it with a couple different IP addresses and it didn't work. If you have any other thoughts I'm happy to try. Thanks again!
Try again. It looks like you had a typo in your address. Use http not htp. (Maybe you can copy and paste it from my previous message to avoid typing mistakes.)
__________________
Free software, free speech, free thought
GNU/Linux, Esperanto, Atheism
KevinCole is offline   Reply With Quote
Old August 30th, 2007   #5
dinomite
First Cup of Ubuntu
 
dinomite's Avatar
 
Join Date: Mar 2006
Location: Arlington, va
Beans: 3
Ubuntu 7.10 Gutsy Gibbon
Re: Internet problems Gateway MT6705 laptop

If KevinCole then it would help us to have more information. If you could capture the output of the command ifconfig and, perhaps using a USB thumb drive, post it here that would be useful. To make a file with the output of ifconfig open a terminal from the Applications > Accessories menu and type /sbin/ifconfig > ~/Desktop/ifconfig.txt which should result in a new file named ifconfig.txt appearing on your desktop. Just post the contents of that file here.

-Drew
dinomite is offline   Reply With Quote
Old August 30th, 2007   #6
ericsaxalto
5 Cups of Ubuntu
 
Join Date: Aug 2007
Location: Washington, DC
Beans: 16
Ubuntu 6.06 Dapper
Re: Internet problems Gateway MT6705 laptop

Quote:
Originally Posted by dinomite View Post
If KevinCole then it would help us to have more information. If you could capture the output of the command ifconfig and, perhaps using a USB thumb drive, post it here that would be useful. To make a file with the output of ifconfig open a terminal from the Applications > Accessories menu and type /sbin/ifconfig > ~/Desktop/ifconfig.txt which should result in a new file named ifconfig.txt appearing on your desktop. Just post the contents of that file here.

-Drew
I ran the commands that you suggested and I got the iconfig.txt on my desktop, but when I opened it it was blank. I would have put the contents in but there simply were none. I don't know what that means.
ericsaxalto is offline   Reply With Quote
Old August 30th, 2007   #7
KevinCole
5 Cups of Ubuntu
 
KevinCole's Avatar
 
Join Date: Sep 2005
Location: Washington, DC
Beans: 21
Kubuntu 7.10 Gutsy Gibbon
Lightbulb Re: Internet problems Gateway MT6705 laptop

Quote:
Originally Posted by ericsaxalto View Post
I ran the commands that you suggested and I got the iconfig.txt on my desktop, but when I opened it it was blank. I would have put the contents in but there simply were none. I don't know what that means.
OK... Go back into the terminal, and this time type:

Quote:
sudo -i
/etc/init.d/networking restart
ifconfig
cat /etc/resolv.conf
tail -n 20 /var/log/messages
See if any of that yields useful information. The above sets you up as the root user, then tries to restart the network. You should see it give you a bit of info as it tries to do this. Then ifconfig should give you the status of your network devices. cat /etc/resolv.conf should tell you if your DNS nameservers are set up correctly. tail... should look at the last 20 lines in your messages log, which is one of the better places to look when something's going wrong with your system. (There are several others in /var/log/ that are worth keeping an eye on.)
__________________
Free software, free speech, free thought
GNU/Linux, Esperanto, Atheism
KevinCole is offline   Reply With Quote
Old August 31st, 2007   #8
ericsaxalto
5 Cups of Ubuntu
 
Join Date: Aug 2007
Location: Washington, DC
Beans: 16
Ubuntu 6.06 Dapper
Re: Internet problems Gateway MT6705 laptop

Quote:
Originally Posted by KevinCole View Post
OK... Go back into the terminal, and this time type:



See if any of that yields useful information. The above sets you up as the root user, then tries to restart the network. You should see it give you a bit of info as it tries to do this. Then ifconfig should give you the status of your network devices. cat /etc/resolv.conf should tell you if your DNS nameservers are set up correctly. tail... should look at the last 20 lines in your messages log, which is one of the better places to look when something's going wrong with your system. (There are several others in /var/log/ that are worth keeping an eye on.)
KevinCole, I ran those commands but the terminal wouldn't register anything (any keys) once it asked for the password. Here's what I got:
ericsaxalto@ericsaxalto-laptop:~$ iconfig
bash: iconfig: command not found
ericsaxalto@ericsaxalto-laptop:~$ /sbin/iconfig>~/Desktop/ifconfig.txt
bash: /sbin/iconfig: No such file or directory
ericsaxalto@ericsaxalto-laptop:~$
ericsaxalto is offline   Reply With Quote
Old September 1st, 2007   #9
KevinCole
5 Cups of Ubuntu
 
KevinCole's Avatar
 
Join Date: Sep 2005
Location: Washington, DC
Beans: 21
Kubuntu 7.10 Gutsy Gibbon
Re: Internet problems Gateway MT6705 laptop

Quote:
Originally Posted by ericsaxalto View Post
KevinCole, I ran those commands but the terminal wouldn't register anything (any keys) once it asked for the password.
When it asks for the password, just type it and press enter. It won't "register" anything. When you're typing the password nothing shows up. Just type it in anyway, and press enter. And type carefully.

Quote:
Originally Posted by ericsaxalto View Post
Here's what I got:
ericsaxalto@ericsaxalto-laptop:~$ iconfig
bash: iconfig: command not found
ericsaxalto@ericsaxalto-laptop:~$ /sbin/iconfig>~/Desktop/ifconfig.txt
bash: /sbin/iconfig: No such file or directory
ericsaxalto@ericsaxalto-laptop:~$

ifconfig. (You missed the "f")
__________________
Free software, free speech, free thought
GNU/Linux, Esperanto, Atheism

Last edited by KevinCole; September 1st, 2007 at 12:45 PM..
KevinCole is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:03 AM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. bilberry