I’m using a cloud server. I followed the guide to set it up and now am arriving at the Starting Rocketpool section, but nowhere did I tell RocketPool where my SSD mount folder is. And I know with a full node, I need it to use a lot of space.
So I decided to do it myself with:
$ sudo mkdir /ethereum
$ sudo fdisk -l | grep 2T # find the 2T SSD drive
/dev/sda3 4194304 4194301951 4190107648 2T Linux filesystem
$ sudo mount /dev/sda3 /ethereum
But then to my surprise, I checked the /ethereum
folder, and I see that it’s already being used with 21G of files?
$ df -h /ethereum
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 2.0T 21G 1.9T 2% /ethereum
xxxxx@xxxxx:~$ sudo fdisk -l
Disk /dev/sda: 1.98 TiB, 2147483648xxx bytes, 4194304xxx sectors
Disk model: xxxxxxxx
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: xxxxxxxx
Device Start End Sectors Size Type
/dev/sda1 2048 4095 2048 1M BIOS boot
/dev/sda2 4096 4194303 4190208 2G Linux filesystem
/dev/sda3 4194304 4194301951 4190107648 2T Linux filesystem
$ ls /ethereum | head -n 10
bin
boot
dev
etc
ethereum
home
lib
lib32
lib64
libx32
Did rocketpool automatically already find the 2TB SSD drive without me needing to mount it, and when I created a new folder this is just an alias?
Is this the correct setup? I’m a little skeptical.