1

System: Update NFS mounts after TrueNAS HDD upgrade

This commit is contained in:
2025-11-08 13:03:56 +01:00
parent 248379a9cd
commit a98912e252
3 changed files with 36 additions and 34 deletions

View File

@ -89,27 +89,30 @@
# Using NFS over TCP or increasing the value of the retrans option may mitigate # Using NFS over TCP or increasing the value of the retrans option may mitigate
# some of the risks of using the soft option. # some of the risks of using the soft option.
# TODO: New HDDs # Synology DS223j
# "/home/${username}/Movies" = {
# device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie";
# fsType = "nfs";
# options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"];
# };
# "/home/${username}/Shows" = {
# device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show";
# fsType = "nfs";
# options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"];
# };
"/home/${username}/Music" = { "/home/${username}/Restic" = {
# device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music"; device = "192.168.86.15:/volume1/NixinatorPersistence";
device = "192.168.86.20:/mnt/Music/Music";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"];
}; };
"/home/${username}/Restic" = { # TrueNAS
device = "192.168.86.15:/volume1/NixinatorPersistence";
"/home/${username}/Movies" = {
device = "192.168.86.20:/mnt/Seagate4TB/Movies";
fsType = "nfs";
options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"];
};
"/home/${username}/Shows" = {
device = "192.168.86.20:/mnt/Seagate4TB/Shows";
fsType = "nfs";
options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"];
};
"/home/${username}/Music" = {
device = "192.168.86.20:/mnt/Seagate4TB/Music";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "noatime" "_netdev" "bg" "soft"];
}; };

View File

@ -44,23 +44,22 @@
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };
# SG Exos Mirror Shares # TrueNAS
# TODO: New HDDs "/media/Movie" = {
# "/media/Movie" = { device = "192.168.86.20:/mnt/Seagate4TB/Movies";
# device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie"; fsType = "nfs";
# fsType = "nfs"; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
# options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; };
# };
# "/media/Show" = { "/media/Show" = {
# device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show"; device = "192.168.86.20:/mnt/Seagate4TB/Shows";
# fsType = "nfs"; fsType = "nfs";
# options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
# }; };
"/media/TV-Music" = { "/media/TV-Music" = {
# device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music"; device = "192.168.86.20:/mnt/Seagate4TB/Music";
device = "192.168.86.20:/mnt/Music/Music";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };

View File

@ -40,22 +40,22 @@
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };
# SG Exos Mirror Shares # TrueNAS
"/media/Movie" = { "/media/Movie" = {
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie"; device = "192.168.86.20:/mnt/Seagate4TB/Movies";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };
"/media/Show" = { "/media/Show" = {
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show"; device = "192.168.86.20:/mnt/Seagate4TB/Shows";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };
"/media/TV-Music" = { "/media/TV-Music" = {
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music"; device = "192.168.86.20:/mnt/Seagate4TB/Music";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };