unions fs sample

root@ubuntu-server:/media# mount -t unionfs -o dirs=/media/rw=rw:/media/feisty=ro unionfs /media/unionfs

root@ubuntu-server:/media# cd unionfs/
root@ubuntu-server:/media/unionfs# ls
boot  etc   initrd  media  opt   root  srv  tmp  var
bin  dev   home  lib     mnt    proc  sbin  sys  usr
root@ubuntu-server:/media/unionfs# cd usr
root@ubuntu-server:/media/unionfs/usr# ls
bin  games  include  lib  local  sbin  share  src
root@ubuntu-server:/media/unionfs/usr# touch a
root@ubuntu-server:/media/unionfs/usr# cd ..
root@ubuntu-server:/media/unionfs# cd ..
root@ubuntu-server:/media# umount unionfs/
root@ubuntu-server:/media# ls
cdrom  feisty  hda5  hda6  hda7  hda8  nfs  rw  unionfs
root@ubuntu-server:/media# cd rw/
root@ubuntu-server:/media/rw# ls
usr
root@ubuntu-server:/media/rw# find .
.
./usr
./usr/a

你可能感兴趣的:(ubuntu)