Posts

Showing posts with the label virtualbox

Virtual Cluster using VirtualBox

Image
I tested the new HPC Europa Milestone 6 DVD and created a virtual cluster using VirtualBox on my laptop. I created a head-node and two computing nodes connected via a VLAN.  The head node has two network interfaces, NAT which enables the connection to the outside world and an internal virtual interface. The two computing nodes have only one network interface each for the VLAN. In picture number 1 the VirtualBox dashboard is shown with the 3 running computers Picture number 1: The VirtualBox dashboard showing the 3 running computers of the virtual cluster Picture number 2: The desktop of the head node (left) and the two computing nodes (right) In picture number two a PBS job executing a simple MPI task is demonstrated. The head node is on the left and the two computing nodes are on the right. My general impression is that this Virtual Cluster is an excellent tool for education where the teacher and later on the students can experience Parallel Processing using the...

Sharing USB disk with Virtual Box guest OS

Assuming the host OS is Windows and the guest OS is Linux (CentOS in my case): make a directory at the guest OS for the flash storage: mkdir /home/telzur/shared Plug the memory stick and check the guest OS log: tail /var/log/messages find the name of the new device, in my case, ./dev/sdb1 as root: mount –t vfat /dev/sdb1 /home/telzur/shared Your files are now in the shared folder. Enjoy!