MySQL社区

标题: LINUX系统上的各种挂载方法 [打印本页]

作者: liyihongcug    时间: 2009-6-2 18:52
标题: LINUX系统上的各种挂载方法
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

文章出处:http://www.diybl.com/course/6_system/linux/Linuxjs/2008926/145632.html




欢迎光临 MySQL社区 (http://www.mysqlpub.com/) Powered by Discuz! X3.2