X-ui面板安装

X-ui介绍 x-ui的github项目地址:https://github.com/vaxilu/x-ui 系统状态监控 支持多用户多协议,网页浏览化操作 支持的协议:vmess、vless、trojan、shadowsocks、dokodemo-door、socks、http 支持配置 更多传输配置 流量统计,限制流量,限制时间 可自定义xray配置模板 支持https访问面板(自备域名+ssl证书) 更多高级配置项,详见面板 X-UI一键脚本

bash

Read more

Docker install tigase-xmpp-server

https://hub.docker.com/r/tigase/tigase-xmpp-server

Read more

使用Docker搭建Syncthing

Syncthing 官网:https://syncthing.net/ 在服务器上部署 Docker Debian 安装 Docker:https://docs.docker.com/engine/install/debian/ Ubuntu 安装 Docker:https://docs.docker.com/engine/install/ubuntu/ 拉取 syncthing 镜像 docker pull syncthing/syncthing 运行容器 docker run -d -p 8384:8384 -p 22000:22000 -v /data/syncthing:/var/syncthing –restart=always syncthing/syncthing:latest 参数解释: -d:后台运行…

Read more

Linux防火墙放行指定端口

Debian/Ubuntu 放行端口 安装iptables(通常系统都会自带,如果没有就需要安装) apt-get update apt-get install iptables 例如要放行8888端口 iptables -I INPUT -p tcp –dport 8888 -j ACCEPT 然后保存放行规则 iptables-save 设置完就已经放行了指定的端口,但重启后会失效,下面设置持续生效规则; 安装iptables-persistent apt-get install iptables-persistent 保存规则持续生效 netfilter-persistent save netfilter-persistent reload…

Read more


Install Remote Desktop (xRDP) for Ubuntu Server

Step 1 – Install xRDP:

Step 2 – Install XFCE4

Step 3 – Configure

Step 4 – Restart xRDP

Step 5 – Testing On Windows PC,…

Read more


Debian 10 Buster 升级 Debian 11 Bullseye

准备工作 除非你是物理服务器,以及没有用过奇奇怪怪定制或修改的内核的 KVM 构架的 VPS 和云主机,否则升级大版本更新内核是有一定机率导致 Grub 加载失败的,切记备份重要数据! OpenVZ 6 和 LXC 构架的 VPS 是无法升级的,因为他们没有自己独立的内核 再强调一遍,一定要备份重要数据! 以下操作需要在 root 用户下完成,请使用 sudo -i 或 su root 切换到 root 用户进行操作 更新系统 首先需要更新你当前的系统

如果内核更新了,可以重启让最新的内核生效,也可以直接进行升级。 升级系统 首先更新 apt 源,替换 buster 为 bullseye:

Read more


Docker 搭建 calibre-web

官网地址:https://hub.docker.com/r/technosoft2000/calibre-web 1.获取 Docker 镜像: docker pull technosoft2000/calibre-web 启动 calibre-web:

Read more