Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Why gentoo cannot access the Internet on my laptops?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Networking & Security
View previous topic :: View next topic  
Author Message
shanehou
n00b
n00b


Joined: 13 Jul 2013
Posts: 39

PostPosted: Sat Jul 13, 2013 11:22 am    Post subject: Why gentoo cannot access the Internet on my laptops? Reply with quote

Here is the thing. I firstly used the minimal CD to install Gentoo, but I stuck at the beginning of the handbook, because 'ifconfig -a' only showed 'lo'. So I searched the Internet and the forum, and somebody suggested to use 'lspci', and 'lspci' showed the right network devices on my computer (My computer is Acer 4738G, with Broadcom 57780). Then I tried 'modprobe -r tg3' and 'modprobe tg3', then 'ifconfig -a' showed 'enp2s0'. But I still couldn't access the Internet after setting IP, netmask and gateway (I could access the Internet this way on any other OS). I tried to ping the gateway, and it showed something like 'destination unreachable'.
So I figured out two ways to solve it: to download everything the installation needs, or the change a livecd. Obviously I chose the latter. I made an Ubuntu LiveCD to continue my installation. Everything went well, until I finished the installation and 'reboot' to enter my Gentoo: 'ifconfig -a' still only showed 'lo' (I had selected some related drivers and support in kernel), and 'tg3' was built in so I was unable to remove and load it. Then I tried to use 'genkernel', and things went back to the situation where the minimal CD was. I am still unable the access the Internet.

Can anybody help? I really want to use Gentoo, but it seems not so friendly to the laptop, for I have faced the same problem on my another laptop Lenovo Y460, and I faced no problem on my desktop computer when installing and using Gentoo.
_________________
A man with two right arms.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54214
Location: 56N 3W

PostPosted: Sat Jul 13, 2013 11:33 am    Post subject: Reply with quote

shanehou,

Welcome to Gentoo.

Do you intend to use a static network setup or do you want to use something like dhcpcd to assign your settings?
Your post did not mention the file /etc/resolv.conf which needs to contain a line of the form
Code:
nameserver <ip_address>
or site names won't work but IP addresses will.

If your tg3 support is made as a module, you will need to list in /etc/conf.d/modules or modprobe it by hand. Network drivers are one of the few things not auto loaded.

Your wired interface should appear in
Code:
ifconfig -a
even if its not up.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
The Doctor
Moderator
Moderator


Joined: 27 Jul 2010
Posts: 2678

PostPosted: Sat Jul 13, 2013 4:31 pm    Post subject: Re: Why gentoo cannot access the Internet on my laptops? Reply with quote

shanehou wrote:
I could access the Internet this way on any other OS


Have you tried installing linux-firmware? I have experienced exactly this kind of problem when I properly set up my kernel but neglected the firmware. Other Linux distros tend to bundle it so you don't even notice you used it.

You could probably find the exact package if you wanted to be minimalistic about it.

EDIT: I would also like to add that this oversight on my part took me about 3 months to figure out the first time I tried to install Gentoo. I know first hand how frustrating it is to have all the components but somehow it still won't work.
_________________
First things first, but not necessarily in that order.

Apologies if I take a while to respond. I'm currently working on the dematerialization circuit for my blue box.


Last edited by The Doctor on Sat Jul 13, 2013 5:06 pm; edited 2 times in total
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54214
Location: 56N 3W

PostPosted: Sat Jul 13, 2013 4:37 pm    Post subject: Reply with quote

The Doctor,

linux-firmware can be configured to install only the firmware you want but you get the config stuff with linux-firmware, so you can't set up the config until its installed, if you see what I mean.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
The Doctor
Moderator
Moderator


Joined: 27 Jul 2010
Posts: 2678

PostPosted: Sat Jul 13, 2013 5:04 pm    Post subject: Reply with quote

NeddySeagoon wrote:
linux-firmware can be configured to install only the firmware you want but you get the config stuff with linux-firmware, so you can't set up the config until its installed, if you see what I mean.
I think so. You install it and then you can tell it what features you would like to add or remove, like busybox.
_________________
First things first, but not necessarily in that order.

Apologies if I take a while to respond. I'm currently working on the dematerialization circuit for my blue box.
Back to top
View user's profile Send private message
shanehou
n00b
n00b


Joined: 13 Jul 2013
Posts: 39

PostPosted: Thu Jul 18, 2013 7:40 am    Post subject: Reply with quote

NeddySeagoon wrote:
shanehou,

Welcome to Gentoo.

Do you intend to use a static network setup or do you want to use something like dhcpcd to assign your settings?
Your post did not mention the file /etc/resolv.conf which needs to contain a line of the form
Code:
nameserver <ip_address>
or site names won't work but IP addresses will.

If your tg3 support is made as a module, you will need to list in /etc/conf.d/modules or modprobe it by hand. Network drivers are one of the few things not auto loaded.

Your wired interface should appear in
Code:
ifconfig -a
even if its not up.



Thanks Neddy.
My Internet connection needs a static setup, and I have set my IP, netmask and gateway. As for DNS server, I also have set it in /etc/resolv.conf, but it doesn't matter, because I still cannot reach the gateway at all.
Now using genkernel, tg3 is a module, and like I said, everything goes back to the minimal CD situation - I can see the right network device through 'ifconfig -a' after I manually 'modprobe -r tg3' and 'modprobe tg3', but it's useless.
_________________
A man with two right arms.
Back to top
View user's profile Send private message
shanehou
n00b
n00b


Joined: 13 Jul 2013
Posts: 39

PostPosted: Sat Jul 20, 2013 9:02 am    Post subject: Re: Why gentoo cannot access the Internet on my laptops? Reply with quote

The Doctor wrote:
shanehou wrote:
I could access the Internet this way on any other OS


Have you tried installing linux-firmware? I have experienced exactly this kind of problem when I properly set up my kernel but neglected the firmware. Other Linux distros tend to bundle it so you don't even notice you used it.

You could probably find the exact package if you wanted to be minimalistic about it.

EDIT: I would also like to add that this oversight on my part took me about 3 months to figure out the first time I tried to install Gentoo. I know first hand how frustrating it is to have all the components but somehow it still won't work.


Thanks, I later found a great solution: http://archives.gentoo.org/gentoo-user/msg_0660911392cb23b34dd2bc859827ff0c.xml, and it works!
_________________
A man with two right arms.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Networking & Security All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum