bug#34211: error running container: mingetty cannot find ttys

2019-03-13 Thread Ludovic Courtès
Hi, Arun Isaac skribis: >> so it's possible to "manually" remove the unneeded mingetty and >> console-fonts services from containers >> >> how could it be automated? should it be automated? (IMHO yes) > > I too believe it should be automated. But, I'll leave the others on this > thread to come

bug#34211: error running container: mingetty cannot find ttys

2019-02-15 Thread Arun Isaac
> so it's possible to "manually" remove the unneeded mingetty and > console-fonts services from containers > > how could it be automated? should it be automated? (IMHO yes) I too believe it should be automated. But, I'll leave the others on this thread to come to a decision. signature.asc Desc

bug#34211: error running container: mingetty cannot find ttys

2019-02-15 Thread Giovanni Biscuolo
Arun Isaac writes: >>> You should do something along the lines of the following: >>> >>> (remove (lambda (service) >>> (let ((type (service-type-name (service-kind service >>> (or (eq? type 'mingetty) >>> (eq? type 'console-fonts >>> %base-ser

bug#34211: error running container: mingetty cannot find ttys

2019-02-15 Thread Arun Isaac
>> You should do something along the lines of the following: >> >> (remove (lambda (service) >> (let ((type (service-type-name (service-kind service >> (or (eq? type 'mingetty) >> (eq? type 'console-fonts >> %base-services) > > thank you for yo

bug#34211: error running container: mingetty cannot find ttys

2019-02-15 Thread Giovanni Biscuolo
Hi Arun, Arun Isaac writes: >> please any hint on how to "manually" remove those two failing services? > > You should do something along the lines of the following: > > (remove (lambda (service) > (let ((type (service-type-name (service-kind service > (or (eq? type 'min

bug#34211: error running container: mingetty cannot find ttys

2019-02-14 Thread Arun Isaac
> please any hint on how to "manually" remove those two failing services? You should do something along the lines of the following: (remove (lambda (service) (let ((type (service-type-name (service-kind service (or (eq? type 'mingetty) (eq? type 'console

bug#34211: error running container: mingetty cannot find ttys

2019-02-13 Thread Giovanni Biscuolo
Hello, Giovanni Biscuolo writes: [...] > I'll try to remove term-tty[1..6] manually from services declaration, if > I manage to "manually" solve this I'll report here I tried but failed, I'm removing both mingetty and console-font from %base-services list: --8<---cut here-

bug#34211: error running container: mingetty cannot find ttys

2019-02-12 Thread Giovanni Biscuolo
Hi Ludo' thank you for looking into this issue! Ludovic Courtès writes: [...] > I also get this behavior. OK, so this is deterministic now :-) > What happens is that the /dev/ttyN nodes do not exist (understandably), > and thus the ‘console-font-ttyN’ Shepherd services fail to start, and > g

bug#34211: error running container: mingetty cannot find ttys

2019-02-11 Thread Ludovic Courtès
Hi Giovanni, Giovanni Biscuolo skribis: > plase is there someone else that could reproduce this issue with "guix > system container": https://issues.guix.info/issue/34211 ? [...] > Feb 6 12:45:44 localhost > /gnu/store/mbq93mr1vbs6za0n0yn32gfsyq1wx6xf-mingetty-1.08/sbin/mingetty[217]: > tty

bug#34211: error running container: mingetty cannot find ttys

2019-02-06 Thread Giovanni Biscuolo
Hi! plase is there someone else that could reproduce this issue with "guix system container": https://issues.guix.info/issue/34211 ? I'm still not able to run a container built using "guix system container container-minimal.scm -r container-minimal" I'm on guix commit: 4aeb7f34c948f32363f2ae29c6

bug#34211: error running container: mingetty cannot find ttys

2019-01-26 Thread Efraim Flashner
On Fri, Jan 25, 2019 at 06:46:48PM +0100, Giovanni Biscuolo wrote: > Hi guix! > > I'm experimenting with my first "system container": it builds but it > fails running > > I build the container using this operating system definition: > > --8<---cut here---start