root@sz-desktop:/media/root/F498-910E# chmod 777 ./ chmod: 更改"./" 的权限: 只读文件系统 root@sz-desktop:/media/root/F498-910E# sudo chmod 777 ./ chmod: 更改"./" 的权限: 只读文件系统
时间: 2023-08-03 17:02:38 浏览: 137
chmod命令 改变文件或目录权限
5星 · 资源好评率100%
It seems like you are trying to change the permissions of a file or directory, but the file system is read-only, which means that you cannot make any changes to it.
If you need to modify the file or directory, you will need to remount the file system as read-write. You can do this by running the following command:
```
sudo mount -o remount,rw /media/root/F498-910E
```
After running this command, you should be able to change the permissions of the file or directory using the `chmod` command.
阅读全文