第一讲: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

来源:https://www.cnblogs.com/zjpeng/p/12570750.html

Logo

更多推荐