
| Current Path : /home/ift/51_iftlib/intern/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //home/ift/51_iftlib/intern/4_unregister |
# Unregister a VM in its directory. # Before not unregistered it should not be removed! VM=`pwd`/`ls *.vbox` vboxmanage unregistervm "$VM" echo 'Now you can delete this machine physically ...' LINE=`grep $VM ~/.config/VirtualBox/VirtualBox.xml` if [ "$LINE" = "x" ]; then exit; fi echo 'ATTENTION: Machine has to be deleted manually in ~/.config/VirtualBox/VirtualBox.xml:' echo '' echo '1, service virtualbox stop. 2. Delete the line:' echo "$LINE" echo 'and the respective UUID-entry in ExtraData'