Ubuntu 20.04 Focal 升级 Ubuntu 22.04 Jammy

本文将指导如何升级 Ubuntu 20.04 Focal 到 Ubuntu 22.04 Jammy。 前言 Ubuntu 22.04 Jammy Jellyfish 已正式发布,如果您使用 Ubuntu 20.04,那么可以参考本站教程升级。 准备工作 除非你是物理服务器,以及没有用过奇奇怪怪定制或修改的内核的 KVM 构架的 VPS 和云主机,否则升级大版本更新内核是有一定机率导致 Grub 加载失败的,切记备份重要数据! OpenVZ 6 和 LXC 构架的 VPS…

Read more

ubuntu 22.04国内镜像

国内镜像阿里云/163源/清华大学/中科大 Ubuntu 22.04 LTS这是一个长期支持版本,它将被支持五年,直到2027年4月。已发布的LTS版本带来了一些新的功能。如果你正在使用Ubuntu 20.04 LTS,你会注意到许多视觉上的变化。 当然作为国内用户首要任务安装完成之后首要任务就是更改ubuntu 22.04的镜像/软件源。 国内有很多Ubuntu 22.04的镜像源,包括阿里、网易,还有很多教育网的镜像源,比如清华源、中科大源。 在教程中我们将介绍如何更改镜像在ubuntu 22.04。国内的包括有镜像阿里云/163源/清华大学/中科大。 首先我们需要先备份Ubuntu官方的软件源,执行以下命令将备份原来的软件源。 sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak 清华大学镜像 复制以下命令即可一键切换到清华大学ubuntu 22.04镜像: sudo bash -c “cat /etc/apt/sources.list && apt update deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/…

Read more


Linux VPS服务器SSH端口一键修改脚本

方法 系统要求:支持Debian、Ubuntu、CentOS系统。 运行以下命令:

输入端口确认。再打开防火墙端口:

最后重启ssh生效:

Read more

树莓派Ubuntu22.04 server换源

备份:

换DNS(很重要) sudo vim /etc/resolv.conf ———————————————— This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8). Do not edit. # This file might be symlinked as /etc/resolv.conf. If you’re looking at /etc/resolv.conf and…

Read more



Ubuntu删除与安装系统内核

内核安装 搜索可安装的内核版本,使用命令: apt-cache search linux|grep linux-image 选择所需要的内核版本进行安装,安装内核需要安装image和header,例如: apt-get install linux-image-4.4.0-58-generic linux-headers-4.4.0-58-generic 重启,按ESC进入选择菜单,选择高级选项,选择所需要的内核版本启动系统 内核卸载 当我们安装软件时,如果boot空间已满系统会报: gzip: stdout: No space left on device E: mkinitramfs failure cpio 141 gzip 1 如使用如下命令查看boot空间,可发现boot空间已满,这时就需要卸载多余的内核。 df…

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

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