LXD容器与宿主机Ubuntu系统 共享文件夹
目的: 需要将移动硬盘中的某个文件夹共享到指定容器中。
这里以共享文件夹“/media/” 为例,具体步骤如下:
1 先给宿主机共享文件夹权限
sudo chmod 777 /media/
2 在宿主机创建共享区域
lxc profile create share-host
lxc profile set share-host security.privileged true
注:检查是否创建成功
lxc profile show share-host
3 将文件夹共享到指定的LXD容器
sudo lxc config device add YourContainerName share-host disk source=/media/ path=/media/
4 在容器添加 profile (可选)
如果前三个步骤成功了,4就不用往下看了哦。
lxc exec -t YourContainerName findmnt /media/
lxc profile add YourContainerName share-host
lxc config show YourContainerName
lxc exec -t YourContainerName findmnt /media/