engineering:computer_science:linux:linux_mount_drive

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
engineering:computer_science:linux:linux_mount_drive [2024/08/16 13:56] – removed - external edit (Unknown date) 127.0.0.1engineering:computer_science:linux:linux_mount_drive [2024/08/16 13:56] (current) – ↷ Page moved from refractor_computer_science:linux:linux_mount_drive to engineering:computer_science:linux:linux_mount_drive carlossousa
Line 1: Line 1:
 +====== 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>