Created
April 16, 2021 07:54
-
-
Save germanow/f201f5338709fcfd68798b2b80e6a708 to your computer and use it in GitHub Desktop.
Mount second hdd linux mint
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
# get uuid | |
sudo blkid | |
sudo mkdir /disk2 | |
sudo chmod 1777 /disk2 | |
# At the end of this file add an entry like (where you replace 00000000-0000-0000-0000-000000000000 with the UUID the blkid command gave you): | |
# UUID=00000000-0000-0000-0000-000000000000 /disk2 ext4 defaults 0 2 | |
sudo edit /etc/fstab | |
sudo mount -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment