어떻게 이런 일이 발생했는지 모르겠지만 /proc/mounts가 사라졌습니다.
root# cat /proc/mounts
cat: /proc/mounts: No such file or directory
또한 더 이상 오랫동안 NFS 공유를 마운트할 수 없습니다.
# mount -t nfs 10.10.10.10:/backups /mnt/thing/ -v
mount.nfs: timeout set for Mon May 3 16:24:58 2021
mount.nfs: trying text-based options 'vers=4.1,addr=10.10.10.10,clientaddr=10.10.10.11'
mount.nfs: mount(2): Invalid argument
mount.nfs: trying text-based options 'vers=4.0,addr=10.10.10.10,clientaddr=10.10.10.11'
mount.nfs: mount(2): Invalid argument
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
mount.nfs: an incorrect mount option was specified
이 문제를 어떻게 해결할 수 있나요?
답변1
내가 아는 한 /proc/mounts를 삭제할 수 없어야 합니다. proc 의사 파일 시스템에서는 이를 허용하지 않습니다.
이는 아마도 /proc에 procfs를 설치하지 않았음을 의미할 것입니다. 이 시도!
mount -t proc proc /proc