• 0 Posts
  • 18 Comments
Joined 2 years ago
cake
Cake day: January 2nd, 2024

help-circle
  • But you will want to clear out the failed systemd services first to ensure that you can boot.

    systemctl --failed will list what failed

    After you make your /etc/fstab

    systemctl daemon-reload will regenerate the units files in /run/systemd/generator but doesn’t start new automounts or stop ones removed from fstab.

    systemctl start newmount.automount will start the mount. The .automount extension is required, as systemd assumes .service if not extension is specified.

    systemctl stop oldmount.automount will remove a mount not longer in fstab

    systemctl reset-failed will stop a previously failed removed mount from appearing in status messages