Como transferir/gravar os App no SSD externo USB

A instalação está ocorrendo no Pen drive 4GB onde gravei a imagem de instalação do UmbrelOS, mesmo mantendo o SSD USB externo de 2TB conectado no processo. Entendi que seria formatado e a instalação ocorreria nele. Visa rodar node de Bitcoin, mas já acusa falta de espaço, tomado pelo App e mais 3 ligados a essa atividade.

Como fazer essa correção/troca?

Oi,

In umbrelOS v1.7.3 you can create a Custom Hook script that can run right before umbrelOS starts up and mount your external SSD where bitcoin core will install!
Here is what I do for my 2nd SSD for Bitcoin Core Node:

umbrel@prod1 PROD1:~$ cd ~/umbrel/custom-hooks
umbrel@prod1 PROD1:~/umbrel/custom-hooks$ cat pre-start
apt update && apt install bc jq curl tmux qemu-guest-agent -y
systemctl start qemu-guest-agent

Check if Bitcoin Drive is already mounted, if not, mount it

if ! mountpoint -q /home/umbrel/umbrel/app-data/bitcoin; then
mount UUID=58bd25e6-dc97-48fa-a256-e15e328dfea4 /home/umbrel/umbrel/app-data/bitcoin
fi

You will have to figure out what your UUID is for your drive and such but hopefully, this gets you looking in the right direction!

Tchau