How do I delete deployed GUIs from my controller?
You deployed the wrong GUI and want to delete one/all?
less than a minute
Deployed GUIs are added in the folder /var/www/motorcortex/grid/projects/
:
/var/www/motorcortex/grid/projects/
├── Motorcortex\ Generic\ App\ -\ ARM
└── Motorcortex\ Robot\ App
How to remove one
or all
GUIs is described in the following:
Remove GUIs via SSH
- Log in with ssh:
ssh admin@192.168.2.100
admin@192.168.2.100's password: vectioneer
- You can delete one GIU for example
Motorcortex Robot App
with:
sudo rm /var/www/motorcortex/grid/projects/Motorcortex\ Robot\ App -rf
password: vectioneer
- Or delete all GUIs with:
sudo rm /var/www/motorcortex/grid/projects/* -rf
password: vectioneer