作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 zfs 数据集中创建一个卷:
sudo zfs create mypool/maildir
sudo lxc storage volume create mypool/maldir custom1
error: not found
最佳答案
您的帖子并未真正显示您的池或数据集的外观,但这是您可以做到的一种方法。
通常,您希望:
zpool create ...
所做的那样命令; zfs create ...
所做的那样, 使用 lxd init
完成这项任务的步骤; attach-profile
将卷分配给容器配置文件的子命令 $ sudo zpool create -m /mnt/tank tank raidz3 <vdev1> <vdev2> ...
$ sudo zfs create tank/lxd
$ sudo zfs list
NAME USED AVAIL REFER MOUNTPOINT
tank 954M 1.31T 41.7K /mnt/tank
tank/lxd 953M 1.31T 41.7K /mnt/tank/lxd
$ lxd init
...
Name of the new storage pool [default=default]: lxd-pool
Name of the storage backend to use (btrfs, dir, lvm, zfs) [default=zfs]:
Create a new ZFS pool? (yes/no) [default=yes]: no
Name of the existing ZFS pool or dataset: tank/lxd
...
dev-volume
的新卷。在名为
lxd-pool
的池中我们在上面分配的,并将大小设置为 512GB。 (您可以使用您需要的任何数字。)
$ lxc storage volume create lxd-pool dev-volume size=512GB
error: not found
您需要确保正确使用命令,参数顺序正确,以便引用实际存在的内容,等等。使用
lxc help <subcommand>
很有帮助。
$ lxc storage volume attach-profile lxd-pool dev-volume dev-profile tank /mnt/tank
dev-volume
在
lxd-pool
内到名为
dev-profile
的个人资料作为一个名为
tank
的设备安装在文件系统路径
/mnt/tank
容器内。
关于ubuntu - 如何在 ZFS 数据集中创建卷并附加到 LXD 容器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46691226/
我是一名优秀的程序员,十分优秀!