-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path42Linux_vm.sh
executable file
·58 lines (46 loc) · 2.87 KB
/
42Linux_vm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash
##########################################################
# #
# The name of your machine #
# #
##########################################################
MACHINENAME=$1
##########################################################
# #
# Create VM #
# #
##########################################################
VBoxManage createvm --name $MACHINENAME --ostype "Debian_64" --register --basefolder /sgoinfre/$(whoami)
##########################################################
# #
# Set memory RAM and virtual memory #
# #
##########################################################
VBoxManage modifyvm $MACHINENAME --ioapic on
VBoxManage modifyvm $MACHINENAME --memory 4096 --vram 128
##########################################################
# #
# Create Disk Partition, connect Debian ISO #
# #
##########################################################
VBoxManage createhd --filename /sgoinfre/$(whoami)/$MACHINENAME/$MACHINENAME_DISK.vdi --size 10000 --format VDI
VBoxManage storagectl $MACHINENAME --name "SATA Controller" --add sata --controller IntelAhci
VBoxManage storageattach $MACHINENAME --storagectl "SATA Controller" --port 0 --device 0 --type hdd --medium /sgoinfre/$(whoami)/$MACHINENAME/$MACHINENAME_DISK.vdi
VBoxManage storagectl $MACHINENAME --name "IDE Controller" --add ide --controller PIIX4
VBoxManage storageattach $MACHINENAME --storagectl "IDE Controller" --port 0 --device 0 --type dvddrive --medium "debian.iso"
VBoxManage modifyvm $MACHINENAME --boot1 dvd --boot2 disk --boot3 none --boot4 none
##########################################################
# #
# Enable Bridged Adapter to ssh connection #
# #
##########################################################
VBoxManage modifyvm $MACHINENAME --nictype1 82540EM
VBoxManage modifyvm $MACHINENAME --nic1 bridged
VBoxManage modifyvm $MACHINENAME --nicpromisc1 deny
VBoxManage modifyvm $MACHINENAME --bridgeadapter1 eno2
##########################################################
# #
# Start the VM #
# #
##########################################################
VBoxManage startvm $MACHINENAME --type gui