无法在双启动系统中更改 Linux 中的分区权限

无法在双启动系统中更改 Linux 中的分区权限

我的笔记本电脑上有 Windows 10 和 Ubuntu Budgie(双启动)。Windows 位于 1TB HDD 驱动器上,Linux(我最常用)位于单独的 SSD 上。以前,我可以从 Windows 以所有权限访问我的 HDD,但最近我使用了免费版IM-Magic 分区调整器免费版在 Windows 中更改和合并一些分区。现在,问题是我在 Linux 上丢失了写入-执行权限!

cp: cannot create regular file './nima2.ovpn': Read-only file system

我尝试了在网上和他的网站上找到的一些命令,但都没有用。我还尝试了如何在 NTFS(或 FAT32)分区上使用“chmod”?但无法让它工作。

这是我的一个分区的数据:

分区信息屏幕截图


以下是 的内容/etc/fstab

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb during installation
UUID=f3194103-518f-4b51-b3ee-0df649359852 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda2 during installation
UUID=B084-4E87  /boot/efi       vfat    umask=0077      0       1
# swap was on /dev/sda7 during installation
UUID=b337eac3-ac75-44cb-9175-cd9c3dd2b6a9 none            swap    sw              0       0

答案1

我有一个 NTFS 卷,它在计算机启动时自动安装。其中/etc/fstab有以下条目:

UUID=BC2E8B1A2E8ACD38 /mnt/win ntfs-3g   defaults,nls=utf8,umask=000,dmask=027,fmask=137,uid=1000,gid=1000,windows_names 0 0

其中 BC2E8B1A2E8ACD38 是 NTFS 卷序列号,可以找到它(就我而言),并blkid /dev/sdc1给出输出:

/dev/sdc1: UUID="BC2E8B1A2E8ACD38" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="6dbd7f38-fe9e-4eb5-9769-2803188075b8"

我还没有尝试通过 来安装它PARTUUID。另外,不建议使用 umask=000,因为它会向任何人提供完全的读/写权限,但我是唯一可以登录计算机的人。uidgid是我的用户和组 ID。(我会详细umask说明002

相关内容