On Fri, 29 Jul 2022 at 02:32, Jude DaShiell <[email protected]> wrote: > > Then your new /etc/fstab record should > look like: > The email program split that line all > of that should be on one line > space-separated. hth. > 3fe30767-f7d7-4e6d-b48e-f80eef2d4b71 > /dev/sda9 ext4 defaults,nofail 1 2
Although it does no harm, "defaults," is unnecessary and can be omitted there. Because it specifies defaults. And defaults are values that are used when nothing is specified. It can be omitted because "nofail" by itself is sufficient to establish column 4, so that later values occur in columns 5 and 6. "defaults" in /etc/fstab should only ever be used by itself, in column number 4, when a non-default (ie not 0) value is required for one of the following columns. Its function is to occupy an otherwise empty column number 4, so that what follows it on the same line occurs in column 5.

