unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: Half a success with chroot
       [not found]   ` <80adf28a-7058-987a-b934-8e52fa26b68d@freenet.de>
@ 2018-03-12 22:29     ` Gábor Boskovits
  2018-03-13 10:16       ` Thorsten Wilms
  0 siblings, 1 reply; 2+ messages in thread
From: Gábor Boskovits @ 2018-03-12 22:29 UTC (permalink / raw)
  To: t_w_; +Cc: Guix-devel, help-guix

[-- Attachment #1: Type: text/plain, Size: 3880 bytes --]

2018-03-12 22:10 GMT+01:00 Thorsten Wilms <t_w_@freenet.de>:

> On 12.03.2018 20:17, Gábor Boskovits wrote:
>
> Hello! It would be nice to know the error code returned by the pivot_root
>> syscall. It might point to the reason of the failure.
>> Most probably you can get that using strace. Stracing the daemon is
>> possible using strace -fp pid_of_daemon.
>>
>
> Result of `strace -fp 3364 &> strace_guix-daemon.txt &` attached.
>
> grep -b4 -a4 pivot strace_guix-daemon.txt
> 5208309-[pid  3421] mount("none", "/gnu/store/4vgn265kihmk1aayy3
> rg5h4z00dvlfmy-emacs-bash-completion-2.0.0.drv.chroot/dev/shm", "tmpfs",
> 0, NULL) = 0
> 5208451-[pid  3421] lstat("/dev/pts/ptmx", 0x7fff0a3217a0) = -1 ENOENT (No
> such file or directory)
> 5208542-[pid  3421] chdir("/gnu/store/4vgn265kihmk
> 1aayy3rg5h4z00dvlfmy-emacs-bash-completion-2.0.0.drv.chroot") = 0
> 5208650-[pid  3421] mkdir("real-root", 000)     = 0
> 5208694:[pid  3421] pivot_root(".", "real-root") = -1 EINVAL (Invalid
> argument)
> 5208766-[pid  3421] write(2, "while setting up the build envir"..., 190) =
> 190
> 5208837-[pid  3411] <... read resumed> "w", 1)  = 1
> 5208881-[pid  3421] exit_group(1 <unfinished ...>
> 5208923-[pid  3411] read(15,  <unfinished ...>
>
>
> Context:
> ---
> root@charly # guix-daemon --build-users-group=guixbuild &
> [1] 3364
> root@charly /# strace -fp 3364 &> strace_guix-daemon.txt &
> [2] 3395
> root@charly /# su thorwil
> thorwil@charly /$ source /etc/profile
> thorwil@charly /$ guix package -i emacs-bash-completion
> guile: warning: failed to install locale
> warning: failed to install locale: Invalid argument
> accepted connection from pid 3407, user thorwil
> spurious SIGPOLL
> The following package will be installed:
>    emacs-bash-completion        2.0.0 /gnu/store/7irxjifw4m8sj0if2nj
> 0r26vf0n0imsj-emacs-bash-completion-2.0.0
>
> substitute: guile: warning: failed to install locale
> substitute: warning: failed to install locale: Invalid argument
> substitute: updating list of substitutes from '
> https://mirror.hydra.gnu.org'... 100.0%
> The following derivations will be built:
>    /gnu/store/gdihnrv0zykypajy7p94k9qzpmgqbkvz-profile.drv
>    /gnu/store/xlyyh54y77nm8gzm81rckkcvzaihn7dh-fonts-dir.drv
>    /gnu/store/pm80lbbbx2xhvnfb838zn90bwwcw2818-xdg-desktop-database.drv
>    /gnu/store/nkcspwxnd7hmf144krxzv1clq4gch6ms-ca-certificate-bundle.drv
>    /gnu/store/n72ahz242h07dz32g2fkpr308a6cwdb6-xdg-mime-database.drv
>    /gnu/store/fw9k5rg7p6czcp4bnnqkr57gv1qcyg78-gtk-im-modules.drv
>    /gnu/store/856smz8kn9l2gq2b6qcykv6aa06c3qv7-info-dir.drv
>    /gnu/store/1bybb1dnry03qwkr2d2888xi2z0hb6y7-gtk-icon-themes.drv
>
> /gnu/store/4vgn265kihmk1aayy3rg5h4z00dvlfmy-emacs-bash-
> completion-2.0.0.drv
>    /gnu/store/gwlj87yvqfsrv6lzcphfm65ndwpar0df-manual-database.drv
> guix package: error: build failed: while setting up the build environment:
> cannot pivot old root directory onto '/gnu/store/4vgn265kihmk1aayy3
> rg5h4z00dvlfmy-emacs-bash-completion-2.0.0.drv.chroot/real-root': Invalid
> argument
> ---
>
>
>
Could you please check, if the solution mentioned here works for you:
https://bugzilla.redhat.com/show_bug.cgi?id=1361043

A short summary: Similar error can be caused by shared mounts.

This way you can check if this applies.

Note 'shared' in the output:

grep -iP '/ /\s' /proc/$$/mountinfo
...
25 0 252:1 / / rw,relatime shared:1 - ext4 /dev/mapper/my--vg-root
rw,errors=remount-ro,data=ordered
...

This is usual in systemd systems, and Ubuntu is one of them.

Calling unshare -m within the process context helps this.

I'm forwarding this also to devel, so that we can discuss, if doing this is
advisable in
general. WDYT?


>
> --
> Thorsten Wilms
>
> thorwil's design for free software:
> http://thorwil.wordpress.com/
>

[-- Attachment #2: Type: text/html, Size: 6280 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Half a success with chroot
  2018-03-12 22:29     ` Half a success with chroot Gábor Boskovits
