tree -aCd -L 1 /tree -aCd -L 1 /usrtree -aCd -L 2 /hometree -aCd -L 1 /var

Mounting and Unmounting

mount | head -10            # mount: show all presently mounted filesystemsdf -Th                      # df: disk free, T: filesystem Typedf -Hcat /proc/mountssudo mount /dev/sda5 /home  # /dev/sda5: device node, /home: mount point# There are other ways to specify the partition other than the device node, such as using the disk label or UUID.sudo umount /home# To be automatically available every time the system starts up,# edit /etc/fstab (filesystem table)man fstab

NFS on the Server

sudo systemctl start nfs
cat /etc/exports
exports -av   # notify Linux about the directories you are allowing to be remotely mountedsudo systemctl restart nfssudo systemctl enable nfs# Note: On RHEL/CentOS 8, the service is called nfs-server, not nfs

NFS on the Client