0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

zfs とか zpool のメモ 2025年版

Posted at

っま、自分の作業の為の忘備録😱

ストレージプール -> zroot

新たなマウントポイントを作る
zfs create zroot/samba
マウントポイントを標準以外で指定する場合
zfs create -omountpoint=/EXT/samba zroot/samba
読み込み専用
zfs set readonly=on zroot/samba
/etc/exports じゃ無い共有設定
zfs set sharenfs=-network=2001:db8::/32,-alldirs zroot/samba
共有設定表示
zfs get sharenfs
adduser した時に /home 以下のディレクトリが zfs だとこうなる
zfs create zroot/home/je3kmz
zfs allow je3kmz create,destroy,mount,snapshot zroot/home/je3kmz
14.2-RELEASE がインスコする際に zpool と zfs 操作する例
zpool create -o altroot=/mnt -O compress=lz4 -O atime=off -m none -f zroot mirror ada0p3 ada1p3
zfs create -o mountpoint=none zroot/ROOT
zfs create -o mountpoint=/ zroot/ROOT/default
zfs create -o mountpoint=/home zroot/home
zfs create -o mountpoint=/tmp -o exec=on -o setuid=off zroot/tmp
zfs create -o mountpoint=/usr -o canmount=off zroot/usr
zfs create -o setuid=off zroot/usr/ports
zfs create zroot/usr/src
zfs create -o mountpoint=/var -o canmount=off zroot/var
zfs create -o exec=off -o setuid=off zroot/var/audit
zfs create -o exec=off -o setuid=off zroot/var/crash
zfs create -o exec=off -o setuid=off zroot/var/log
zfs create -o atime=on zroot/var/mail
zfs create -o setuid=off zroot/var/tmp
zfs set mountpoint=/zroot zroot
zpool set bootfs=zroot/ROOT/default zroot
zpool set cachefile=/mnt/boot/zfs/zpool.cache zroot
zfs set canmount=noauto zroot/ROOT/default

1

  1. /dev/ada0 と /dev/ada1 をミラーで zroot と言うストレージプールを作ってゴリゴリマウントポイント作っちょる

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?