Ubuntu / Windows 双启动:尝试在 NTFS 安装卷上写入时如何解决 "read-only" 问题?
Ubuntu / Windows dual boot : How to solve "read-only" issue when trying to write on a NTFS mounted volume?
编辑:
这最初是关于为什么我无法将任何内容下载到我的替代下载文件夹的问题。第二次重新启动计算机后问题自行解决(不知道为什么)。无论如何我决定把它留在这里,因为它包含对想要将文件重定向到已安装卷上的人有用的信息。
编辑 2:
一开始我是对的,我的双启动确实有问题。问题是有时,当我在 Ubuntu 上启动时,我无法在我的 NTFS 分区上写入任何内容。原因是 Windows 没有正确断开与分区的连接。有关该问题 here 的更多信息,但基本上当 Windows 在 Ubuntu 启动之前未完全关闭时就会发生。快速修复是删除 Windows 日志文件:$ sudo ntfsfix /dev/your-NTFS-partition
(对我来说是:$ sudo ntfsfix /dev/sda4
)。然后你只需卸载并重新安装 NTFS 卷,你应该可以写入它,不需要重新启动。
上下文:
我昨天做了我的第一个双启动,跟随 this tutorial. I partitioned my drive in 3 volumes, 1 for Windows 10, 1 for Ubuntu 20.04, and 1 for my files (named Storage), that I mounted at /media/storage. The only thing that I did differently from the walkthrough is that I used symlinks to redirect my downloads and documents folders to the mounted volume instead of changing the paths in /etc/fstab. I used this video 学习如何使用符号链接。
我有一个问题,垃圾箱在挂载的卷中不工作,我通过在 /etc/fstab 的挂载选项中添加 uid=1000 解决了这个问题 here(我使用了 udisks)。在那之后一切似乎都很好。
问题:
今天早上,我尝试将 Google Chrome 的文件下载到下载文件夹(现在位于 /media/storage/Downloads),但出现错误“失败 - 权限不足” . Firefox 也发生了同样的事情。如果我使用我的主文件夹保存文件,两种浏览器都可以顺利下载。
我读 here :
As a normal user you don't have the right to write anywhere except your home directory and
its subdirectories, /tmp (the directory for temporary files) and the
subdirectories of /media/"yourUsername" into which media you've
connected to the computer are mounted.
这是否意味着我应该将我的卷安装在 /media/username/storage 而不是 /media/storage ?如果我现在在 /etc/fstab 中更改挂载路径,这会解决问题还是只会搞砸一切?还有什么我想念的吗?解决此问题的最佳、最可持续的方法是什么?
更多信息(更多问题)?
我刚刚意识到我的符号链接文件夹上有一些锁图标。他们昨天不可能在那里,因为每次我试图修改那里的任何东西时,系统都会抛出错误“Read-only 文件系统”。我知道我昨天可以从那里添加和删除文件。
这是 /media/storage$ ls -l
的输出:
total 4
drwxrwxrwx 1 val root 0 Mar 12 14:14 '$RECYCLE.BIN'
drwxrwxrwx 1 val root 0 Mar 18 18:14 Backup
drwxrwxrwx 1 val root 0 Mar 18 20:13 Documents
drwxrwxrwx 1 val root 4096 Mar 18 20:14 Downloads
drwxrwxrwx 1 val root 0 Mar 18 20:15 Music
drwxrwxrwx 1 val root 0 Mar 18 20:14 Pictures
drwxrwxrwx 1 val root 0 Mar 18 16:23 Public
drwxrwxrwx 1 val root 0 Mar 12 14:45 'System Volume Information'
drwxrwxrwx 1 val root 0 Mar 18 16:23 Templates
drwxrwxrwx 1 val root 0 Mar 18 20:16 Videos
不知道如何或为什么,但是老式的“将其关闭然后再打开”成功了(编辑:不,没有,请参阅我的问题的编辑 2)。为什么我今天早些时候重新启动计算机时它不起作用?神秘。无论如何,我会把它留在这里(并编辑标题),因为它很好地 collection 我在解决我的第一个双启动时遇到的问题以及我用来修复它们的方法。
编辑:
这最初是关于为什么我无法将任何内容下载到我的替代下载文件夹的问题。第二次重新启动计算机后问题自行解决(不知道为什么)。无论如何我决定把它留在这里,因为它包含对想要将文件重定向到已安装卷上的人有用的信息。
编辑 2:
一开始我是对的,我的双启动确实有问题。问题是有时,当我在 Ubuntu 上启动时,我无法在我的 NTFS 分区上写入任何内容。原因是 Windows 没有正确断开与分区的连接。有关该问题 here 的更多信息,但基本上当 Windows 在 Ubuntu 启动之前未完全关闭时就会发生。快速修复是删除 Windows 日志文件:$ sudo ntfsfix /dev/your-NTFS-partition
(对我来说是:$ sudo ntfsfix /dev/sda4
)。然后你只需卸载并重新安装 NTFS 卷,你应该可以写入它,不需要重新启动。
上下文:
我昨天做了我的第一个双启动,跟随 this tutorial. I partitioned my drive in 3 volumes, 1 for Windows 10, 1 for Ubuntu 20.04, and 1 for my files (named Storage), that I mounted at /media/storage. The only thing that I did differently from the walkthrough is that I used symlinks to redirect my downloads and documents folders to the mounted volume instead of changing the paths in /etc/fstab. I used this video 学习如何使用符号链接。
我有一个问题,垃圾箱在挂载的卷中不工作,我通过在 /etc/fstab 的挂载选项中添加 uid=1000 解决了这个问题 here(我使用了 udisks)。在那之后一切似乎都很好。
问题:
今天早上,我尝试将 Google Chrome 的文件下载到下载文件夹(现在位于 /media/storage/Downloads),但出现错误“失败 - 权限不足” . Firefox 也发生了同样的事情。如果我使用我的主文件夹保存文件,两种浏览器都可以顺利下载。
我读 here :
As a normal user you don't have the right to write anywhere except your home directory and its subdirectories, /tmp (the directory for temporary files) and the subdirectories of /media/"yourUsername" into which media you've connected to the computer are mounted.
这是否意味着我应该将我的卷安装在 /media/username/storage 而不是 /media/storage ?如果我现在在 /etc/fstab 中更改挂载路径,这会解决问题还是只会搞砸一切?还有什么我想念的吗?解决此问题的最佳、最可持续的方法是什么?
更多信息(更多问题)?
我刚刚意识到我的符号链接文件夹上有一些锁图标。他们昨天不可能在那里,因为每次我试图修改那里的任何东西时,系统都会抛出错误“Read-only 文件系统”。我知道我昨天可以从那里添加和删除文件。
这是 /media/storage$ ls -l
的输出:
total 4
drwxrwxrwx 1 val root 0 Mar 12 14:14 '$RECYCLE.BIN'
drwxrwxrwx 1 val root 0 Mar 18 18:14 Backup
drwxrwxrwx 1 val root 0 Mar 18 20:13 Documents
drwxrwxrwx 1 val root 4096 Mar 18 20:14 Downloads
drwxrwxrwx 1 val root 0 Mar 18 20:15 Music
drwxrwxrwx 1 val root 0 Mar 18 20:14 Pictures
drwxrwxrwx 1 val root 0 Mar 18 16:23 Public
drwxrwxrwx 1 val root 0 Mar 12 14:45 'System Volume Information'
drwxrwxrwx 1 val root 0 Mar 18 16:23 Templates
drwxrwxrwx 1 val root 0 Mar 18 20:16 Videos
不知道如何或为什么,但是老式的“将其关闭然后再打开”成功了(编辑:不,没有,请参阅我的问题的编辑 2)。为什么我今天早些时候重新启动计算机时它不起作用?神秘。无论如何,我会把它留在这里(并编辑标题),因为它很好地 collection 我在解决我的第一个双启动时遇到的问题以及我用来修复它们的方法。