You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a CentOS 6.7 system, I've installed the Nix package manager according the appropriate documentation, i.e. I executed bash <(curl https://nixos.org/nix/install). This is a single-user installation.
The first package I installed was chromium. However, upon trying to launch chromium, I get this error:
[4140:4140:1103/111112:FATAL:setuid_sandbox_host.cc(158)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /nix/store/13psa5rxjsdxk1ghnkf5q9n25985v7ly-chromium-45.0.2454.101/libexec/chromium/chrome-sandbox is owned by root and has mode 4755.
Aborted (core dumped)
Of course, since this is a single-user installation, that file is owned by me rather than root. Doesn't look to be in the correct mode, either:
$ ls -l /nix/store/13psa5rxjsdxk1ghnkf5q9n25985v7ly-chromium-45.0.2454.101/libexec/chromium/chrome-sandbox
-r-xr-xr-x 1 me mygroup 22947 Dec 31 1969 /nix/store/13psa5rxjsdxk1ghnkf5q9n25985v7ly-chromium-45.0.2454.101/libexec/chromium/chrome-sandbox
The text was updated successfully, but these errors were encountered:
a1russell
changed the title
Chromium fails on single-user installation
Chromium fails on CentOS
Nov 4, 2015
Chromium needs either suid or a recent enough kernel. In nix store we don't allow suid. I suspect the CentOS kernel is too old. See #895 for details. I consider this a duplicate – better discuss on the original issue.
On a CentOS 6.7 system, I've installed the Nix package manager according the appropriate documentation, i.e. I executed
bash <(curl https://nixos.org/nix/install)
. This is a single-user installation.The first package I installed was chromium. However, upon trying to launch chromium, I get this error:
Of course, since this is a single-user installation, that file is owned by me rather than root. Doesn't look to be in the correct mode, either:
The text was updated successfully, but these errors were encountered: