Installing XFCE Desktop on Alpine Linux
|
apk update setup-xorg-base apk add xfce4 xfce4-terminal xfce4-screensaver lightdm-gtk-greeter dbus rc-service dbus start rc-update add dbus rc-update add lightdm rc-service lightdm start <img src="https://www.linuxshelltips.com/wp-content/uploads/2022/04/XFCE-in-Alpine-Linux.png" alt="XFCE in Alpine Linux" /> |
Read more
Duplicati安装 从https://www.duplicati.com/download下载最新版本 该软件需要几个库才能工作,主要是单声道库。 安装软件最简单的方法是让它通过dpkg安装失败,然后使用apt-get安装缺少的软件包: sudo dpkg -i duplicati_2.0.6.3-1_all.deb sudo apt-get –fix-broken install 请注意,安装程序包在第一个实例上失败,然后我们使用apt来安装依赖项。 启动守护进程: sudo systemctl start duplicati.service 如果您希望在操作系统使用时自动启动: sudo systemctl enable duplicati.service 要检查服务正在运行: netstat -ltn | grep 8200
Read more
下载docker镜像 docker pull linuxserver/thelounge 运行docker镜像 docker run -d –name=thelounge -e PUID=1000 -e PGID=1000 -e TZ=Asia/Shanghai -p 9000:9000 -v /opt/thelounge:/config –restart unless-stopped linuxserver/thelounge 设置仅允许指定用户 vim /opt/thelounge/config.js 修改其中的public为false,然后使用docker restart thelounge,重启容器 添加自己的用户 docker…
Read more
安装配置 FTP 服务器 安装 vsftpd sudo apt update sudo apt install vsftpd 配置 vsftpd sudo vim /etc/vsftpd.conf 修改文件中以下内容内容: 服务器监听,开启ipv6 listen=NO listen_ipv6=YES 禁止匿名访问, 否则脚本可** anonymous_enable=NO 允许本地主机访问 local_enable=YES 允许写权限 write_enable=YES dirmessage_enable=YES 增加访问账号…
Read more