Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
google-chrome doesn't work after installing libreoffice
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
FrankRizz0
l33t
l33t


Joined: 29 Nov 2006
Posts: 617

PostPosted: Sun Apr 23, 2017 12:25 pm    Post subject: google-chrome doesn't work after installing libreoffice Reply with quote

Good morning all!

Having issues with my wifi/google-chrome at the moment. I installed libreoffice on my work lappy last night, and this morning I tried to start google-chrome and my wifi was out. Turned it back on, still no google-chrome. Restarted dhcp and this is what it returned:

Code:
# /etc/init.d/dhcpcd restart
 * Stopping DHCP Client Daemon ...                                                                                                                                                                                            [ ok ]
 * Starting DHCP Client Daemon ...
/lib/dhcpcd/dhcpcd-run-hooks: line 144: /etc/resolv.conf: No such file or directory
chmod: cannot operate on dangling symlink '/etc/resolv.conf'


I've been away from gentoo for awhile so I'm basically a newbie again. Apparently my /etc/resolve.conf somehow go buggered in the process of installing libreoffice and I'm not sure how to fix it, or what should belong in there.

Anyhow, thanks in advance for any assistance!
Back to top
View user's profile Send private message
eccerr0r
Watchman
Watchman


Joined: 01 Jul 2004
Posts: 9679
Location: almost Mile High in the USA

PostPosted: Mon Apr 24, 2017 10:33 pm    Post subject: Reply with quote

I would hope both of these have nothing to do with dhcpcd and /etc/resolv.conf .

Just want to make sure, this is not wifi and you're not using wicd/networkmanager?

Do a
Code:
$ ls -l /etc/resolv.conf
to at least see what it's talking about. It's reporting a symlink which is kind of unusual, normally it should be a straight file there.
_________________
Intel Core i7 2700K/Radeon R7 250/24GB DDR3/256GB SSD
What am I supposed watching?
Back to top
View user's profile Send private message
FrankRizz0
l33t
l33t


Joined: 29 Nov 2006
Posts: 617

PostPosted: Tue Apr 25, 2017 10:52 am    Post subject: Reply with quote

Hi eccerr0r

I tried just about everything I could think of and without a response from anyone, I decided to try and reinstall Gentoo from scratch. Unfortunately the same error came back after libreoffice finished installing. I'm not using NetworkManager but it looks like that's what it's looking for. Here is the output:

Code:
 # ls -l /etc/resolv.conf
lrwxrwxrwx 1 root root 31 Apr 24 00:03 /etc/resolv.conf -> /run/NetworkManager/resolv.conf


Thanks for your assistance.

Edit: So apparently it messed up my resolv.conf, and because during install I just copy the info from the cd, I have no idea how to edit this :?
Back to top
View user's profile Send private message
cboldt
Veteran
Veteran


Joined: 24 Aug 2005
Posts: 1046

PostPosted: Tue Apr 25, 2017 11:41 am    Post subject: Reply with quote

Remove /etc/resolv.conf

Understood that you are not using networkmanager now, but it was installed on your system at some point. That link from /etc/resolv.conf to a networkmanager managed file was created during an install of networkmanager. If you ren;t using networkmanager, I suggest you remove it from your system.

Code:
emerge -p --depclean networkmanager


dhcpcd will write a new /etc/resolv.conf for you, when you start or restart the network.

From `man dhcpcd`

Code:
dhcpcd gets the host information (IP address, routes, etc) from a DHCP server and configures the network interface of the machine on which it is running.  dhcpcd then runs the configuration script which writes DNS information to resolvconf(8), if available, otherwise directly to /etc/resolv.conf.


For what it's worth, I start, stop, restart the networks here using /etc/init.d/net.wlan0, /etc/init.d/net.eth0, etc, which in turn call dhcpcd. I'm not saying that restarting dhcpcd only won't work, only that I don't know.
Back to top
View user's profile Send private message
FrankRizz0
l33t
l33t


Joined: 29 Nov 2006
Posts: 617

PostPosted: Tue Apr 25, 2017 2:00 pm    Post subject: Reply with quote

Thanks gentlemen, working now. I also had to emerge --unmerge networkmanager and she's running fine.
Back to top
View user's profile Send private message
FrankRizz0
l33t
l33t


Joined: 29 Nov 2006
Posts: 617

PostPosted: Tue Apr 25, 2017 2:36 pm    Post subject: Reply with quote

Apparently I spoke too soon. I'm again unable to connect to any web pages via google-chrome. I can not emerge anything either, but I have an IP address with both my wifi and my ethernet. Still getting the same error as well:

Code:
# ls -l /etc/resolv.conf
lrwxrwxrwx 1 root root 31 Apr 25 13:37 /etc/resolv.conf -> /run/NetworkManager/resolv.conf


And:

Code:
 # /etc/init.d/dhcpcd restart
 * Unmounting network filesystems ...                                                                                                                                                                                         [ ok ]
 * Stopping DHCP Client Daemon ...                                                                                                                                                                                            [ ok ]
 * Starting DHCP Client Daemon ...
/lib/dhcpcd/dhcpcd-run-hooks: line 144: /etc/resolv.conf: No such file or directory
chmod: cannot operate on dangling symlink '/etc/resolv.conf'
Back to top
View user's profile Send private message
cboldt
Veteran
Veteran


Joined: 24 Aug 2005
Posts: 1046

PostPosted: Tue Apr 25, 2017 3:18 pm    Post subject: Reply with quote

Are you sure networkmanager is gone? Your "new" problem is EXACTLY the same as the "old" problem.

No /etc/init.d/networkmanager?

No matter what, you will have to repeat `rm /etc/resolv.conf` but that doesn't get rid of whatever is making that bogus symlink in the first place.
Back to top
View user's profile Send private message
FrankRizz0
l33t
l33t


Joined: 29 Nov 2006
Posts: 617

PostPosted: Tue Apr 25, 2017 3:32 pm    Post subject: Reply with quote

As far as I know it's gone, I have no idea how else to remove it, so as long as emerge --unmerge networkmanager & emerge -p --depclean networkmanager gets rid of it, I should be golden. Also:

Code:
# emerge -p --depclean networkmanager
--- Couldn't find 'networkmanager' to depclean.
>>> No packages selected for removal by depclean


rm /etc/resolv.conf + /etc/init.d/dhcpcd restart gets it back up, but I don't look forward to doing this every time my network decides to fail :?
Back to top
View user's profile Send private message
cboldt
Veteran
Veteran


Joined: 24 Aug 2005
Posts: 1046

PostPosted: Tue Apr 25, 2017 3:45 pm    Post subject: Reply with quote

emerge -p anything is a "pretend" operation and only reports back what it would do.

emerge --unmerge networkmanager should get rid of nearly everything, but might leave behind some things. If it has left behind /etc/init.d/networkmanager, the way to remove it is brute force, `rm /etc/init.d/networkmanager`

emerge --depclean networkmanager is the graceful way to remove it, and that would fail if you had any packages that depend on networkmanager. The "--unmerge" parameter is brute force, the package WILL be removed. It'll get reinstalled too, on an emerge update, if any installed package depends on it.

I boot using openrc., and would make sure `rc-update show` doesn't include networkmanager. I don't know how to get rid of system startup under systemd.
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