4.5 SSD Mount
An NVMe SSD is pre-installed in the onboard computer. To use the SSD, you need to initialize the partition, mount it, and register it in /etc/fstab so it mounts automatically after reboot.
Partition Initialization
Section titled “Partition Initialization”-
SSD Partition Initialization
Terminal window sudo /sbin/parted /dev/nvme0n1 mklabel gpt --scriptsudo /sbin/parted /dev/nvme0n1 mkpart primary ext4 0% 100% --scriptsudo mkfs.ext4 /dev/nvme0n1p1 -
Create Mount Directory and Temporary Mount
Terminal window sudo mkdir -p {mount path}sudo mount /dev/nvme0n1p1 {mount path}sudo chmod 777 {mount path}
Permanent Mount
Section titled “Permanent Mount”-
Check UUID
Terminal window sudo blkid /dev/nvme0n1p1Example output:
/dev/nvme0n1p1: UUID="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" BLOCK_SIZE="4096" TYPE="ext4" -
Register Permanent Mount in
/etc/fstabTerminal window # Backup existing fstabsudo cp /etc/fstab /etc/fstab.bak# Add entry to fstab (replace {UUID} with the value from above)echo 'UUID={UUID} {mount path} ext4 defaults,nofail 0 2' | sudo tee -a /etc/fstab -
Apply and Verify Mount
Terminal window # Unmount temporary mount and remount via fstabsudo umount {mount path}sudo mount -a# Verify mountdf -h | grep {mount path}If mounted successfully, the
{mount path}path and its capacity will be displayed. The SSD will be automatically mounted after reboot.
© 2026 ROBOTIS AI. All rights reserved.