Mount Command In UNIX

by Vivek Gite on February 20, 2008 · 0 comments

How do I use the mount command in UNIX to mount my file systems?

The mount command tells the UNIX operating system that a file system is ready to use i.e. mount a file system at a particular point in the system's file system hierarchy.

Mount Command

The syntax is as follows:

mount /dev/XYZN /mount/point
WARNING! The mount commands require root user privilege or the corresponding fine-grained privilege, unless the file system is defined as "user mountable" in the /etc/fstab file.

Examples

Mount /dev/sda5 (Linux partition) in /data directory:

mkdir /data
mount /dev/sda5 /data
df -H
ls /data
cd /data

Mount /dev/aacd0s1g (FreeBSD UNIX partition) in /salesdata directory:

mkdir /salesdata
df -H
mount /dev/aacd0s1g /salesdata
ls /salesdata
cd /salesdata

Mount /dev/dsk/c1t4d0s0 under Solaris UNIX at /data2, enter:

mkdir /data2
mount /dev/dsk/c1t4d0s0 /data2

To remove mount point run:

umount /salesdata

To mount all file systems listed in /etc/fstab, enter:

mount -a

Further readings:

man mount

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 5 + 13 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: