This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
fstab [2020/10/22 11:04] – created gwsadmin | fstab [2023/05/17 22:52] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Add another disk to the server ====== | ====== Add another disk to the server ====== | ||
- | COMING SOON | + | * Firstly check the UUID of the disk you want to ad by using this command |
+ | |||
+ | <code bash> | ||
+ | sudo blkid | ||
+ | |||
+ | |||
+ | </ | ||
+ | * Copy the UUID | ||
+ | * Then make a directory within the /media directroy e.g. | ||
+ | |||
+ | <code bash> | ||
+ | sudo mkdir / | ||
+ | |||
+ | |||
+ | </ | ||
+ | * open up fstab | ||
+ | |||
+ | <code bash> | ||
+ | sudo nano e/ | ||
+ | |||
+ | |||
+ | </ | ||
+ | * On the last line enter this | ||
+ | |||
+ | <code bash> | ||
+ | UUID=[insert ID] / | ||
+ | |||
+ | |||
+ | </ | ||
+ | * Save the file, and then mount the disk using this command | ||
+ | |||
+ | <code bash> | ||
+ | sudo mount -a | ||
+ | |||
+ | |||
+ | </ | ||