루프 드라이브의 소스를 마운트 지점으로 이동하면 파일 시스템 뒤에서 무슨 일이 발생합니까?

루프 드라이브의 소스를 마운트 지점으로 이동하면 파일 시스템 뒤에서 무슨 일이 발생합니까?

루프 드라이브의 소스를 마운트 지점으로 이동하고 마운트 해제했습니다. 그러면 소스가 사라집니다.

소스를 마운트 지점(또는 다른 위치)으로 이동한 후에는 소스가 삭제된 것으로 나타납니다.

$ losetup --all
/dev/loop0: []: (/mnt/storage/test.iso (deleted))

다음을 통해 확인할 때 이전에 소스가 차지했던 공간이 해제되지 않습니다 df -h.

# Original Used Space
$ df -h|grep storage
Filesystem                    Type      Size  Used Avail Use% Mounted on
/dev/mapper/vgtank-lvtest     ext4      100M  128K  100M   1% /mnt/storage
# After Creating the File and Mounting
$ dd if=/dev/zero of=/mnt/storage/test.iso bs=64M count=1
1+0 records in
1+0 records out
67108864 bytes (67 MB, 64 MiB) copied, 0.0405464 s, 1.7 GB/s
$ losetup -f test.iso
$ mkdir test
$ mount /dev/loop0 test
$ df -h|grep storage
Filesystem                    Type      Size  Used Avail Use% Mounted on
/dev/mapper/vgtank-lvtest     ext4      100M   64M   36M  64% /mnt/storage
# After Moving the File and Umounting
$ mv test.iso test
$ umount test
$ df -h|grep storage
Filesystem                    Type      Size  Used Avail Use% Mounted on
/dev/mapper/vgtank-lvtest     ext4      100M   64M   36M  64% /mnt/storage

여기에 두 가지 질문이 있습니다.

  1. 왜 losstup을 통해 mv파일을 다른 파일 시스템에 복사 할 수 있나요?in used
  2. 제거 후 파일은 어디로 가나요?

관련 정보