mmoalem
Posts: 3
Joined: Sun Nov 13, 2016 8:25 pm

chromium wont start after dist-upgrade

Sat Jan 14, 2017 6:44 pm

OK had some issues with VNC - been adviced to update - this fixed vnc but caused my lxpanel to disappear - after many hours finally found an advice to dist-upgrade - that fixed it but now chromium wont start - running from terminal i get:
Inconsistency detected by ld.so: dl-open.c: 689: _dl_open: Assertion `_dl_debug_initialize (0, args.nsid)->r_state == RT_CONSISTENT' failed!
any ideas?

wh7qq
Posts: 1448
Joined: Thu Oct 09, 2014 2:50 am

Re: chromium wont start after dist-upgrade

Sat Jan 14, 2017 8:36 pm

Running

Code: Select all

apt-get dist-upgrade
on Raspbian has been problematic. You might try

Code: Select all

sudo apt-get remove chromium && sudo apt-get install chromium 
. If that doesn't clear up your issues, a fresh install of the latest Raspbian after backing up your data is probably your safest bet.

User avatar
rpdom
Posts: 17173
Joined: Sun May 06, 2012 5:17 am
Location: Chelmsford, Essex, UK

Re: chromium wont start after dist-upgrade

Sat Jan 14, 2017 8:44 pm

wh7qq wrote:Running

Code: Select all

apt-get dist-upgrade
on Raspbian has been problematic. You might try

Code: Select all

sudo apt-get remove chromium && sudo apt-get install chromium 
. If that doesn't clear up your issues, a fresh install of the latest Raspbian after backing up your data is probably your safest bet.
I'd use

Code: Select all

sudo apt-get purge chromium && sudo apt-get install chromium
as "remove" only removes the software and leaves the configuration files behind. "purge" deletes those files as well.

In fact I'd go as far as suggesting

Code: Select all

sudo apt-get purge chromium
sudo apt-get --purge autoremove
sudo apt-get -y install chromium
as that will delete all traces of any dependent packages as well.

What it won't do is to remove any user specific config files that have been generated. That will call for a manual search/destroy mission, if needed.

User avatar
kusti8
Posts: 3439
Joined: Sat Dec 21, 2013 5:29 pm
Location: USA

Re: chromium wont start after dist-upgrade

Sun Jan 15, 2017 2:40 am

rpdom wrote:
wh7qq wrote:Running

Code: Select all

apt-get dist-upgrade
on Raspbian has been problematic. You might try

Code: Select all

sudo apt-get remove chromium && sudo apt-get install chromium 
. If that doesn't clear up your issues, a fresh install of the latest Raspbian after backing up your data is probably your safest bet.
I'd use

Code: Select all

sudo apt-get purge chromium && sudo apt-get install chromium
as "remove" only removes the software and leaves the configuration files behind. "purge" deletes those files as well.

In fact I'd go as far as suggesting

Code: Select all

sudo apt-get purge chromium
sudo apt-get --purge autoremove
sudo apt-get -y install chromium
as that will delete all traces of any dependent packages as well.

What it won't do is to remove any user specific config files that have been generated. That will call for a manual search/destroy mission, if needed.
Should be some of those files in .config and that's it. Everything else should be in /etc/chromium-browser or /usr/lib/chromium-browser of course
There are 10 types of people: those who understand binary and those who don't.

Return to “Troubleshooting”