Hi, just recently this started happening for no apparent reason.
I am running Ubuntu Mate on a Raspberry Pi2. This is the output from terminal:
ross@pi2:~$ chromium-browser
Segmentation fault (core dumped)
ross@pi2:~$ [4066:4066:0324/182725:ERROR:sandbox_linux.cc(334)] InitializeSandbox() called with multiple threads in process gpu-process
I have already tried re-installing chromium-browser and deleting the configuration files for it.
I can comfirm that is is doing the same exact thing here with the same message.
I have also tried the same fix (uninstall Chromium-browser, and even removing the chromium browser folder in (homefolder)/.config ā¦ I reinstalled it and same segment fault message as the original poster
I have tried updating Chromium and it is still not working for me.
Please how can I fix it ?
Here is the output from terminal again:
ross@pi2:~$ chromium-browser
[1766:1766:0328/165027:ERROR:logging.h(813)] Failed to call method: org.freedesktop.DBus.ObjectManager.GetManagedObjects: object_path= /: org.freedesktop.DBus.Error.TimedOut: Failed to activate service āorg.bluezā: timed out
Segmentation fault (core dumped)
ross@pi2:~$ [1813:1813:0328/165030:ERROR:sandbox_linux.cc(334)] InitializeSandbox() called with multiple threads in process gpu-process
Iām using a Pi2. Many other users said they were experiencing the same problem, please can I know how any of you resolved it ?
This problem came out of nowhere. What is the proper procedure to update chromium to latest version or roll back to a previous version or to update Ubuntu Mate on the pi as well ? Thanks
At least for me, there are 2 versions available, where the oldest works.
I had to remove the newest with sudo apt-get remove chromium-browser chromium-codecs-ffmpeg-extra chromium-browser-l10n
and then install the older one with sudo apt-get install chromium-browser=45.0.2454.101-0ubuntu1.1201 chromium-codecs-ffmpeg-extra=45.0.2454.101-0ubuntu1.1201 chromium-browser-l10n=45.0.2454.101-0ubuntu1.1201
(Edit to add Aworanās instructions to block chromium updates)
Block updates with sudo apt-mark hold chromium-codecs-ffmpeg-extra chromium-browser chromium-browser-l10n
Last working version is 48 but is not available with apt-get install.
So I think the best to downgrade to last working version is open a terminal then :
i have been battling this for the last few days and it seems that the reason for this happening is the --enable-pinch flag.
if i open an xterm and type in chromium-browser --disable-pinch chrome will launch.
if i then go on to set the flag in chrome://flags/#enable-pinch to disable i can launch chromium from inside the xterm without the switch.
however - when i launch X and try to start it from the command line this happens:-
startx /usr/bin/chromium-browser --kiosk
which launches
/bin/sh /usr/bin/startx /usr/bin/chromium-browser --kiosk
which in turn launches
xinit /usr/bin/chromium-browser --kiosk
which the launches
chromium-browser --enable-pinch --kiosk
i found what it was
/etc/alternatives/x-www-browser
has a variable want_touch_pinch set to 1 by default. this was triggering the adding of the --enable-pinch
no matter what you set anywhere else, it was being added by this script and over-rides the disable flag
setting it to 0 solved the issue.
perhaps a good question now would be - why is this script even messing with --enable-pinch ?