파일을 삭제할 수 없습니다.

파일을 삭제할 수 없습니다.

"cp -a" 명령을 사용하여 DVD에서 일부 파일을 복사했습니다. 이제 복사된 파일을 삭제할 수 없습니다. 문제의 원인을 제거하기 위해 selinux를 "허용"으로 설정했습니다. 지금까지 시도한 내용은 다음과 같습니다.

root@zeus:/NGS# getenforce
Permissive
root@zeus:/NGS# rm TRANS.TBL 
rm: remove regular file 'TRANS.TBL'? y
rm: cannot remove 'TRANS.TBL': Read-only file system
root@zeus:/NGS# chmod 755 TRANS.TBL 
chmod: changing permissions of 'TRANS.TBL': Read-only file system
root@zeus:/NGS# lsattr TRANS.TBL 
lsattr: Inappropriate ioctl for device While reading flags on TRANS.TBL
root@zeus:/NGS# ls -lZ TRANS.TBL 
-r--r--r--. root root system_u:object_r:iso9660_t:s0   TRANS.TBL
root@zeus:/NGS# chcon unconfined_u:object_r:default_t:s0
root@zeus:/NGS# chcon unconfined_u:object_r:default_t:s0 TRANS.TBL 
chcon: failed to change context of 'TRANS.TBL' to 'unconfined_u:object_r:default_t:s0': Read-only file system

어떤 제안이라도 감사하겠습니다.

답변1

다음과 같은 오류가 발생합니다.

Read-only file system

파일 시스템은 읽기 전용이므로 변경할 수 없습니다. 이는 SELinux 또는 파일별 권한과는 아무런 관련이 없습니다. 전체 파일 시스템은 읽기 전용입니다.

추측해야 한다면 /NGSDVD의 파일 시스템이라고 말하고 싶습니다. df -h .파일 시스템이 마운트된 장치를 가리키는 다음 과 같은 명령을 사용하여 이를 확인할 수 있습니다 .

관련 정보