ubuntu删除软件命令】的更多相关文章

第一步,apt-get remove xxx :就是卸载xxx  或者 apt-get remove --purge xxx :卸载xxx并清除配置.   这两条命令对于依赖则是不管的.因为别的软件可能和此软件有相同的依赖,当然对依赖不能管了. 第二步,apt-get autoremove :就是来对付那些不再被“依赖”的包, 自动检测并删除他们(任何时候都可以执行此条命令).  autoremove: is used to remove packages that were automatic…
前言 在基于Debian的Linux发行版中,默认的软件管理器是Advanced Packaging Tool, 也就是apt.本文将简单介绍下面有关添加和删除软件的命令: apt-cache search apt-get install apt-get remove apt-get purge apt-get update apt-get upgrade /etc/apt/sources.list apt-cache search命令 保存特定Linux发行版软件的服务器被称为软件库.你的系统…
第一步,apt-get remove xxx :就是卸载xxx  或者 apt-get remove --purge xxx :卸载xxx并清除配置.   这两条命令对于依赖则是不管的.因为别的软件可能和此软件有相同的依赖,当然对依赖不能管了. 第二步,apt-get autoremove :就是来对付那些不再被“依赖”的包, 自动检测并删除他们(任何时候都可以执行此条命令).  autoremove: is used to remove packages that were automatic…
解压zip软件 unzip  xxx.zip -d解压到指定目录 清理磁盘空间 sudo apt-get autoremove sudo apt-get clean sudo dpkg --list 'linux-image*'*…
此表内容来自<Ubuntu Server最佳方案>,CentOS和Ubuntu(Debian)是VPS最常见的系统,这份表很实用,分享下  …
安装软件最好加权限(sudo) --default-timeout=100 设置超时时间100秒 install -U setuptools 表示更新安装setuptools sudo pip3 --default-timeout=100 install -U setuptools…
查找软件: apt-cache search <your search item>…
apt-get, dkpg 常用命令: 安装软件命令: apt-get install softname1 softname2 softname3…… 卸载软件命令: apt-get remove softname1 softname2 softname3…… 卸载并清除配置命令: apt-get remove --purge softname1 更新软件信息数据库命令: apt-get update 进行系统升级命令: apt-get upgrade 搜索软件包命令: apt-cache se…
ubuntu安装和卸载软件命令 Ubuntu软件安装与删除相关命令 安装软件 命令: apt-get install softname1 softname2 softname3…… 卸载软件 命令: apt-get remove softname1 softname2 softname3…… 卸载并清除配置 命令: apt-get remove --purge softname1 更新软件信息数据库 命令: apt-get update 进行系统升级 命令: apt-get upgrade 搜索…
sudo apt-get update: 升级安装包相关的命令,刷新可安装的软件列表(但是不做任何实际的安装动作) sudo apt-get upgrade: 进行安装包的更新(软件版本的升级) sudo apt-get dist-upgrade: 除了拥有upgrade的全部功能外,dist-upgrade会比upgrade更智能地处理需要更新的软件包的依赖关系. sudo do-release-upgrade: 进行系统版本的升级(Ubuntu版本的升级),Ubuntu官方推荐的系统升级方式…