Mar. 1st, 2013
Дела небесные
Mar. 1st, 2013 03:56 amОригинал взят у
istinata в Дела небесные
![[livejournal.com profile]](https://www.dreamwidth.org/img/external/lj-userinfo.gif)
Оригинал взят у
pavel_sviridov в Дела небесные
![[livejournal.com profile]](https://www.dreamwidth.org/img/external/lj-userinfo.gif)
открывшийся На Солнце, в своем посте "Отец небесный продолжает удивлять". Не прошло и года, как похожий портал опять открылся на нашей звезде. Ну, и свежий репортаж об
НЛО с немецкого телевидения. (Долбаный ЖЖ глючит, и нет возможности правильно расположить, не обессудьте).
HowTo: Linux Mount devpts File System On /dev/pts
The Linux kernel support pseudo-terminal master and slave (also known as Unix98 pty naming) using using the devpts file system, that should be mounted on /dev/pts. You can mount the devpts using any one of the following method:
[1] Use mount comamnd
[2] Use /etc/fstab file.
mount command syntax
The syntax is (must type as root user):
mount -t devpts devpts /dev/pts
/etc/fstab syntax
Edit /etc/fstab, enter:
# vi /etc/fstab
Append the following line:
devpts /dev/pts devpts gid=5,mode=620 0 0
Save and close the file. Reboot the server / machine.
How do I verify that the devpts is mounted under Linux?
Type the following command:
$ grep --color devpts /proc/mounts
OR
$ mount | grep --color devpts