About 2,330,000 results
Open links in new tab
  1. How do I remount a filesystem as read/write? - Ask Ubuntu

    Aug 14, 2012 · I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3 in command line it returns …

  2. what the difference between remount to umount/mount?

    Nov 12, 2017 · The remount option is used when the file system isn't currently in use to modify the mount option from ro to rw. target is busy. If the file system is already in use you can't umount …

  3. fstab - usage of mount -o remount rw / - Ask Ubuntu

    The remount functionality follows the standard way how the mount command works with options from fstab. It means the mount command doesn't read fstab (or mtab) only when a device and …

  4. filesystems - How can I remount with only a few mount options ...

    May 29, 2021 · The remount functionality follows the standard way the mount command works with options from fstab. This means that mount does not read fstab (or mtab) only when both …

  5. How do I remount a filesystem read/write? - Ask Ubuntu

    What if a process tries to remount the system read/write after you remounted everything with an emergency remount? I think that's just actively inhibited to forbid any process to go against the …

  6. How do I remount a file system as read/write in linux?

    Dec 24, 2022 · How do I remount a file system as read/write in linux from read only needed for dev/sda6 ext4, OS is Dual boot but window is not running Ubuntu 22.04.1

  7. Remount all filesystems in fstab with new options

    Apr 4, 2020 · The mount -a command disregards mount options, which makes it useless when that's what you changed. How to re-evaluate all the mount options in fstab as if rebooting?

  8. What is the difference between mount -a and mount -o remount …

    Nov 19, 2019 · The remount option attempt to remount an already-mounted filesystem. This is commonly used to change the mount flags for a filesystem, especially to make a readonly …

  9. Remount a busy disk to read-only mode - Unix & Linux Stack …

    I want to force a disk partition to read only mode and keep it read-only for more than 30 minutes. What I have tried: mount -o remount,ro (partition-identifier) (mount-point) -t (filesystem) Iss...

  10. Can you remount /tmp partition to exec while live?

    I have a server I need to re mount the /tmp partition to run exec. The code I want to use is: mount -o remount,exec /tmp Run the program that needs it. Than change it back. mount -o …