Skip to content

Fork Pty3

The terminal process failed to launch: A native exception occurred during launch (fork(pty3) failed.).

Solution

The link says to put this in /etc/fstab

Terminal window
devpts /dev/pts devpts rw,noexec,nosuid,gid=5,mode=620 0 0

I actually used

Terminal window
devpts /dev/pts devpts rw,nosuid,noexec,relatime,seclabel,gid=5,mode=620,ptxmode=000

A working box showed the following output

Terminal window
mount | grep pts
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,seclabel,gid=5,mode=620,ptxmode=000)

My broken box showed

Terminal window
mount | grep pts
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,seclabel,mode=600,ptxmode=000)