You are not logged in.
Pages: 1
Before running mkarchiso, I've got:
$ mount | grep pts
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
Then I run mkarchiso and it does this:
mount -t devpts devpts "${work_dir}/root-image/dev/pts"
...
umount "${work_dir}/root-image/dev/pts"
and afterwards I see this:
$ mount | grep pts
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,mode=600,ptmxmode=000)
And now I can't run another copy of urxvt; it fails trying to change the owner of the entry it creates in /dev/pts. But xterm works OK.
Who should I report this bug to? Is it a bug in mkarchiso (for mounting the devpts filesystem), or in systemd (which is supposed to be handling the devpts file system), or in the kernel (for changing the gid and mode of the 1st mount when I do the 2nd) or even in urxvt (for doing something that xterm finds unnecessary) ?
Offline
Have asked on archiso mailing list about this one as I am having the same issue but with lxterminal.
Mr Green
Offline
Have asked on archiso mailing list about this one as I am having the same issue but with lxterminal.
The thread in question: https://mailman.archlinux.org/pipermail … 03266.html
https://bbs.archlinux.org/viewtopic.php … 5#p1312645
https://mailman.archlinux.org/pipermail … 33999.html
Offline
Do not have devpts in fstab
#
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
tmpfs /tmp tmpfs nodev,nosuid,size=7G 0 0
/dev/sda2 / ext4 defaults,noatime,discard 0 1
/dev/sda3 /home ext4 defaults,noatime,discard,x-systemd.automount 0 1
/dev/sda4 /var ext4 defaults,noatime,discard 0 1
Mr Green
Offline
That's my only lead / guess: it has something to do with glibc 2.18.
Offline
It only happens when I run mkarchiso
references
mount -t devpts devpts "${work_dir}/root-image/dev/pts"
umount "${work_dir}/root-image/dev/pts"
Mr Green
Offline
Offline
Will just have to keep an eye out for any changes to glibc, guess its not really an arch-releng issue. Took me a while to figure out why lxterminal stopped working
Just tried building iso with those lines above commented out iso runs ok.... YMMV
Last edited by Mr Green (2013-09-17 18:29:47)
Mr Green
Offline
Pages: 1