/tmp를 RAM(tmpfs)에 다시 마운트할 수 없습니다.

/tmp를 RAM(tmpfs)에 다시 마운트할 수 없습니다.

/tmpUbuntu 서버(14.04)의 RAM에 설치하려고 합니다 .

echo "tmpfs /tmp tmpfs rw,nosuid,nodev,noatime 0 0" | tee -a /etc/fstab

이 줄에는 문제가 없는 것 같습니다. /etc/fstab시스템을 다시 시작한 후 /tmp예상대로 추가되고 설치됩니다 .

하지만 이 변경 사항을 즉시 적용하려고 하면(시스템을 다시 시작하지 않고):

mount -o remount /tmp

다음 오류가 발생합니다.설치되지 않았거나 잘못된 옵션

뭐가 문제 야?

답변1

mount맨페이지 에서 :

remount Attempt to remount an already-mounted filesystem. This is commonly used to change the mount flags for a filesystem, especially to make a readonly filesystem writeable. It does not change device or mount point.

/tmp시도할 때 설치되지 않았기 때문에 실패합니다 mount -o remount /tmp. 아직 설치되지 않은 경우 작동하게 하려면 다음을 수행해야 합니다 mount /tmp.

관련 정보