a3470194

挂载共享文件夹
# mount -t cifs -o nsername=administrator,password=  //192.168.100.1/123 /mnt/123


挂载NTFS文件系统
# mount -t ntfs-3g /dev/sda5 /mnt/d_driver


挂载FAT32文件系统
# mount -t vfat /dev/sda6   /mnt/e_driver


挂载光盘文件系统
# mount -o loop -t iso9660 db29.7_07_linux64.iso /mnt/cdrom/


linux挂载U盘
[root@localhost ~]# fdisk -l
[root@localhost ~]# cd /mnt
[root@localhost mnt]# mkdir usb
[root@localhost mnt]# mount -t vfat /dev/sdb4 /mnt/usb


===============================================
卸载:
umount /mnt/d_driver
umount /mnt/e_driver

 

分类:

技术点:

相关文章:

  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-09-02
猜你喜欢
  • 2021-11-08
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
相关资源
相似解决方案