无法将文件标记为可执行文件

无法将文件标记为可执行文件

可能重复:
如何在 NTFS(或 FAT32)分区上执行‘chmod’?

使用 ubuntu 11.10 64 位。如果文件位于 Windows 分区中,则无法将文件标记为可执行文件。但是,在主文件夹上工作正常。无法勾选“允许将文件作为程序执行”复选框。尝试了命令行选项。但是,没有运气。我可以在 Windows 分区上写入文件,但无法更改文件或文件夹的权限。

答案1

要使用 Linux 权限,请编辑/etc/fstab,为 Windows 分区添加一个条目

# command line
sudo -e /etc/fstab

# graphical
gksu gedit /etc/fstab

使用“权限”选项,类似于此

UUID=12102C02102CEB83 /media/windows ntfs-3g auto,users,permissions 0 0

相应地更改你的 uuid 和挂载点。

使用以下命令列出你的 uuid

sudo blkid

相关内容