all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Configuring mount for NTFS partition at boot makes the system unbootable.
@ 2024-03-03 20:57 William
  2024-03-03 21:23 ` Saku Laesvuori
  2024-03-03 21:26 ` Felix Lechner via
  0 siblings, 2 replies; 8+ messages in thread
From: William @ 2024-03-03 20:57 UTC (permalink / raw)
  To: help-guix

Hello.

I've been trying for the past few days to get this done properly with
no success.

I have a drive with a partition that is unfortunately formatted on
NTFS, and I'd like to auto-mount it at boot time, since my home user
has several symlinks that point to it.

I've tried defining a file-system entry like this, but the end result
is that on next boot the filesystem is mounted as read-only:

```
(file-system
                         (options "rw,uid=1000")
                         (mount-point "/media/hdd")
                         (device (uuid
                                  "D23AB0C43AB0A73F"
                                  'ntfs))
                         (type "ntfs")) %base-file-systems)))
```

Of course, trying to mount it with (type "ntfs") was the problem, it
only supports reading NTFS filesystems, not writing, then I tried
this:

```
(file-system
                         (options "rw,uid=1000")
                         (mount-point "/media/hdd")
                         (device (uuid
                                  "D23AB0C43AB0A73F"
                                  'ntfs))
                         (type "ntfs-3g")) %base-file-systems)))
```

When running a system reconfigure and mounting this partition with
ntfs-3g, which is FUSE, without rebooting, I can read and write data,
but on reboot the system will fail to boot.

My initial guess is that this may be some
issue with the FUSE kernel module not loading at boot time, but I have
no clue how to add such entry to load it, if this is the problem at all.

Any clues? All help appreciated.


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-03-08  2:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-03 20:57 Configuring mount for NTFS partition at boot makes the system unbootable William
2024-03-03 21:23 ` Saku Laesvuori
2024-03-03 21:26 ` Felix Lechner via
     [not found]   ` <20240303233648.55a40747@fedora.email>
2024-03-04  0:15     ` Felix Lechner via
2024-03-04 19:17       ` William
2024-03-07 14:41         ` Felix Lechner via
2024-03-07 23:55           ` William
2024-03-08  2:01             ` Felix Lechner via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.