gpt4 book ai didi

linux - overlayfs如何确定合并哪些文件夹和替换哪些文件夹

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:12 26 4
gpt4 key购买 nike

overlayfs 如何确定要合并哪些文件夹以及要替换哪些文件夹?

Tree:
-lower
-dir1
-file1
-upper
-work
-ready

挂载命令:

mount -t overlay -o lowerdir=lower,upperdir=upper,workdir=work overlayfs ready

案例一(合并):

cd ready/dir1
echo "newFile">newFile
#New file placed at upper/dir1/newFile.
#Then remount overlayfs, and we see both files in ready dir

案例 2(替换):

cd ready
rm dir1 -Rf
mkdir dir1
cd dir1
echo "newFile">newFile
# newFile placed at upper dir also
# Unmount/Remount overlayfs and we see only newFile

最佳答案

合并或替换依赖于“trusted.overlay.opaque”xattr

检查 xattr 示例

getfattr -R -d -m ""upper/

#文件:上层//ttt
trusted.overlay.opaque="y"

移除“trusted.overlay.opaque”

使用命令 setfattr --remove "trusted.overlay.opaque"upper/ttt 来删除这个 xattr

关于linux - overlayfs如何确定合并哪些文件夹和替换哪些文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35010121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com