Ubuntu Uninstall Simplescreen Recorder

Ubuntu Uninstall Simplescreen Recorder 4,2/5 5174 reviews
  1. Ubuntu Uninstall Simplescreen Recorder Pc
  2. How To Uninstall Simple Screen Recorder

Seeing there are various ways to install on Ubuntu. What are the various ways to uninstall items?

Which ways always work? How can I be sure something was uninstalled?

Christopher Kyle Horton
10.6k13 gold badges72 silver badges144 bronze badges
myusuf3

Install Simple Screen Recorder 0.3.8 in Ubuntu 16.04, 16.10 November 10, 2016 Simple Screen Recorder, an open-source feature-rich screen recorder, sees a new release recently, almost one year after the last. 15 Best Linux Screen Recorder and How to Install those on Ubuntu. Screencasting is an important task for many people for many reasons including making a video tutorial, creating a presentation, compiling a how-to tutorial or do a software review or having the fun of streaming while playing pc games. Simple screen recorder is a very simple Ubuntu screencast recorder. The out of the box settings mean you can start using it without having to fiddle with it. It also has some pretty good customization options and features. You may pause and resume recording. It allows you to record the entire screen.

myusuf3
13.8k33 gold badges80 silver badges99 bronze badges

10 Answers

If the application has been installed via the package manager, all you have to do is run

That should always work. If the terminal isn't what stirs your tea, you could open System → Administration → Synaptic Package Manager, search for the package you want to remove, click on the checkbox next to it and select 'mark for removal'. Once you click 'Apply', the package should be removed. There's of course also the Ubuntu Software Center. It's pretty much the same thing as Synaptic. Just search for the application name and click the 'Remove' button.

Sometimes applications can be split up into multiple packages (for example, many games have a separate package for their music). To make sure that you uninstall all related packages AND configuration files, you can type

or -in Synaptic- 'mark for complete removal' instead of just 'mark for removal'.

As for applications that have been manually compiled and installed, there's not always a single way to remove them. The best thing to do is consult the README/INSTALL file that accompanied the source package - if one exists.

Zanna
52.2k14 gold badges145 silver badges246 bronze badges
Tommy BrunnTommy Brunn
6,9986 gold badges27 silver badges37 bronze badges
  • The software centre: find the package, click remove

  • Synaptic : the same

  • apt-get:

  • aptitude:

It's important to note that when you install things, they often depend on other packages. When you fire off apt-get remove <package> it doesn't remove the automatically-installed applications by default. This is often safer (if you're temporarily removing something like ubuntu-desktop) but this can mean you end up with a load of cruft.

aptitude will automatically remove things (as well as having a nice interactive command line interface)

You can also search for cruft in synaptic using the 'local or obsolete' filter under the status section.

Community
OliOli
227k92 gold badges580 silver badges777 bronze badges

Here's a rundown of the possible ways:

If the package has been installed via a package manager, you can remove it with one of the tools provided with this purpose:

  • dpkg --remove: the most basic command-line tool. Avoid.
  • apt-get remove or aptitude remove: these are the standard command-line tools. Aptitude is slightly preferred: it's a bit more sophisticated. E.g., it can keep a log file of all package operations.
  • synaptic: GUI tool accessible through the GUI menu under 'System/Administration'. Supports all features, a very nice program generally.
  • software center: even nicer GUI than synaptic. This is a better, updated version of the old 'Add/Remove Programs'

All these get the job done. You can start with the most user-friendly (Software Center) and continue to aptitude, if you need certain features or install or remove programs very frequently.

Note that these operations remove the bulk of the program while sometimes leaving 'configuration files' in locations such aus /etc/apache2. Most software doesn't have configuration files there; some server software ('daemons') do. In all but a few cases, keeping these configuration files will do no harm. If you want to remove everything, including configuration files, then you can use the 'purge' operation. For aptitude, the command line is 'aptitude purge.' (Tommy's explication above of 'purge' is not accurate. The 'remove' operation, just like 'purge', deletes all dependencies that were pulled in with the original program.)

If the program tells you the package has been removed, you can be sure that the files are gone. Sometimes packages installed as a matter of dependency are not removed immediately. They will be eventually deleted, at a subsequent run.

As to software installed from other channels (typically compiled from source), you're mostly forced to remove the files installed manually. They are often located somewhere in /usr/local. Some software provides shortcuts such as 'make uninstall'. Don't count on it, though. More often than not, the cleanest solution is to use the version provided through Ubuntu's repositories, which can be uninstalled cleanly.

loevborgloevborg
5,7321 gold badge20 silver badges23 bronze badges

To find the package you want to remove, use

Copy the package name and then use command

Then enter your password.

ZannaUbuntu Uninstall Simplescreen Recorder
52.2k14 gold badges145 silver badges246 bronze badges
Umang PokharnaUmang Pokharna

Ubuntu Software

The easiest way is to use Ubuntu Software (or Ubuntu Software Center in releases older than Ubuntu 16.04LTS). Open Ubuntu Software, click the Installed tab, select the app you wish to uninstall, and hit the Remove button.

Unity Dash

Ubuntu 12.10 brought Unity 6, which introduced the Preview feature. So, from Ubuntu 12.10 onwards, you can just right click on (almost) any app icon on Unity Dash and click uninstall.

Synaptic

Synaptic is an advanced package management tool and gives you more control than other GUI methods like Ubuntu Software, Unity Dash, etc. It was infact the default app manager before Ubuntu 10.04. To install Synaptic, click here:

Or run this in Terminal:

To uninstall apps through Synaptic, mark the packages to be removed and then hit the Apply button:

These are for the command line fans out there. They're pretty basic, but offers more advanced control and are lightweight.

apt

apt (newer and simplified apt-get) is the most commonly used command line tool for package management. Use the following command to uninstall any app:

Remember to replace <app_name> with the package name of app you wish to uninstall.

aptitude

aptitude isn't exactly a command line tool, as it has an interactive ncurses based GUI. However, the following command can be used:

snap

Ubuntu 16.04LTS and newer has support for snap packages, but can be installed on Ubuntu 14.04LTS too via updates. To uninstall a snap app, try:

and if that doesn't work:

Note that all the above methods will work only on apps installed normally, i.e through package management (Ubuntu Software, Synaptic, apt, snap, etc.) and not on softwares manually installed using some root scripts or by directly copying to home. Though the above methods look very different, all of them use the same APT or Snappy package manager backend underneath. There are many more methods for installing/uninstalling apps, but the ones involving APT or Snappy are the recommended and most popular methods.

HEXcubeHEXcube

When you purge, aptitude removes the package as well as the dependencies that were installed along with it.

jokerdino
33.2k21 gold badges122 silver badges188 bronze badges
sagarchalisesagarchalise
18.6k11 gold badges60 silver badges75 bronze badges

What are the various ways to uninstall items or packages?

command-line tools,

  • aptitude

    By default aptitude was not installed on your Ubuntu system.So run this command(sudo apt-get install aptitude) to install it.

    To uninstall a package through aptitude,run (sudo aptitude purge package)

    Jan 05, 2014  For Everything Fallout: New Vegas. Feel free to discuss any aspect of the game you want. Best race mods? Submitted 5 years ago by DZ302. For example in Skyrim using 1 race mod I made these two characters which look nothing like the vanilla presets. Character 1 and Character 2. Just looking for something similar in FNV, any of the. Downloaded mods come in.zip files, so use something like WinRAR to extract the mod files into your new ‘Fallout New Vegas mods’ folder. In Fallout Mod Manager, open the ‘Package Manager’ using the button to the right hand side of the window. The new window will have a button labelled ‘Add FOMod’. Feb 21, 2019  I played through Fallout:New Vegas once before,with minimal mods,just some bugfixes. I'd like to play it again,and improve the. Jump to content. Best mods for Fallout New Vegas in 2019? New Vegas (self.FalloutMods). But I would highly recommend checking out the mod Fallout: New California if you want to check out a really cool game in. May 23, 2018  Despite being released nearly eight years ago, Fallout: New Vegas still has a thriving modding community, with popular mods being updated and new mods being released. With May 2018 nearly over, we. Game: Fallout New Vegas. When logged in, you can choose up to 8 games that will be displayed as favourites in this menu. Empty favourite. Empty favourite. Empty favourite. This mod contains adult content. You can turn adult content on in your preference, if you wish. Like us on Facebook; Follow us on Twitter. Fallout new vegas best race mods

  • apt-get

  • dpkg

GUI tools,

  • Software-center

  • Synaptic package manager

Which ways always work?

All the above mentioned ways will work for uninstalling a package.

How can I be sure something was uninstalled?

You can check if a package was successfully uninstalled or not by running apt-cache policy package command,

Example:

In the above,while running apt-cache policy on vlc pacakage shows the Installed field as,

But on running apt-cache policy chromium-browser,the installed field shows none.Which means the package was not installed.

Avinash RajAvinash Raj
54k43 gold badges175 silver badges224 bronze badges

In certain cases, there are some dependencies that are left even after issuing the commands which the other answers have stated. Like, in this scenario, the OP had installed CCSM (Compiz Configuration Setting Manager) but removing only CCSM does not remove the entire dependencies that were required while installing it and leaves a number of packages which are no longer used like compiz-core, compiz-gnome, compiz-plugins, compiz-plugins-default, libcompizconfig0, python-compizconfig etc.
Using sudo apt-get autoremove or sudo aptitude autoremove removes all such unused dependencies in all such cases.

EDIT: Mine was an extension to an existing answer by Oli.

Community
Ankur KumarAnkur Kumar

I have tried this and it works fine on terminal!!

For Package name you can enter the initial letter of package or software, etc and press Tab key.

George Udosen

Ubuntu Uninstall Simplescreen Recorder Pc

22.9k10 gold badges52 silver badges78 bronze badges
Jishan MullaJishan Mulla

How To Uninstall Simple Screen Recorder

For custom installed software (e.g. ./install.sh), you can look for an ./uninstall.sh. Or you can try running ./install.sh again, it may give you an uninstall option.

wisbuckywisbucky

Not the answer you're looking for? Browse other questions tagged uninstall or ask your own question.