LINUX系统上的各种挂载方法
1.挂载光盘镜像:
#mount -t iso9660 -o loop /tmp/cd.iso /mnt/cdrom;
2.挂载光盘:
#mount -t iso9660 /dev/cdrom /mnt/cdrom
3.映射windows上的资料到Linux上:
#mount -t smbfs -o username=administrator/test.gz (用户名/域名),password=密码 //192.168.0.130/fold(windowsserver 名/分享的资料夹名) /mnt/esx
4.挂载目录
#mount --bind /etc/vmfs /mnt/vpc
5.挂载U盘
#mount -o iocharset=utf8(gb2312) /dev/sda1 /mnt/usb
6.挂载本地FAT32分区并显示中文
#mount -t vfat -o iocharset=cp936 /dev/hda /mnt/win
7. 卸载挂载了的目录
#umount /mnt/cdrom
阅读(811) | 评论(0) | 转发(0) |