linux mount 合并目录,linux mount一个目录到另外一个目录

从linux内核2.4.0以后mount支持mount --bind 一个目录到另外一个目录

比如:

[root@localhost wind]# mkdir test1 test2 dir3

mount --bind test1 test2

把test1挂载到test2,如果test2目录有内容将被遮住(dir2目录的内容一样存在。就好像窗帘把窗户遮住一样。窗户始终存在,只是被遮住而已,等umount了,原来dir2目录的内容就显示出来了)

要取消挂载使用umount即可

并不是使用mount --move dir1 dir2

mount --move是把dir1移到dir2,如果使用mount --move dir1 dir2将报错

mount: wrong fs type, bad option, bad superblock on dir1,

missing codepage or other error

In some cases useful info is found in syslog - try

dmesg | tail  or so

使用mount --move dir1 dir3就把dir1挂载到dir3(先umount dir1+再mount dir1到dir3),同时dir2的内容显示出来,dir3的原来内容被dir1的遮住

如果在开机的时候自动挂载,可以在/etc/fstab里面增加以下内容

dir1   dir2    none    bind   0   0

mount经常使用方法如下:

1.mount iso

mount -o loop a.iso /mnt/iso

2.挂载fat32到linux下

mount -t vat /dev/sda1 /mnt/xp

3.挂载之后,访问里面乱码的解决

mount –o iocharset=gb2312 codepage=936 /dev/hda5 /mnt/hda5

4.为什么mount上去以后分区普通用户不可写?

mount时加上 –o umask=000 即可:

# mount –o umask=000, iocharset=cp936 /dev/hda5 /mnt/hda5

5.如何挂载samba 分区?

# mkdir /mnt/share

# mount -t smbfs -o username=root,password=abc,codepage=936,iocharset=gb2312 //IP/share /mnt/share

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值