如何在Ubuntu 20.04 LTS上安装Etherpad

Ubuntu 20.04 LTS Focal Fossa上安装Etherpad

步骤1.首先,通过apt在终端中运行以下命令来确保所有系统软件包都是最新的。

sudo apt update
sudo apt upgrade
sudo apt install git curl python libssl-dev pkg-config build-essential

第2步。安装Node.js。

现在,使用以下命令添加Node.js存储库:

curl -sL https://deb.nodesource.com/setup_14.x -o nodesource_setup.sh
bash nodesource_setup.sh

添加存储库后,使用以下命令安装Node.js:

sudo apt install nodejs

验证Node.js的安装版本:

node -v

步骤3.在Ubuntu 20.04上安装Etherpad。

现在,我们将二进制文件克隆到一个目录中:/opt/etherpad

sudo mkdir /opt/etherpad
sudo chown -R $(whoami).$(whoami) /opt/etherpad
cd /opt/etherpad
sudo git clone git://github.com/ether/etherpad-lite.git

完成后,使用以下命令运行Etherpad:

/opt/etherpad/bin/run.sh

步骤4.在Ubuntu上访问Etherpad。

默认情况下,Etherpad将在HTTP端口9001上可用。打开您喜欢的浏览器并导航到https://your-ip-address:9001

etherpad-web-interface

恭喜你!您已经成功安装了Etherpad。使用本教程在Ubuntu 20.04 LTS Focal Fossa系统上安装Etherpad。有关其他帮助或有用信息,我们建议您检查Etherpad官方网站

原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39827.html

(0)
打赏 微信扫一扫不于多少! 微信扫一扫不于多少! 支付宝扫一扫礼轻情意重 支付宝扫一扫礼轻情意重
上一篇 2021年3月1日 下午5:44
下一篇 2021年3月1日 下午5:58

相关推荐