@ 2018-03-13 10:16       ` Thorsten Wilms
  0 siblings, 0 replies; 2+ messages in thread
From: Thorsten Wilms @ 2018-03-13 10:16 UTC (permalink / raw)
  Cc: Guix-devel, help-guix

On 12.03.2018 23:29, Gábor Boskovits wrote:
> Could you please check, if the solution mentioned here works for you:
> https://bugzilla.redhat.com/show_bug.cgi?id=1361043
> 
> A short summary: Similar error can be caused by shared mounts.
> 
> This way you can check if this applies.
> 
> Note 'shared' in the output:
> 
> grep -iP '/ /\s' /proc/$$/mountinfo
> ...
> 25 0 252:1 / / rw,relatime shared:1 - ext4 /dev/mapper/my--vg-root rw,errors=remount-ro,data=ordered
> ...

$ grep -iP '/ /\s' /proc/$$/mountinfo
26 0 8:17 / / rw,relatime shared:1 - ext4 /dev/sdb1 
rw,errors=remount-ro,data=ordered


> This is usual in systemd systems, and Ubuntu is one of them.
> 
> Calling unshare -m within the process context helps this.

I interpreted that to mean after the chroot, but:
---
$ sudo chroot /media/ssd-alt-system /run/current-system/profile/bin/bash
root@charly /# source /etc/profile
root@charly /# unshare -m
unshare: failed to execute /bin/bash: No such file or directory
---

However, combined with chroot, it works:
---
$ sudo unshare -m sudo chroot /media/ssd-alt-system 
/run/current-system/profile/bin/bash
root@charly /# source /etc/profile
root@charly /# guix-daemon --build-users-group=guixbuild &
[1] 5907
root@charly /# su thorwil
thorwil@charly /$ source /etc/profile
thorwil@charly /$ guix package -i emacs-bash-completion
guile: warning: failed to install locale
warning: failed to install locale: Invalid argument
accepted connection from pid 5916, user thorwil
spurious SIGPOLL
spurious SIGPOLL
spurious SIGPOLL
The following package will be installed:
    emacs-bash-completion	2.0.0 
/gnu/store/7irxjifw4m8sj0if2nj0r26vf0n0imsj-emacs-bash-completion-2.0.0

substitute: guile: warning: failed to install locale
substitute: warning: failed to install locale: Invalid argument
spurious SIGPOLL
substitute: updating list of substitutes from 
'https://mirror.hydra.gnu.org'... 100.0%
The following derivations will be built:
    /gnu/store/gdihnrv0zykypajy7p94k9qzpmgqbkvz-profile.drv
    /gnu/store/xlyyh54y77nm8gzm81rckkcvzaihn7dh-fonts-dir.drv
    /gnu/store/pm80lbbbx2xhvnfb838zn90bwwcw2818-xdg-desktop-database.drv
    /gnu/store/nkcspwxnd7hmf144krxzv1clq4gch6ms-ca-certificate-bundle.drv
    /gnu/store/n72ahz242h07dz32g2fkpr308a6cwdb6-xdg-mime-database.drv
    /gnu/store/fw9k5rg7p6czcp4bnnqkr57gv1qcyg78-gtk-im-modules.drv
    /gnu/store/856smz8kn9l2gq2b6qcykv6aa06c3qv7-info-dir.drv
    /gnu/store/1bybb1dnry03qwkr2d2888xi2z0hb6y7-gtk-icon-themes.drv
 
/gnu/store/4vgn265kihmk1aayy3rg5h4z00dvlfmy-emacs-bash-completion-2.0.0.drv
    /gnu/store/gwlj87yvqfsrv6lzcphfm65ndwpar0df-manual-database.drv
grafting 
'/gnu/store/hfc5j4dq387s2iyvz392dja8zc75cvss-emacs-bash-completion-2.0.0' 
-> 
'/gnu/store/7irxjifw4m8sj0if2nj0r26vf0n0imsj-emacs-bash-completion-2.0.0'...
Creating manual page database...
32 entries processed in 0.2 s

warning: collision encountered:
/gnu/store/jfbf26368y3q897whlf8n5vina2scj82-gtk-icon-themes/share/icons/hicolor/icon-theme.cache
/gnu/store/wndka13848kxaxw2ymv7l4ajzi1abrbb-inkscape-0.92.2/share/icons/hicolor/icon-theme.cache
warning: arbitrarily choosing 
/gnu/store/jfbf26368y3q897whlf8n5vina2scj82-gtk-icon-themes/share/icons/hicolor/icon-theme.cache
44 packages in profile
thorwil@charly /$
---

There are still those "spurious SIGPOLL" and I don't think I saw 
"substitute: guile: warning: failed to install locale" when booted into 
Guix SD.


> I'm forwarding this also to devel, so that we can discuss, if doing this 
> is advisable in
> general. WDYT?

OK, I just subscribed to guix-devel.


-- 
Thorsten Wilms

thorwil's design for free software:
http://thorwil.wordpress.com/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-03-13 10:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <acf6e2e4-91ee-a580-8723-9057ad636200@freenet.de>
     [not found] ` <CAE4v=pjULSxMdTn=XQWZ+-5cDTpiGzO-yiExMBhQ_nbg-YSdHQ@mail.gmail.com>
     [not found]   ` <80adf28a-7058-987a-b934-8e52fa26b68d@freenet.de>
2018-03-12 22:29     ` Half a success with chroot Gábor Boskovits
2018-03-13 10:16       ` Thorsten Wilms

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).