#! /bin/bash ############################################################ ## movevbfe.conf ## It wget the .vdi files from www2 to /share/apps/VBtemplate. When this is done, the same copy of windowsXP.vdi and w7_32.vdi files are duplicated into /share/apps/VBlocal ############ this copying takes up quite a bit of time since the .vdi filesa are large. mkdir /share/apps/VBtemplate ### moving windowsXP.vdi ################################################ cd /share/apps/VBtemplate wget http://www2.fizik.usm.my/tlyoon/Downloads/sheltxmoved.vdi mv sheltxmoved.vdi windowsXP.vdi mkdir /state/partition1/VBlocal cd /state/partition1/VBlocal cp /share/apps/VBtemplate/windowsXP.vdi /state/partition1/VBlocal/. chown root:users /share/apps/VBtemplate/windowsXP.vdi chmod -R 744 /share/apps/VBtemplate/windowsXP.vdi chown root:users /state/partition1/VBlocal chmod -R 777 /state/partition1/VBlocal ### moving w7_32.vdi ################################################ cd /share/apps/VBtemplate wget http://www2.fizik.usm.my/tlyoon/Downloads/w7_32.vdi cd /state/partition1/VBlocal cp /share/apps/VBtemplate/w7_32.vdi /state/partition1/VBlocal/. chown root:users /share/apps/VBtemplate/w7_32.vdi chmod -R 744 /share/apps/VBtemplate/w7_32.vdi chown root:users /state/partition1/VBlocal chmod -R 777 /state/partition1/VBlocal echo -e "\nMessage from the author :\nCOMPLETE!!! \n"