How To FreeBSD Remount Partition

by on February 7, 2006 · 3 comments· last updated at May 21, 2008

Q. How do I remount partition under FreeBSD? How do I mount readonly partition as (remount) read write mode?

A. Linux or other Unixish oses need to pass -o remount option to mount command. However, FreeBSD does not require any special option to remount file system. It can use standard mount command. The mount utility calls the mount(2) system call to prepare and graft a special device or the remote node (rhost:path aka NFS) on to the file system tree at the point node. For example if your file system is mounted in read only mode then you can remount it using following command (log in as a root user):

Freebsd Remount Command

Type the following command as the root user (superuser):
# mount -o rw /dev/ad0s1a /
OR
# mount -o rw /
Where,

  • -o : Takes different options as follows:
  • rw : Read write
  • ro : Read only

Make sure you replace /dev/ad0s1a and / with appropriate values.



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 3 comments… read them below or add one }

1 Steve Kamerman July 18, 2008 at 11:31 am

Your first example did not work for me on FreeBSD 6.1, but if I leave the device off (like in your second command), it does work properly as shown here:


frenzy:~# mount -o rw /dev/ad0s1a /mnt/ad0s1a.ufs/
mount: /dev/ad0s1a: Operation not permitted
frenzy:~# mount -o rw /mnt/ad0s1a.ufs/
frenzy:~#

Thanks for the tip (I’m a Linux geek, so these subtle differences are annoying)!

Reply

2 Tom Bailey September 8, 2009 at 12:38 am

If you update an entry in fstab you can test it like this
mount -o remount /fstabmountpoint

This will remount ALL mount points mentioned in fstab that are automounted
mount -o remount -a
———————————————————————-
From http://linux.die.net/man/8/mount
mount -a [-t type] [-O optlist]

(usually given in a bootscript) causes all file systems mentioned in fstab (of the proper type and/or having or not having the proper options) to be mounted as indicated, except for those whose line contains the noauto keyword. Adding the -F option will make mount fork, so that the filesystems are mounted simultaneously.

(ii) When mounting a file system mentioned in fstab, it suffices to give only the device, or only the mount point.

Reply

3 Nux January 8, 2011 at 5:21 pm

That thing doesn’t work. In my case I needed to remount as noexec.
What works (on my freebsd 6) is:
mount -u -o noexec /tmp

Check the manpage for mount.

Mount -o remount,opts only works on Linux afaik.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , , ,

Previous Faq:

Next Faq: