ZFS使用:挂载文件系统、更改挂载点、

送分小仙女□ 提交于 2020-03-25 23:17:12

第一讲:mounting a File System

特性

a.创建文件系统也会在路径上创建一个具有相同文件系统名称的挂载点,文件系统会自动挂载在那里

b.可以通过更改挂载点属性的值来更改挂载点

c.挂载也可以通过传统的方式(UFS)完成遗留安装

附:查看目录权限是否继承了父级

zfs get -r compression upool,查看source字段

local:已为数据集显示设置了属性

inherited from data_name:继承了父的属性

default:属性未被设置

 

第二讲:更改挂载点(更改挂载点,或者使用legacy mount)

specify a mount point

zfs set mountpoint=/test upool/test

zfs set mountpoint=legacy upool/test

其中:Legacy mount method

example:mount  rz2pool/data2 to /zfs/fs2

(1)Set the mountpoint property for legacy mount.

zfs set mountpoint=legacy upool/test 备注:可能是这个命令,我还没测试,等待测试

(2)Create a mount point

#mkdir /zfs/fs2

(3)Execute the mount command.

#mount -F zfs rz2pool/data2 /zfs/fs2

如果要设置开机自动挂载,需要添加参数到文件:/etc/vfstab

#device            device     mount     FS       fsck     mount      mount

#to mount        to fsck      point       type    pass    at boot     options

rz2pool/data2   -              /zfs/fs2    zfs       -          yes          -

 

第三讲:更改配额quota

zfs set defaultuserquota=25gb upool/nfs

zfs set userquota@user1=50gb upool/nfs

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!