Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Mounting a Drive in Linux ====== Make a folder to mount the drive to: <code bash> mkdir -p /mnt/data </code> Edit the fstab file <code bash> nano /etc/fstab </code> With your information <code bash> LABEL=storageprox /mnt/data ext4 defaults 0 2 </code> Mount the new drive. If you get an error, comment out (#) the fstab entry <code bash> mount -a </code> CKG Edit engineering/computer_science/linux/linux_mount_drive.txt Last modified: 2024/08/16 13:56by carlossousa