码迷,mamicode.com
首页 > 系统相关 > 详细

linux学习札记

时间:2015-10-12 10:35:51      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

1. mount命令 mount [-参数] [设备名称] [挂载点]

  sd*代表scic硬盘 cdrom一般是/dev/hdc 软驱是/dev/fd

  -t vfstype -o options -a

  -a的意思是搜索/etc/fstab文件中满足条件的文件系统,进行挂载操作。格式: mount -a -t type -o options 不需要指定设备/目录

  除了在配置文件里写明,也可以用mount挂载windows共享文件(samba)

  #mkdir /mnt/winshare

  #mount -t smbfs -o username=w,password=w,codepage=936,iocharset=gb2312 //192.168.0.101/share /mnt/winshare

  指定访问共享的用户名,密码,codepage指定编码与iocharset同意义。这里的windows 系统是中文简体。codepage指定文件系统的代码页,简体中文中文代码是936;iocharset指定字符集,简体中文一般用cp936或gb2312

  mount挂载u盘

  如果计算机没有其它SCSI设备和usb外设的情况下,插入的U盘的设备路径是 /dev/sda1,用命令:

  #mkdir /mnt/upan

  #mount /dev/sda1 /mnt/upan

linux学习札记

标签:

原文地址:http://www.cnblogs.com/qiaolong/p/4870840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!