Vorrei rendere permanente il mount di una cartella da un mio hd in una cartella di un altro hd.
Quello che faccio manualmente è lanciare il comando
Il tutto funziona senza problemi.sudo mount --bind /media/BckUP/Music /home/luca/Music
Ho provato a modificare il file /etc/fstab nella seguente maniera:
Codice: Seleziona tutto
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=67d56e3f-a981-46f8-90c9-780b3a17b271 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=6c00e4de-cada-429d-9554-366fe9c0d7da none swap sw 0 0
/media/BckUP/Music/ /home/luca/Music auto rw,suid,dev,exec,auto,nouser,async 0 0
Potreste aiutarmi a configurare le cose per bene?
Grazie mille,
Luca
