빈 디렉토리를 루트로 rmdir할 수 없습니다. 권한을 확인했습니다. lsattr을 확인했습니다.

빈 디렉토리를 루트로 rmdir할 수 없습니다. 권한을 확인했습니다. lsattr을 확인했습니다.

빈 디렉터리를 루트로 삭제할 수 없습니다. lsattr을 확인했습니다. 이 디렉터리는 btrfs 파일 시스템의 opensuse15에 있는 kiwi-ng 이미지 생성기에 의해 생성됩니다.

#pwd
/tmp/myimage/build/image-root/var/lib
#whoami
root
#ls -l
total 0
drwx------ 1 root root 0 Apr 19 02:00 machines
#rmdir machines
rmdir: failed to remove 'machines': Operation not permitted
#rm -rf machines/
rm: cannot remove 'machines/': Operation not permitted
#lsattr
------------------- ./machines
#
#df -h .
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        57G  3.5G   52G   7% /tmp
#
#btrfs filesystem show
Label: none  uuid: 57deb065-dd4d-4dea-b139-d7f0dff27eb9
        Total devices 1 FS bytes used 3.31GiB
        devid    1 size 56.37GiB used 9.02GiB path /dev/sda2

#stat machines
  File: machines
  Size: 0               Blocks: 0          IO Block: 4096   directory
Device: 39h/57d Inode: 256         Links: 1
Access: (0700/drwx------)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2020-04-19 13:16:36.108001140 -0400
Modify: 2020-04-19 02:00:28.431710719 -0400
Change: 2020-04-19 13:12:54.397531588 -0400
 Birth: -

답변1

이 답변으로 해결되었습니다. 빈 디렉토리(btrfs 파일 시스템)를 삭제하는 방법은 무엇입니까?

다음을 사용하여 내 디렉터리를 삭제할 수 있습니다.

linux-9xyc:/tmp/myimage # rm -rf *
rm: cannot remove 'build/image-root/var/lib/machines': Operation not permitted
linux-9xyc:/tmp/myimage # btrfs subvolume delete build/image-root/var/lib/machines
Delete subvolume (no-commit): '/tmp/myimage/build/image-root/var/lib/machines'

관련 정보