Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-26-2024, 08:17 PM
|
#1
|
Member
Registered: Jul 2009
Distribution: Debian, Ubuntu, Puppy, Mint
Posts: 726
Rep:
|
Faster way to uninstall apps
I am running Mint Debian edition, and I am testing different applications, for some reason the software manage starts very slow takes around half minute, so that it is quite trouble even to uninstall app. I wonder if there's a faster way to do it, like on Android I can click on the app icon to quick start the setting menu and uninstall it, there's no need to go to the system setting to find the app to uninstall, any comment ?
|
|
|
01-26-2024, 08:32 PM
|
#2
|
LQ Guru
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,827
|
You could use the command line, either apt or apt-get. It is always faster (as long as you know the commands).
See their respective man pages for HOWTO.
|
|
|
01-26-2024, 11:25 PM
|
#3
|
Member
Registered: Jul 2009
Distribution: Debian, Ubuntu, Puppy, Mint
Posts: 726
Original Poster
Rep:
|
Quote:
Originally Posted by frankbell
You could use the command line, either apt or apt-get. It is always faster (as long as you know the commands).
See their respective man pages for HOWTO.
|
Yes some times I do that, but I may not get the package name right
|
|
|
01-27-2024, 06:55 AM
|
#4
|
LQ Guru
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 11,295
|
You could do something simple like keep a list of packages you install so you get the names right or just use the already exisiting methods to get a list of install packages on a Debian system, link below.
https://linuxize.com/post/how-to-lis...ges-on-debian/
|
|
|
01-27-2024, 08:57 AM
|
#5
|
Senior Member
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,915
|
If you do not want to use apt try Synaptic it loads and runs much faster than Software.
|
|
1 members found this post helpful.
|
01-27-2024, 01:16 PM
|
#6
|
Member
Registered: Dec 2020
Posts: 179
Rep: 
|
Quote:
Originally Posted by joboy
Yes some times I do that, but I may not get the package name right
|
Use generic, for example Thunderbird:
sudo apt purge thunder*
verify the packages to be removed before hitting ‘y’.
|
|
|
02-08-2024, 04:50 AM
|
#7
|
LQ Newbie
Registered: Jan 2024
Posts: 8
Rep:
|
Quote:
Originally Posted by joboy
I am running Mint Debian edition, and I am testing different applications, for some reason the software manage starts very slow takes around half minute, so that it is quite trouble even to uninstall app. I wonder if there's a faster way to do it, like on Android I can click on the app icon to quick start the setting menu and uninstall it, there's no need to go to the system setting to find the app to uninstall, any comment ?
|
Yes, sometimes it is frustrating software stats slow. Have you tried using apt command. Try use the apt command:
Code:
sudo apt remove <package_name>
Now you will have to just replace <package_name> with the actual name of the application you want to remove.
Just take back up your important data, before you make any changes to your system.
|
|
|
02-08-2024, 05:47 AM
|
#8
|
LQ Guru
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 8,206
|
Quote:
Originally Posted by joboy
Yes some times I do that, but I may not get the package name right
|
Apt will never delete anything without repeating the package name(s) back to you and asking for confirmation. If you see anything that does not look right to you, just say no.
But in any case you should never use the sudo prefix without visually checking the content of what you have typed before pressing Enter. This should become an unvarying habit. With great power comes great responsibility.
|
|
|
02-08-2024, 11:09 PM
|
#9
|
Member
Registered: Jul 2009
Distribution: Debian, Ubuntu, Puppy, Mint
Posts: 726
Original Poster
Rep:
|
Quote:
Originally Posted by craigevil
If you do not want to use apt try Synaptic it loads and runs much faster than Software.
|
Yes, I used both Synaptic and APT some times when the stock installer get stuck, there seems to be too much of eyes candies added to it, the previous versions ran much smoother.
|
|
|
02-11-2024, 03:43 PM
|
#10
|
LQ Newbie
Registered: Jan 2024
Distribution: Debian Linux / Red Hat Enterprise
Posts: 24
Rep:
|
IMHO apt is best option (as it in examples)
|
|
|
03-09-2024, 04:01 PM
|
#11
|
LQ Newbie
Registered: Mar 2024
Location: Spain
Distribution: Debian Testing/Stable
Posts: 2
Rep:
|
you may also should have a look at package manager nala, is sort of a fork of apt, a little bit easier with more colors on it.
|
|
1 members found this post helpful.
|
03-09-2024, 11:11 PM
|
#12
|
Member
Registered: Jul 2009
Distribution: Debian, Ubuntu, Puppy, Mint
Posts: 726
Original Poster
Rep:
|
Thanks, I'll give it a try.
|
|
|
04-18-2024, 10:30 PM
|
#13
|
Member
Registered: Sep 2023
Location: Washington State,Us
Distribution: Anfroid,Debian
Posts: 345
Rep:
|
You could also install the synapti package manager which is the package manager that has historically been included in both Debian and it's derivatives. You can install synaptic with the command below in the code blocks.
Code:
sudo apt install -y synaptic
The dash y flag just tells apt to automatically continue with out you having to intervene.
|
|
|
04-18-2024, 11:11 PM
|
#14
|
Member
Registered: Jul 2009
Distribution: Debian, Ubuntu, Puppy, Mint
Posts: 726
Original Poster
Rep:
|
Quote:
Originally Posted by friendlysalmon8827
You could also install the synapti package manager which is the package manager that has historically been included in both Debian and it's derivatives. You can install synaptic with the command below in the code blocks.
Code:
sudo apt install -y synaptic
The dash y flag just tells apt to automatically continue with out you having to intervene.
|
Yeah I know this tool and used it sometimes, and I used octopkg on FreeBSD as the stock package manager also very sluggish, not sure if that will work on Linux, will try.
|
|
|
All times are GMT -5. The time now is 05:17 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|