掛載文件系統(tǒng):mount /dev/sda1 /mnt
指定文件系統(tǒng)類型:mount -t ext4 /dev/sda1 /mnt
指定掛載選項(xiàng):mount -o rw /dev/sda1 /mnt
指定只讀掛載:mount -o ro /dev/sda1 /mnt
手動(dòng)卸載文件系統(tǒng):umount /mnt
強(qiáng)制卸載文件系統(tǒng):umount -f /mnt
顯示當(dāng)前已經(jīng)掛載的文件系統(tǒng):mount
顯示指定文件系統(tǒng)的掛載信息:mount | grep /mnt
掛載網(wǎng)絡(luò)共享文件系統(tǒng):mount -t cifs //192.168.1.1/share /mnt -o username=user,password=pass
自動(dòng)掛載文件系統(tǒng):在/etc/fstab文件中添加相應(yīng)的條目。例如:/dev/sda1 /mnt ext4 defaults 0 0