威联通:升级 Code Server 编辑器 3.x
Code Server 3.x 版本发布也有几周了,最新版本 3.1.1 看起来应该可用度比较高了,于是就打算升级了。
根据作者发布的注意事项来看,3.x 与 2.x 最大的不同就是不再打包成单文件了。
We’re still working on arm64 builds (Travis appears to swallow the output and then terminates the build because there’s no output).
V3 has some significant changes that will need to be accounted for in your scripts.
-
We use semantic versioning now. The VS Code version will no longer be included in the tag or the release file name.
-
Releases are now loose files and are no longer packed into a single binary so be sure to move the entire directory. Inside the directory is an entry script
code-server
that will launch with the bundled Node. -
If you want to do something like put the entry script in
/usr/bin
and thecode-server
files in/usr/lib
we recommend you use a symlink:ln -s /usr/lib/code-server/code-server /usr/bin/code-server
. -
You can also run code-server with your own Node binary instead of the bundled one:
node /path/to/code-server/out/node/entry.js
. -
V2 cannot update to V3 automatically due to the structural changes so you’ll need to manually download and restart code-server in order to update.
-
If you want to build or develop please check out https://github.com/cdr/code-server/blob/3.0.0/doc/CONTRIBUTING.md as the steps have changed.
首先停止运行 2.x 版本进程,删掉开机脚本和计划任务。
然后把最新的 release 下载下来解压到 NAS 上运行:
|
|
另存为 shell
文件后,将它加入开机脚本和计划任务,重启 NAS 就可以了。
除了使用开机脚本和计划任务之外,也可以选择将项目打包成威联通可以直接安装的 qpkg 程序包。
首先从 App Center
手动安装开发工具 QDK
,项目地址:https://github.com/qnap-dev/QDK 安装包:https://download.qnap.com/QPKG/QDK/QDK_2.3.10.zip
安装完成以后,SSH
连接到 NAS,测试安装是否成功:
|
|
创建项目,名字随便取,比如 codeserver:
|
|
查看 codeserver 目录文件结果如下:
|
|
arm 以及 x86 开头的目录是存放相应架构的文件,shared 目录是存放所有架构通用的文件,如果不需要同时开发跨架构的程序,可以直接删除所有架构对应的目录:
|
|
rm -rf
删除命令时注意路径无误,避免删除错误导致系统崩坏修改配置信息 qpkg.cfg:
|
|
端口可以改成你需要让程序运行的端口,前面提到过默认是 8080,不需要配置 ssl
证书的话,QPKG_WEB_SSL_PORT
不修改,其他的设置保持默认即可。
解压最新 release 的 code-server
,目录结构大致如下:
|
|
将所有文件复制到项目新建 /shared/bin/
目录下:
|
|
配置初始化脚本,其他的代码保持默认即可:
|
|
|
|
如果还需要自定义图标的话,设计 3 个图标文件存放到 icons 目录:
|
|
在项目根目录运行下面的命令构建安装包,完成后从 App Center
手动安装即可:
|
|
以 Web App 形式运行从外观上看和本地的 vs code 也没什么区别了