Monthly Archive 11 June 2023

ByPatrick

Linux : Ubuntu : monter automatiquement un disque usb au démarrage

lsblk -f

Add a line to /etc/fstab such as

UUID=05C5-A73A  /mnt/32GBkey  vfat  noauto,nofail,x-systemd.automount,x-systemd.idle-timeout=2,x-systemd.device-timeout=2

Merci à https://unix.stackexchange.com/questions/347006/systemd-how-do-i-automount-a-usb-filesystem-using-etc-fstab
ByPatrick

Docker – déplacer le stockage

Aujourd’hui, J’ai ajouté un disque à mon serveur docker et déplacé les données dessus

service docker stop
mv /var/lib/docker /mnt/pd0/docker
ln -s /mnt/pd0/docker /var/lib/docker
Take a peek at the directory structure to make sure it looks like it did before the mv: ls /var/lib/docker/ (note the trailing slash to resolve the symlink)

Merci à https://forums.docker.com/t/how-do-i-change-the-docker-image-installation-directory/1169