/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대신 수행해야 합니다.

관련 정보