Se alguém ainda estiver fazendo esta pergunta quatro anos depois, então aqui está uma resposta fornecida por Andrew McLean: Mover aplicativo entre volumes
- Stop all your applications (Package Center > Installed > Action > Stop)
sudo /var/packages/[app_name]/scripts/start-stop-status stop
- Move the app files from the old volume to the desired one (in this case from
volume1
tovolume2
)
sudo mv /volume1/\@appstore/[app_name] /volume2/\@appstore/
- Delete the obsolete Symlink pointing at the old app path
sudo rm -fv /var/packages/[app_name]/target
- Create a new Sim link pointing at the new, correct app path
sudo ln -s /volume2/\@appstore/[app_name] /var/packages/[app_name]/target
- Reboot
NB : Apps like Snapshot Replication, CrashPlan and DownloadStation had to be uninstalled and reinstalled manually, but for the majority of apps this should work.
Roteiro experimental fornecido por Sebastian Ott