linux中mount命令的使用方法有哪些

小億
99
2023-06-12 21:39:56

  1. 掛載文件系統(tǒng):mount /dev/sda1 /mnt

  2. 指定文件系統(tǒng)類型:mount -t ext4 /dev/sda1 /mnt

  3. 指定掛載選項(xiàng):mount -o rw /dev/sda1 /mnt

  4. 指定只讀掛載:mount -o ro /dev/sda1 /mnt

  5. 手動(dòng)卸載文件系統(tǒng):umount /mnt

  6. 強(qiáng)制卸載文件系統(tǒng):umount -f /mnt

  7. 顯示當(dāng)前已經(jīng)掛載的文件系統(tǒng):mount

  8. 顯示指定文件系統(tǒng)的掛載信息:mount | grep /mnt

  9. 掛載網(wǎng)絡(luò)共享文件系統(tǒng):mount -t cifs //192.168.1.1/share /mnt -o username=user,password=pass

  10. 自動(dòng)掛載文件系統(tǒng):在/etc/fstab文件中添加相應(yīng)的條目。例如:/dev/sda1 /mnt ext4 defaults 0 0

0