CentOSで実行されているサーバーに問題があります。 CentOSはバージョン6.4にアップグレードされ、すべてのアップデートが含まれています。公式リポジトリに基づいて更新されました。 V-Serverを実行しているサーバーで。
/etc/fstab
# Device Mountpoint FStype Options Dump Pass
/dev/sda1 /boot ext3 rw,noatime 1 2
/dev/vg0/root / ext3 rw,noatime 1 1
/dev/vg0/swap none swap sw 0 0
/dev/vg0/usr /usr ext3 rw,noatime 1 2
/dev/vg0/var /var ext3 rw,noatime 1 2
/dev/vg0/log /var/log ext3 rw,noatime 1 2
/dev/vg0/tmp /tmp ext3 rw,noatime,nosuid,noexec 1 2
/dev/vg0/home /home ext3 rw,noatime 1 2
/dev/vg0/vz /vservers ext3 rw,noatime 1 2
tmpfs /dev/shm tmpfs defaults 0 0
devpts /dev/pts devpts rw,gid=5,mode=620 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
問題は次のとおりです/dev/pts/ptmx
。
root@Hostname #/dev/pts > ls -la
total 0
drwxr-xr-x 2 root root 0 Sep 12 12:34 .
drwxr-xr-x 18 root root 3860 Sep 12 12:34 ..
crw--w---- 1 mmichalski tty 136, 0 Sep 12 12:53 0
c--------- 1 root root 5, 2 Sep 12 12:34 ptmx
ご覧のとおり、権限がありません。仮想実行でも同様です。以下は仮想fstabファイルです。
Vserverで実行される仮想fstab
なし /proc proc デフォルト 0 0 なし
/tmp tmpfs サイズ=16m,mode=1777 0 0 なし
/dev/pts devpts gid=5,mode=620 0 0
この問題の原因は何であり、回避策はどこにありますか?
答え1
読んだら文書そうですね。これは意図的に設計されています。
The only difference between this single-instance mode and the legacy mode
is the presence of new, '/dev/pts/ptmx' node with permissions 0000, which
can safely be ignored.