How To Uninstall Software Using The Ubuntu Command Line
/uninstallsoftwareubuntuterminal-5887c0ac3df78c2ccd77bb5e.png)
Uninstall Ubuntu Software Using The Terminal.
The Ubuntu terminal will give you the ultimate control for uninstalling software.
In most cases using "Ubuntu Software" and "Synaptic" are sufficient for installing and uninstalling software.
You can, however, remove software using the terminal and there is one important command I will show you that isn't available in the graphical tools.
There are various ways to open a terminal using Ubuntu. The easiest is to press CTRL, ALT, and T at the same time.
To get a list of the applications installed on your computer run the following command:
sudo apt --installed list | more
The above commands shows a list of applications installed on your system one page at a time. To see the next page simply press the space bar or to quit out press the "q" key.
To remove a program run the following command:
sudo apt-get remove
Replace with the name of the package you wish to remove.
The above command works much like the "Mark for removal" option in Synaptic.
To go for the complete removal run the following command:
sudo apt-get remove --purge
As before replace with the name of the package you wish to remove.
When you install an application a list of packages that the application depends on are also installed.
When you remove an application these packages are not automatically removed.
To remove packages that were installed as dependencies, but which no longer have the parent application, installed run the following command:
sudo apt-get autoremove
You are now armed with everything you need to know in order to remove packages and applications within Ubuntu.
How To Uninstall Software Using The Ubuntu Command Line的更多相关文章
- ubuntu command
uninstall software: sudo apt-get purge openjdk*
- Mac解决:xcode-select: error: command line tools are already installed, use "Software Update" to install updates
1.因为node项目终端报错: No receipt for 'com.apple.pkg.CLTools_Executables' found at '/'. No receipt for 'com ...
- msiexec command line arguments
Documented command line arguments Type MSIEXEC /? and you'll get the following on-screen help: Windo ...
- 怎样安装Command Line Tools in OS x Mavericks&Yosemite(Without xcode)--转载
How to Install Command Line Tools in OS X Mavericks & Yosemite (Without Xcode) Mac users who pre ...
- List of Chromium Command Line Switches(命令行开关集)——官方指定命令行更新网址
转自:http://peter.sh/experiments/chromium-command-line-switches/ There are lots of command lines which ...
- How to Use Android ADB Command Line Tool
Android Debug Bridge (adb) is a tool that lets you manage the state of an emulator instance or Andro ...
- logoff remote desktop sessions via command line tools
This trick I learned from my one of ex-college. In Windows servers, only two remote desktop session ...
- scalac error: bad option: '-make:transitive' on mvn package via command line
1 问题描述: ubuntu环境下用eclipse+maven开发Scala的时候出现错误:scalac error: bad option: '-make:transitive' on mvn pa ...
- error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status
Windows服务器Azure云编译安装MariaDB教程 www.111cn.net 编辑:future 来源:转载 安装MariaDB数据库最多用于linux系统中了,下文给各位介绍在Window ...
随机推荐
- Loadrunder脚本篇——Run-time Settings之Preferences
打开Preferences设置对话框,这里提供了对运行时的参数选择设置 Enable Image and Text Check 开启图片和文本检查.允许用户在回放期间通过web_find(文本检测)或 ...
- 区块链入门级别认知(blockchain)
区块链入门级别认知(blockchain) 前言:今天参加了迅雷关于区块链的大会,学习和感受总结一下 之前的认知在:几个混迹互联网圈关于区块链 耳熟能详的 热词 “比特币” “区块链” “挖矿” ,知 ...
- C# 获取MD5值
class CommonHelper { /// <summary> /// 通过字符串获取MD5值,返回32位字符串. /// </summary> /// <para ...
- Array.asList:数组转list
String s[]={"aa","bb","cc"}; List<String> sList=Arrays.asList(s) ...
- 【Tech】CAS RESTful API使用笔记
在被maven,cas,tomcat各种贱人就是矫情的虐了好几天之后,终于跑通了demo,哈哈哈哈哈哈哈~ 在这里详细记录一下,给和我一样连maven都不会的小白一点福利,同时欢迎大神指正. 首先上最 ...
- 纯CSS3动画按钮效果
在线演示 本地下载
- MySQL索引操作命令详解
创建索引: MySql创建索引的语法如下: CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name [USING index_type] ON table_ ...
- mongodb 中 Aggregation 的管道和分片集合( Pipeline and Sharded Collections)
mongodb 中的aggretion 中,如果管道中存在一个与之相匹配的shard key ,那么这个管道只运行在与之相匹配的shard 中,在以前(3.2),pipeline 被分流,最后又由pr ...
- POJ 3159 最短路 SPFA
#include<iostream> using namespace std; const int nMax = 30005; const int mMax = 150005; const ...
- mysql错误总结-ERROR 1067 (42000): Invalid default value for TIMESTAMP
1. ERROR 1067 (42000): Invalid default value for 'FAILD_TIME' (对TIMESTAMP 类型的子段如果不设置缺省值或没有标志not n ...