Cet article fait référence à ce sujet : Création d’un média center 100% autonome.
Rappel : Le téléchargement de média sous copyright est illégal. Cet article est à but lucratif et pour test !
Cet article vous explique comment monter un disque dure interne ou USB automatiquement au démarrage.
Montage automatique du disque dur
En SSH sur votre serveur, taper la commande suivante pour identifier votre disque :
1 |
sudo fdisk -l |
Dans mon exemple le disque dur est le /dev/sda et la partition /dev/sda1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
Disk /dev/loop0: 89,3 MiB, 93581312 bytes, 182776 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/loop1: 53,9 MiB, 56475648 bytes, 110304 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/sda: 931,5 GiB, 1000204886016 bytes, 1953525168 sectors Disk model: ST1000LM048-2E71 Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: 008CF7D7-4693-FA41-819D-A16C12567D73 Device Start End Sectors Size Type <span style="text-decoration: underline; color: #99cc00;"><strong>/dev/sda1 2048 1953525134 1953523087 931,5G Linux filesystem</strong> </span> Disk /dev/sdb: 111,8 GiB, 120040980480 bytes, 234455040 sectors Disk model: WDC WDS120G2G0B- Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: E17AD63D-23EA-4319-A62F-0662D14066FB Device Start End Sectors Size Type /dev/sdb1 2048 1050623 1048576 512M EFI System /dev/sdb2 1050624 234452991 233402368 111,3G Linux filesystem |
Taper la commande suivante pour identifier le UUID de votre partition :
1 |
sudo blkid |
1 2 3 4 5 6 |
<span style="color: #000000;">/dev/sda1: UUID="<strong><span style="text-decoration: underline;"><span style="color: #99cc00; text-decoration: underline;">e84a3b0e-a2fa-487e-9e8e-4ebe2884ac79</span></span></strong>" TYPE="ext4" PARTUUID="76bc96eb-c101-1343-a915-d19f0c7ed399"</span> /dev/sdb1: UUID="6AAB-95B3" TYPE="vfat" PARTUUID="7d1d07bf-2824-42d3-aeb3-5acbb11bc831" /dev/sdb2: UUID="9bd5f5b9-cec8-41f6-af3e-cad8d164ee94" TYPE="ext4" PARTUUID="5509b739-2235-44c7-b268-5dcde7655f13" /dev/loop0: TYPE="squashfs" /dev/loop1: TYPE="squashfs" |
Récupérer le UUID et taper la commande suivante :
1 |
sudo nano /etc/fstab |
Ajouter la ligne suivante au fichier :
1 |
UUID=<span style="text-decoration: underline; color: #ff0000;"><strong>e84a3b0e-a2fa-487e-9e8e-4ebe2884ac79</strong></span> <strong><span style="text-decoration: underline;"><span style="color: #99cc00; text-decoration: underline;">/home/[su_user field="display_name" default="scotch"]/Media</span></span></strong> ext4 defaults 0 0 |
Remplacer le UUID
Ctrl + X pour quitter nano.
“Y” pour enregistrer les modifications.
Touche Entrée pour confirmer.
Taper la ligne suivante pour redémarrer.
1 |
sudo reboot |
Vérifier que le montage est correct avec la commande suivante :
1 |
sudo mount |
Dans le résultat, vous devriez retrouver ceci :
1 |
/dev/sda1 on /home/[su_user field="display_name" default="scotch"]/Media type ext4 (rw,relatime) |