sudo apt list | grep -i <keyword> 1. 查找本机已经安装的 sudo apt list --installed | grep -i <keyword> 1. 卸载 仅卸载 sudo apt remove <name of software> 1. 以卸载qq为例: sudo apt remove linuxqq 1. 卸载并删除配置文件 sudo apt purge <name of software> 1. 清理 自动删除不再需要...
本文介绍了在windows环境下从零开始安装Ubuntu系统的方法,并提供了卸载Ubuntu系统的步骤,还介绍了一些在Ubuntu系统下查找、安装、卸载软件的方法。
sudo apt -f install 查看安装历史 /var/log/apt/history.log保存apt安装的历史记录。 /var/log/dpkg.log保存dpkg安装的历史记录。 关键字查找软件包 查找软件源里所有的 sudo apt list | grep -i <keyword> 查找本机已经安装的 sudo apt list --installed | grep -i <keyword> 卸载 仅卸载 sudo apt re...
sudo apt install libc6 If the .NET app uses the System.Drawing.Common assembly, libgdiplus must be installed. For more information, see System.Drawing.Common only supported on Windows.You can install a recent version of libgdiplus by adding the Mono repository to your system.Next...
本文介绍了在windows环境下从零开始安装Ubuntu系统的方法,并提供了卸载Ubuntu系统的步骤,还介绍了一些在Ubuntu系统下查找、安装、卸载软件的方法。 1.前期准备 1.1 制作启动盘 先下载一下Ubuntu系统映像。官网下载得比较慢,可以去其他镜像源网站下载比如清华源。下载好的镜像是iso后缀。
Gain insights into the installation procedure of Ubuntu on Windows and harness the advantages of having both operating systems at your fingertips.
当我们在使用 debian/ubuntu 的时候,如果需要安装一些应用,通常会执行sudo apt install ...,如果源中有的话,这是最傻瓜式,也最方便的方式了。 但是笔者其实一直不是很喜欢这种方式,原因如下: 这种方式由于给到了 root 权限,无形中,背后做了很多事,对于笔者来说,总感觉缺乏一些掌控 ...
apt-get install 是linux系统下的命令windows肯定是不能完成的。以office2007的安装为例,安装文件路径为D:\office2007\setup.exe 首先在“运行”中输入 cmd 进入 命令行操作 命令行输入命令如下图 这样就运行了安装程序。
出现以上问题,可能是因为执行apt-get install时使用的镜像源无法解析,导致访问失败。可以通过重新配置apt源来解决这个问题,此处以华为云为例进行说明。 使用如下命令,备份配置文件。 sudocp-a /etc/apt/sources.list /etc/apt/sources.list.bak 修改sources.list文件,将http://archive.ubuntu.com和http://security...
deb http://mirrors.aliyun.com/ubuntu/ focal-security multiverse">/etc/apt/sources.list 执行更新: apt update && apt upgrade -y 3.安装docker 因为wsl2已经完整使用了linux内核了,此种方式和先前在linux虚拟机安装docker类似,步骤如下: $ curl -fsSL https://get.docker.com -o get-docker.sh ...