You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/articles/Installation/Running.md
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,61 @@ The ISO option creates an ISO image of the Cosmos output. This ISO file can be
10
10
mounted and booted by most virtualization technologies. In addition, a physical
11
11
optical disk can be burned and used to boot physical hardware.
12
12
13
+
# Linux/Posix
14
+
### DISCLAIMER: This article assumes that you are using a debian based operating system
15
+
16
+
## QEMU
17
+
Here you can use a generic run file, you can run it by using `sh run.sh -i <ISO> -m <memory size> -h <hdd image>`.
18
+
It has to be at the root directory of the project
19
+
20
+
QEMU is required and can be installed with `apt-get install qemu-system`.
21
+
22
+
To create an hdd image, you have to convert this [.vmdk](https://github.com/CosmosOS/Cosmos/blob/master/Build/VMWare/Workstation/Filesystem.vmdk?raw=true) file to a .img wich can then be used by QEMU using the following command
23
+
`qemu-img convert -f vmdk -O raw Filesystem.vmdk cosmos.img`
qemu-system-x86_64 -boot d -cdrom $ISO -m $MEMORY_SIZE -hda $HDD_IMAGE
61
+
```
62
+
63
+
## Virtualbox
64
+
Create a virtual machine and use this [.vmdk](https://github.com/CosmosOS/Cosmos/blob/master/Build/VMWare/Workstation/Filesystem.vmdk?raw=true) as HDD image
65
+
66
+
# Windows
67
+
13
68
## VMWare
14
69
15
70
WMWare Workstation and VMWare Player are the preferred testing environments
0 commit comments