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

Docker部署ServerStatus with tgbot

https://github.com/cppla/ServerStatus 服务端 mkdir /serverstatus cd /serverstatus mkdir plugin cd plugin curl -L https://raw.githubusercontent.com/cppla/ServerStatus/master/plugin/Dockerfile-telegram -O curl -L https://raw.githubusercontent.com/cppla/ServerStatus/master/plugin/bot-telegram.py -O cd /serverstatus curl -L https://raw.githubusercontent.com/cppla/ServerStatus/master/Dockerfile -O curl -L https://raw.githubusercontent.com/cppla/ServerStatus/master/docker-compose-telegram.yml -O nano docker-compose-telegram.yml…

Read more


v2board – XrayR

v2board – 使用aaPanel手动部署: https://docs.v2board.com/deploy/aapanel.html xrayr-project 对接v2board: https://crackair.gitbook.io/xrayr-project/dui-jie-v2board/v2board Docker 安装 xrayr-project: https://crackair.gitbook.io/xrayr-project/xrayr-xia-zai-he-an-zhuang/install/docker   Docker run 安装XrayR: docker pull crackair/xrayr:latest && docker run –restart=always –name xrayr -d -v /root/xrayr/config.yml:/etc/XrayR/config.yml –network=host crackair/xrayr:latest

Read more

docker停止、删除容器实例、删除镜像操作

当你的容器中出现问题(比如我改坏了文件)需要重新部署一台的时候,就需要将这个容器实例删除 接着:

这样就将docker对应实例删除了,而删除镜像必须在前面两步之后进行:

列出所有的容器 ID docker ps -aq 停止所有的容器 docker stop $(docker ps -aq) 删除所有的容器 docker rm $(docker ps -aq) 删除所有的镜像 docker rmi $(docker images -q)…

Read more