Estoy intentando montar /tmp
en la RAM en el servidor Ubuntu (14.04):
echo "tmpfs /tmp tmpfs rw,nosuid,nodev,noatime 0 0" | tee -a /etc/fstab
Esta línea parece estar bien, se agrega /etc/fstab
y, después de reiniciar el sistema, /tmp
se monta como se esperaba.
Pero cuando intento aplicar estos cambios sobre la marcha (sin reiniciar el sistema):
mount -o remount /tmp
Recibo este error:no montado o mala opción
¿Lo que está mal?
Respuesta1
Desde la mount
página de manual:
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.
Como /tmp
aún no está montado cuando lo intentas mount -o remount /tmp
, falla. Para que funcione mientras aún no está montado, debes hacerlo mount /tmp
en su lugar.