Files
valheim-linode/voldirections.txt

26 lines
804 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Volume Configuration
To get started with a new volume, youll want to create a filesystem on it:
Create a Filesystem
mkfs.ext4 "/dev/disk/by-id/scsi-0Linode_Volume_ValVol202609"
THIS STEP HAS BEEN COMPLETED
Once the volume has a filesystem, you can create a mountpoint for it:
Create a Mountpoint
mkdir "/mnt/ValVol202609"
THIS HAS BEEN VERIFIED WORKING
Then you can mount the new volume:
Mount Volume
mount "/dev/disk/by-id/scsi-0Linode_Volume_ValVol202609" "/mnt/ValVol202609"
THIS HAS BEEN VERIFIED WORKING
If you want the volume to automatically mount every time your Linode boots, youll want to add a line like the following to your /etc/fstab file:
Mount every time your Linode boots
/dev/disk/by-id/scsi-0Linode_Volume_ValVol202609 /mnt/ValVol202609 ext4 defaults,noatime,nofail 0 2