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
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 0 comments… add one now }