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 /salesdataTo mount all file systems listed in /etc/fstab, enter:
mount -aFurther readings:
man mount
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -

