lxd-demo-server
The LXD demo server (by canonical)
v86
x86 PC emulator and x86-to-wasm JIT, running in the browser (by copy)
lxd-demo-server | v86 | |
---|---|---|
7 | 162 | |
74 | 20,272 | |
- | 1.3% | |
1.7 | 9.5 | |
about 1 year ago | 9 days ago | |
JavaScript | JavaScript | |
Apache License 2.0 | BSD 2-clause "Simplified" License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
lxd-demo-server
Posts with mentions or reviews of lxd-demo-server.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-05-11.
- If docker runs OS's, too, what is the difference between it and hypervisors?
- LXD – Try It Online
- A brief comparison of online Linux terminals
- A brief comparison of Online Linux Terminals
- Linux Containers - Try the on-line LXD demo system here...
- lxd-demo-server - the Github Source to the On-Line LXD Demo kiosk type system
-
Question about lxd talk
lxd try-it source code is available here https://github.com/lxc/lxd-demo-server maybe you could investigate to see what they have done?
v86
Posts with mentions or reviews of v86.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-19.
- V86: Working Operating Systems in the Browser
- Webvm: Virtual Machine for the Web
- WebVM 2.0: A complete Linux Desktop Environment in the browser via WebAssembly
- Windows 95 Running in the Browser
-
Run a Virtual Machine in Your Browser
import { useEffect } from 'react'; function App() { useEffect(function initializeEmulator(){ // See https://github.com/copy/v86/blob/master/src/browser/starter.js for options window.emulator = new window.V86({ wasm_path: '/v86.wasm', screen_container: document.getElementById("screen_container"), bios: { url: "/bios/seabios.bin", }, vga_bios: { url: "/bios/vgabios.bin", }, hda: { // Hard Disk url: "/images/fd12-base.img", async: true, size: 419430400, // Recommended to add size of the image in URL. see https://github.com/copy/v86/blob/master/src/browser/starter.js }, autostart: true, }); }, []); return (
Initializing Emulator…div> canvas> div> ); } export default App; - WebVM is a server-less virtual Linux environment running client-side
- Windows 8 Running in the Browser
- Run Windows on the browser with WASM power
-
WASI 0.2.0 and Why It Matters
> As a thought experiment, we're almost there! We could technically have `win95.img + bochs86vm.wasm + autorun.inf + msword.exe` wrapped in a "browser evaluator"
I looked into this and... holy crap! We are there. Not for modern programs quite yet, sure, but this is amazing. You can use Windows 2000 from your browser.
https://copy.sh/v86/?profile=windows2000
-
Is offline-first not enough? Do we need "serverfree"?
I think you are looking for Shadow.
https://shadow.goose.icu
Or just the whole kitchen sink. Why not?
http://copy.sh/v86/?profile=windows98