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
https://hub.docker.com/r/tigase/tigase-xmpp-server docker pull tigase/tigase-xmpp-server docker run –name tigase-server -p 8080:8080 -p 5222:5222 tigase/tigase-xmpp-server:latest Once started, open http://localhost:8080/" rel=”nofollow noopener”>http://localhost:8080</a> (from the same machine, or using http://<server_hostname>:8080), by default those are:…
Read more
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
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
系统 uname -a # 查看内核/操作系统/CPU信息 head -n 1 /etc/issue # 查看操作系统版本 cat /proc/cpuinfo # 查看CPU信息 hostname # 查看计算机名 lspci -tv # 列出所有PCI设备 lsusb -tv # 列出所有USB设备 lsmod # 列出加载的内核模块 env…
Read more
Step 1 – Install xRDP: sudo apt update sudo apt install xrdp Step 2 – Install XFCE4 sudo apt install xfce4 sudo apt-get install xfce4-terminal tango-icon-theme Step 3 – Configure…
Read more
编辑文件/etc/ssh/sshd_config, 找到下面这行: #PermitRootLogin prohibit-password 改成 PermitRootLogin yes 即可。记得去掉PermitRootLogin前面的注释符#. 然后,执行下面的命令即可生效: systemctl restart ssh
Read more
准备工作 除非你是物理服务器,以及没有用过奇奇怪怪定制或修改的内核的 KVM 构架的 VPS 和云主机,否则升级大版本更新内核是有一定机率导致 Grub 加载失败的,切记备份重要数据! OpenVZ 6 和 LXC 构架的 VPS 是无法升级的,因为他们没有自己独立的内核 再强调一遍,一定要备份重要数据! 以下操作需要在 root 用户下完成,请使用 sudo -i 或 su root 切换到 root 用户进行操作 更新系统 首先需要更新你当前的系统 apt update apt upgrade -y…
Read more
V2Ray Docker Image by Teddysun: https://hub.docker.com/r/teddysun/v2ray 1. Pull the image: docker pull teddysun/v2ray 2.create a configuration file /etc/v2ray/config.json in host at first: mkdir -p /etc/v2ray A sample in JSON like…
Read more
官网地址:https://hub.docker.com/r/technosoft2000/calibre-web 1.获取 Docker 镜像: docker pull technosoft2000/calibre-web 启动 calibre-web: docker create –name=calibre-web –restart=always \ -v /data/calibre/books:/books \ -v /data/calibre/config:/calibre-web/config \ -e USE_CONFIG_DIR=true \ -e SET_CONTAINER_TIMEZONE=true \ -e CONTAINER_TIMEZONE=Asia/Shanghai \ -e…
Read more