修改主机名 检查主机名:hostnamectl1、sudo hostnamectl set-hostname NewName2、sudo gedit /etc/hostname sudo gedit /etc/hosts ubuntu系统 2022-06-10 评论 338 次浏览
ubuntu21安装Python3.10可能会出现的问题 安装Python3.10https://cloudbytes.dev/snippets/upgrade-python-to-latest-version-on-ubuntu-linux重新安装 gnome-control-center unity-control-centersudo apt reinstall gnome-control-centersudo apt reinstall unity-control-center如果软件更新之类的打不开,从应用商店安装software & updates这样 GNOME 软件包更新程序 就正常了 ubuntu系统 2022-05-24 评论 273 次浏览
Decentraleyes for chrome 插件 Decentraleyes for chrome 插件都是事先将一些第三方库文件在本地加载,当打开网页遇到使用其他第三方库文件时,马上进行拦截并从本地进行加载,这样就可以大大地提高网页的加载速度。 此插件需要先到github进行下载: https://github.com/Synzvato/decentraleyes . 不过由于微软收购了github,这个作者把项目迁移到了其他地方。 最新版可以到这个地方下载:https://git.synz.io/Synzvato/decentraleyes 随手发现 2022-05-09 评论 275 次浏览
更新apt docker安装源 # step 1: 安装必要的一些系统工具sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common# step 2: 安装GPG证书curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -# Step 3: 写入软件源信息sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"sudo apt update & sudo apt upgrade一、添加源语法格式:sudo add-apt-repository ppa:xxx | [deb...]sudo add-apt-repository ppa:xxx | [deb...]添加好更新: sudo apt update二、删除指定源语法格式:sudo add-apt-repository -r ppa:xxx | [deb...]sudo add-apt-repository -r ppa:xxx | [deb...] ubuntu系统,Docker 2022-05-07 评论 348 次浏览