Ubuntu 启动时挂载 NTFS

发布于 2024-10-20 20:47:57 字数 81 浏览 1 评论 0原文

我想知道如果我想在 Ubuntu 10 启动时自动挂载我的 NTFS 文件系统,我必须做什么。现在每次启动时我都必须手动执行。

谢谢

I would like to know what do I have to do if I want to mount automatically my NTFS filesystem when Ubuntu 10 starts. Now I have to do it manually everytime it starts.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

神经暖 2024-10-27 20:47:57

您可以通过编辑 FSTAB 来实现此目的:

首先创建一个目录,您的 NTFS 卷将安装到其中:

sudo mkdir /media/ntfs

明智的人在编辑 FSTAB 之前进行备份:

sudo cp /etc/fstab /etc/fstab-backup

将其附加到文件末尾

/dev/hda1    /media/windows ntfs  nls=utf8,umask=0222 0    0

而不是 /dev/hda1,在此处使用您的 dev 。

You can fo this by editing the FSTAB:

First create a directory where your NTFS volume will be mounted to:

sudo mkdir /media/ntfs

Wise man makes a backup before editing the FSTAB:

sudo cp /etc/fstab /etc/fstab-backup

Append this at the end of the file

/dev/hda1    /media/windows ntfs  nls=utf8,umask=0222 0    0

Instead of /dev/hda1 use your dev here.

我是男神闪亮亮 2024-10-27 20:47:57

改变你的 fstab 应该有帮助。请参阅https://help.ubuntu.com/community/Fstab

Change you fstab should help. See https://help.ubuntu.com/community/Fstab.

鱼忆七猫命九 2024-10-27 20:47:57

Ubuntu Wiki 中有一个很棒的 Fstab 示例部分:

# NTFS ~ Use ntfs-3g for write access (rw) 
# /dev/hda1
UUID=12102C02102CEB83  /media/windows  ntfs-3g  auto,users,uid=1000,gid=100,dmask=027,fmask=137,utf8  0  0

https://help.ubuntu.com/社区/Fstab#Examples

There is an awesome Example section in the Ubuntu Wiki for Fstab:

# NTFS ~ Use ntfs-3g for write access (rw) 
# /dev/hda1
UUID=12102C02102CEB83  /media/windows  ntfs-3g  auto,users,uid=1000,gid=100,dmask=027,fmask=137,utf8  0  0

https://help.ubuntu.com/community/Fstab#Examples

如果没有你 2024-10-27 20:47:57

提示1:要查找安装过程中的错误,请阅读“umount ntfs / mount ntfs”的终端输出。
另请参阅 https:// linuxconfig.org/how-to-mount-partition-with-ntfs-file-system-and-read-write-access

提示2:双启动 Windows 8、10、11 可能当 NTFS 分区关闭时,使其处于不干净的状态。
另请参阅https://askubuntu.com/questions/145902/由于休眠而无法挂载 Windows ntfs 文件系统
然后,您应该搜索并执行适合您的 Windows 版本的“禁用快速启动选项”。

提示3:在Ubuntu 23.4(可能更早和更高版本)中,有图形应用程序“磁盘”。您可以从 UI 编辑“fstab”,如下所示

  • 使用挂载选项 =“默认值”
  • 使用挂载点,如“/mnt/ntfs”或“/mnt/NTFS”
  • 使用自动提供的分区 ID 或名称

NTFS 分区的 Linux 磁盘挂载选项

Tip1: To find errors during mounting, read the terminal output of 'umount ntfs / mount ntfs'.
See also https://linuxconfig.org/how-to-mount-partition-with-ntfs-file-system-and-read-write-access

Tip2: A dual boot Windows 8, 10, 11 may leave the NTFS partition in an unclean state when it shuts down.
See also https://askubuntu.com/questions/145902/unable-to-mount-windows-ntfs-filesystem-due-to-hibernation
Then you should search and execute 'disable fast startup option' for your Windows version.

Tip3: In Ubuntu 23.4 (probably earlier and later also), there is the graphical app 'Disks'. You can edit 'fstab' from the UI as below

  • use mount options = 'defaults'
  • use your mount point like '/mnt/ntfs' or '/mnt/NTFS'
  • use the automatically provided partition ID or name

Linux Disks mount options for NTFS partition

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文