Ho un sistema Linux minimale.
init è /bin/bash
, solo il minimo delle librerie in /lib/
, /dev/
è popolato staticamente, nessun demone in esecuzione (no udev, ..)
Quando inizia bash, ottengo il seguente errore:
bash: cannot set terminal process group (-1) inappropriate ioctl for device
bash: no job control in this shell
Quando inizio bash con strace, ottengo il seguente output:
rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
open("/dev/tty", O_RDWR|O_NONBLOCK) = -1 ENXIO (No such device or address)
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
....
readlink("/proc/self/fd/0", "/dev/console"..., 4095) = 12
stat("/dev/console", {st_mode=S_IFCHR|0600, st_rdev=makedev(5, 1), ...}) = 0
open("/dev/console", O_RDWR|O_NONBLOCK) = 3
Sembra che Bash non possa aprirsi /dev/tty
. Ma /dev/tty
esiste /dev/
e ha le autorizzazioni corrette:
ll /dev/tty*
crw-rw-rwT 1 root root 5, 0 2014-Sep-29 23:39:47 dev/tty
crw------T 1 root root 4, 0 2015-Dec-23 20:10:18 dev/tty0
crw------T 1 root root 4, 1 2015-Dec-23 20:10:18 dev/tty1
Perché non riesco ad bash
aprire /dev/tty
? E cosa significa l' ENXIO
errore?