/tmp
Ubuntuサーバー(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
。