How to mount a Folder from another Partition in Linux In case we want to mount a folder located in other partition, below steps can be followed. mkdir /stage mount --bind /u01/stage /stage To make this permanent add in your /etc/fstab like this: /u01/stage /stage none bind Check the mount now. [himanshu@ebs122 ~]$ df -aTh Filesystem Type Size Used Avail Use% Mounted on /dev/sda1 ext4 9.8G 3.6G 5.8G 39% / proc proc 0 0 0 - /proc sysfs sysfs 0 0 0 - /sys devpts devpts ...