#! /bin/bash ############################################################ ## movevbfew7.conf ## It scp the w7_32.vdi file from www2 to /share/apps/VBtemplate. When this is done, the same copy of w7_32.vdi is duplicated into /stata/partition1/VBlocal ############ this copying takes up quite a bit of time since the hardisk w7_32.vdi is large. ############ w7_32.vdi is stored at http://www2.fizik.usm.my/tlyoon/Downloads/w7_32.vdi mkdir /share/apps/VBtemplate ### wget from www2, slow ################################################ cd /share/apps/VBtemplate wget http://www2.fizik.usm.my/tlyoon/Downloads/w7_32.vdi # scp root@10.205.19.205:/home/tlyoon/repo/VirtualWindows/windowsXP.vdi /share/apps/VBtemplate/. ### Copying with cp, fast ################################################ mkdir /state/partition1/VBlocal 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"