一些mount命令用法

mount /dev/sdb1 /mnt

mount -t iso9660 /dev/cdrom /mnt  据说iso9660是光盘的文件格式, -t选项可无把。

mount 192.168.1.2:/var/ftp/pub /mnt  挂载远程LINUX共享文件(NFS)

mount -t iso9660 -o loop a.iso /mnt  挂载镜像文件

 

mount //192.168.1.3/tools /mnt    挂载windows操作系统的共享文件

mount -t cifs //192.168.1.3/tools /mnt

mount -t cifs -o username=Adiministrator //192.168.1.3/tools /mnt

你可能感兴趣的:(mount)