最近选择了 kubuntu 作为生产力替代了 Win10, 整体感觉太棒了
为什么要选择 kubuntu, 特效炫酷,然后就没然后了
安装完系统第一步安装 Vim 编辑器
sudo apt-get install vim-gtk |
第二部把 kubuntu 的源改为国内源,kubantu 是 ubuntu 的一个衍生版,所有操作指令和 ubuntu 一致,平时找资料直接找 ubuntu 的即可通用
打开中断编辑如下文件
sudo vim /etc/apt/source.list |
阿里源的链接粘贴进去
阿里源
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse |
然后保存文件
执行更新系统操作即可畅快体验系统了
更新软件列表
sudo apt-get update |
更新软件(把已安装的软件与刚刷新的软件列表中的版本进行对比,如果发现已安装的软件版本太低,就会提示更新)
sudo apt-get upgrade |