正确的 chown 和 chmod 语法是什么?

正确的 chown 和 chmod 语法是什么?

我正在尝试更改文件/目录的所有权,但似乎做错了什么,是我的语法还是……什么?

michael@michael-desktop:/media/michael/Films$ ls -l
total 1536
drwxr-xr-x 2 michael michael 524288 Jan 17 19:04 '$RECYCLE.BIN'
drwxr-xr-x 5 michael michael 524288 Jan 17 12:36  MEDIA
drwxr-xr-x 3 michael michael 524288 Jan 17 12:21 'System Volume Information'
michael@michael-desktop:/media/michael/Films$ sudo chown michael:root MEDIA
[sudo] password for michael: 
chown: changing ownership of 'MEDIA': Operation not permitted
michael@michael-desktop:/media/michael/Films$ chmod 777 MEDIA
michael@michael-desktop:/media/michael/Films$ ls -l
total 1536
drwxr-xr-x 2 michael michael 524288 Jan 17 19:04 '$RECYCLE.BIN'
drwxr-xr-x 5 michael michael 524288 Jan 17 12:36  MEDIA
drwxr-xr-x 3 michael michael 524288 Jan 17 12:21 'System Volume Information'
michael@michael-desktop:/media/michael/Films$ chown root:root MEDIA
chown: changing ownership of 'MEDIA': Operation not permitted
michael@michael-desktop:/media/michael/Films$ 

抱歉,我无法找到屏幕截图,但如果可以的话,我会在其他时间解决这个问题。

答案1

您无法在 FAT 文件系统上更改这些属性。

相关内容