How can I repair my boot files?

Not a fan of Disks as it uses a default set of parameters. For NTFS those should be changed & then not all that difficult to manually edit fstab with UUID & correct set of parameters.

From old forum post and user Morbius1 Should be one line shown below on two due to space.

Create mount point, mount & edit fstab from user Morbius1 - suggest using templates instead.
Good example of manually mounting,
For ntfs UUID shown is example only see below:
sudo mkdir /media/WinD
sudoedit /etc/fstab

UUID=XXXXXXXXXXX /media/WinD ntfs defaults,nls=utf8,umask=000,uid=1000,gid=1000,windows_names 0 0

Window_names prevents the use of invalid windows characters:
(which are the nine characters ” * / : < > ? \ | and those whose code is less than 0×20)
uid=1000 should fix the trash problems as well:

Also seen these as suggested parameters:
nodev,windows_names,nosuid,noatime,async,big_writes,timeout=2,uid=1000,gid=1000,fmask=0113,dmask=0022

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.