Running Arch Linux #851
-
Hi, I am trying to run the following example: var emulator = (window.emulator = new V86Starter({
wasm_path: "/build/v86.wasm",
memory_size: 512 * 1024 * 1024,
vga_memory_size: 8 * 1024 * 1024,
screen_container: document.getElementById("screen_container"),
bios: {
url: "/bios/seabios.bin",
},
vga_bios: {
url: "/bios/vgabios.bin",
},
filesystem: {
baseurl: "https://copy.sh/v86/images/arch/",
basefs: "https://copy.sh/v86/images/fs.json",
},
autostart: true,
bzimage_initrd_from_filesystem: true,
cmdline: [
"rw",
"root=host9p rootfstype=9p rootflags=trans=virtio,cache=loose",
"init=/usr/bin/init-openrc",
].join(" "),
})); |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
v86 can't get Lines 393 to 396 in bbac74d |
Beta Was this translation helpful? Give feedback.
-
Could the problem be caused by something else. I can access linux.iso (https://copy.sh/v86/images/linux.iso). Why |
Beta Was this translation helpful? Give feedback.
-
The problem was solved when I used the state I downloaded from the page by saying save state. |
Beta Was this translation helpful? Give feedback.
The problem was solved when I used the state I downloaded from the page by saying save state.