19 lines
No EOL
429 B
Text
19 lines
No EOL
429 B
Text
Some commands:
|
|
|
|
```
|
|
apt install zfsutils-linux
|
|
zpool create local /dev/xxx
|
|
zpool list
|
|
zfs create local/home
|
|
zfs list
|
|
zfs set compression=lz4 local/home
|
|
zfs get compression
|
|
zfs get compressratio local/home
|
|
zfs set dedup=on local/home
|
|
zpool get dedupratio local/home
|
|
zfs set mountpoint=/home local/home
|
|
zfs set sharenfs="rw=@10.0.1.0/24" local/home
|
|
zfs share local/home
|
|
# Import pool after boot/cryptsetup Open
|
|
zfs import local
|
|
``` |