This page (revision-40) was last changed on 23-Apr-2022 17:06 by Harry Metske

This page was created on 23-Apr-2022 17:05 by Harry Metske

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
40 23-Apr-2022 17:06 41 KB Harry Metske to previous
39 23-Apr-2022 17:05 41 KB Harry Metske to previous | to last
38 23-Apr-2022 17:05 40 KB Harry Metske to previous | to last --biosbootmenu disabled, not more than one cpu
37 23-Apr-2022 17:05 38 KB Harry Metske to previous | to last
36 23-Apr-2022 17:05 37 KB Harry Metske to previous | to last
35 23-Apr-2022 17:05 37 KB Harry Metske to previous | to last
34 23-Apr-2022 17:05 37 KB Harry Metske to previous | to last
33 23-Apr-2022 17:05 37 KB Harry Metske to previous | to last
32 23-Apr-2022 17:05 37 KB Harry Metske to previous | to last
31 23-Apr-2022 17:05 36 KB Harry Metske to previous | to last
30 23-Apr-2022 17:05 35 KB Harry Metske to previous | to last
29 23-Apr-2022 17:05 35 KB Harry Metske to previous | to last
28 23-Apr-2022 17:05 35 KB Harry Metske to previous | to last guest properties
27 23-Apr-2022 17:05 33 KB Harry Metske to previous | to last
26 23-Apr-2022 17:05 32 KB Harry Metske to previous | to last
25 23-Apr-2022 17:05 32 KB Harry Metske to previous | to last
24 23-Apr-2022 17:05 31 KB Harry Metske to previous | to last
23 23-Apr-2022 17:05 30 KB Harry Metske to previous | to last
22 23-Apr-2022 17:05 30 KB Harry Metske to previous | to last
21 23-Apr-2022 17:05 29 KB Harry Metske to previous | to last cpu affinity

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 538 added 30 lines
!! Mass VM creation
! Preparing original mother system
I created a fairly small Linux image with a DSL (Damn Small Linux) distro.\\
This guy runs with only 24M RAM.\\
The following was done to create this one :
* download iso image
* ''vb createvm --name dsl01 --register --ostype Linux''
* ''vb createhd --filename HardDisks/dsl01disk.vdi --size 250 --format VDI''
* ''vb modifyvm --memory 24 --vram 1 --pae off --hwvirtex off --boot1 dvd --boot2 disk --hda HardDisks/dsl01disk.vdi --dvd /home/metskem/Downloads/dsl.iso --nic1 bridged --bridgeadapter1 wlan0''
* start the vm with ''vb startvm dsl01''
* make sure the ssh daemon is started during boot so we can remote login, create symlink in /etc/rc5.d: S25ssh -> ../init.d/ssh
* set password for user dsl
* create the following script and create symlink in /etc/rc5.d: S22tellip -> ../init.d/tellip.sh :
%%prettify
{{{
IP=`ifconfig eth0|grep inet|awk '{ print $2}'|awk -F: '{print $2}'`
wget -q -O - http://www.computerhok.nl/IAM:$IP
}}}
%%
This tells us which machine is using which IP address.
! Cloning
Now I want to clone this and create a whole lot of them (in a script).
The following actions the have to be done :
*