Skip to main content

Change mount point

To change a mount point you can do the following:

  1. Make sure the pocket service is stopped and nothing is using the existing mount point.
    sudo systemctl stop pocket.service
  2. Make a new mount point that will replace the existing mount point.
    sudo mkdir /mnt/data
  3. Unmount the existing mount point.
    sudo umount /mnt/pokt000-data
  4. Edit /etc/fstab and replace the existing mount point with the new mount point.
    sudo nano /etc/fstab
  5. Mount the new mount point.
    sudo mount /mnt/data
  6. Remove the old mount point.
    sudo rmdir /mnt/pokt000-data