Last active
August 22, 2022 19:04
-
-
Save kattatzu/83fd0fb0b076e076ec83e04176fa83f7 to your computer and use it in GitHub Desktop.
Mount volume
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Obtiene el UUID | |
lsblk -f | |
# Creamos directorio donde se montar el volumen | |
sudo mkdir /mnt/data | |
# Registro en fstab | |
sudo nano /etc/fstab | |
UUID="..." /mnt/data ext4 defaults,noatime,_netdev 0 2 | |
# Montamos el volumen | |
sudo mount -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment