게스트에서는 다음과 같이 호스트 디렉터리를 마운트했습니다.
# mount -t 9p -o trans=virtio /sharepoint /share
실제로 파일 시스템은 읽기/쓰기가 가능한 것으로 보입니다.
# mount
...
/sharepoint on /share type 9p (rw,relatime,sync,dirsync,access=client,trans=virtio)
^^
/sharepoint
구성은 다음과 같습니다.
Type: mount
Driver: Path
Mode: Mapped
Write Policy: Immediate
Source Path: /path/to/source/on/host
Target Path: /sharepoint
소스 경로의 권한은 입니다 777
.
/share
그런데 게스트에 글을 쓰려고 하면 다음과 같은 오류가 발생합니다.
root@guest:/share# touch .hello
touch: cannot touch '.hello': Read-only file system
내가 루트인지 게스트의 일반 사용자인지 결과는 동일합니다.
가상 머신을 다시 시작해 보았는데 호스트 경로에 대한 권한을 변경한 후에도 상황이 바뀌지 않았습니다.
질문:무엇이 잘못될 수 있는지 아시나요? 아니면 무엇을 확인해야 하나요?