news 2026/8/6 11:13:03

webvm 用浏览器启动的虚拟环境

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
webvm 用浏览器启动的虚拟环境

WebVM是一款基于WebAssembly技术的浏览器虚拟机,可直接在浏览器中运行完整的Linux环境,无需服务器支持

源码:https://github.com/leaningtech/webvm/

github部署

安装介绍:

动手实践:

打开网站:https://github.com/leaningtech/webvm

fork到自己的github账户:

直接点setting:

在setting页面,点击pages:

在Pages展开的右边页面,打开Build and deployment下面的GitHub ACtions,选Deploy from a branch:

可以看到把main映射到根目录了:

然后点Action:

出现Workflows页面,点绿色的大按钮:

出现Actions页面,点左侧的Deploy按钮:

点右侧的Run workflow,然后点绿色按钮:Run workflow

后面就是慢慢等待发布成功:

但是不知道为何,我这边发布是失败的。

本地部署

下载源码

git clone https://github.com/leaningtech/webvm.git cd webvm

下载Debian mini 镜像

wget "https://github.com/leaningtech/webvm/releases/download/ext2_image/debian_mini_20230519_5022088024.ext2"

修改配置文件

Edit `config_public_terminal.js` to reference your local disk image:

  • Replace:

    "wss://disks.webvm.io/debian_large_20230522_5044875331.ext2"

    With:

    "/disk-images/debian_mini_20230519_5022088024.ext2"

    (Use an absolute or relative URL pointing to the disk image location.)

  • Replace"cloud"with the correct disk image type:"bytes"

最终修改成这样

// The root filesystem location // export const diskImageUrl = "wss://disks.webvm.io/debian_large_20230522_5044875331_2.ext2"; export const diskImageUrl = "debian_large_20230522_5044875331_2.ext2"; // The root filesystem backend type // export const diskImageType = "cloud"; export const diskImageType = "bytes";

build

npm install npm run build

实战中我是使用了pnpm

pnpm install pnpm run build

build完成提示:

[vite-plugin-static-copy] Copied 6 items. ✓ built in 32.50s Run npm run preview to preview your production build locally. > Using @sveltejs/adapter-static Wrote site to "build" ✔ done

配置nginx

mkdir disk-images mv debian_mini_20230519_5022088024.ext2 disk-images/

修改nginx.conf文件,加入:

​ location /disk-images/ { root .; autoindex on; } ​

启动nginx

sudo nginx -p . -c nginx.conf

出来页面了

尽管只是个黑黑的控制台,也很棒了!

不过后面有报错,没搞定。

调试

pnpm run build报错

> webvm@2.0.0 build
> vite build

vite v5.4.21 building SSR bundle for production...
✓ 31 modules transformed.
x Build failed in 1.06s
error during build:
config_public_terminal.js (2:9): Expected ';', '}' or <eof>
file: config_public_terminal.js:2:9

1: // The root filesystem location
2: # export const diskImageUrl = "wss://disks.webvm.io/debian_large_20230522_5044875331_2.ext2";
^
3: export const diskImageUrl = "debian_large_20230522_5044875331_2.ext2";
4: // The root filesystem backend type

at getRollupError (file:///home/skywalk/github/webvm/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/es/shared/parseAst.js:401:41)
at ParseError.initialise (file:///home/skywalk/github/webvm/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/es/shared/node-entry.js:14469:28)
at convertNode (file:///home/skywalk/github/webvm/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/es/shared/node-entry.js:16352:10)
at convertProgram (file:///home/skywalk/github/webvm/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/es/shared/node-entry.js:15592:12)
at Module.setSource (file:///home/skywalk/github/webvm/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/es/shared/node-entry.js:17352:24)
at async ModuleLoader.addModuleSource (file:///home/skywalk/github/webvm/node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/es/shared/node-entry.js:21377:13)

发现是注释用错了,不应该用#,要用//

// The root filesystem location // export const diskImageUrl = "wss://disks.webvm.io/debian_large_20230522_5044875331_2.ext2"; export const diskImageUrl = "debian_large_20230522_5044875331_2.ext2"; // The root filesystem backend type // export const diskImageType = "cloud"; export const diskImageType = "bytes";

build完成

这段代码应该放到nginx的哪里?

location /disk-images/ { root .; autoindex on; }

放到主文件的location / 后面或前面

webvm启动报错

curl --max-time 15 parrot.live # requires networking

WebVM encountered an unexpected error

Check the DevTools console for further information

Please consider reporting a bug!

CheerpX internal error message is:

Initialization failed for 'HttpBytesDevice': Server returned 404
不知道为啥啊!是不是国内网络的锅啊?

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/8/1 18:25:12

Python开发:从零基础到项目实战

目录 第一部分&#xff1a;见道——Python基础与编程思想 第1章&#xff1a;缘起——初识Python与编程世界 1.1 万法皆有源&#xff1a;编程与计算机科学的简史。1.2 为何是Python&#xff1a;Python的哲学——“禅”与“道”。1.3 工欲善其事&#xff1a;搭建你的第一个Pyt…

作者头像 李华
网站建设 2026/8/3 22:19:52

20、深入了解 smbclient:实现 Linux 与 Windows 资源交互

深入了解 smbclient:实现 Linux 与 Windows 资源交互 在当今多元化的 IT 环境中,Linux 和 Windows 系统常常需要协同工作,实现资源的共享与交互。smbclient 作为一款强大的客户端工具,为我们提供了便捷的途径来访问 SMB/CIFS 服务器上的资源,其功能类似于传统的 ftp 程序…

作者头像 李华
网站建设 2026/8/4 7:40:27

代码随想录 684.冗余连接

这道题也是并查集基础题目。1.并查集可以解决的问题&#xff1a;&#xff08;1&#xff09;判断两个节点是否在一个集合。&#xff08;2&#xff09;将两个节点添加到一个集合中。2.题目要求&#xff1a;对于一个无向图&#xff0c;返回一条可以删去的边&#xff0c;使得结果图…

作者头像 李华
网站建设 2026/8/5 12:26:56

汇编语言全接触-28.Win32调试API一

在本教程中,我们将学习Win32提供给开发者的用于调试的原语. 在教程的结尾,我们将学习如何调试一个进程. 下载 例子程序.理论:Win32有一些供程序员使用的API,它们提供相当于调试器的功能. 他们被称作Win32调试API(或原语).利用这些API,我们可以:加载一个程序或捆绑到一个正在运行…

作者头像 李华
网站建设 2026/8/6 10:32:55

nn.layernorm的认识

LayerNorm — PyTorch 2.9 documentation layernorm不是对通道进行归一化。而是对选定维度进行归一化。被选定的维度作为一个整体&#xff0c;计算出方差和均值然后进行对被选定维度进行归一化。 &#xff08;整体归一化的意思就是&#xff0c;如果把[C, H, W]作为归一化维度…

作者头像 李华