# Unmount File Systems (Linux)

## NFS

### Step One, Check Mount Information

1. Use the `df -h` command on the linux cloud host to check the NFS file system mount situation.   
<!-- image-todo -->


### Step Two, Uninstall File System

1. Use the following command to uninstall the NFS file system.

        umount /data
    
    Please replace the /data path in the example with the actual mount file path.

## SMB

### Step One, Check Mount Information

1. Use the `df -h` command on the linux cloud host to check the SMB file system mount situation.  
<!-- image-todo -->

### Step Two, Uninstall File System

1. Use the following command to uninstall the SMB file system.

        umount /media
    
    Please replace the /media path in the example with the actual mount file path.
