Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
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.
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.
Hello everyone!
I'm just curious about uninstalling software that I've previously installed. I've read much about installing software from source, but I can't seem to find how to uninstall it later, if I don't need it for instance. Actually, I'm running Ubuntu, it has easy to use Synaptic Package manager, so I'm just curious to find out more about the Unix-like systems.
Can anyone point me to a web or other resource where I can find some more info on that?
Thanks!
Hello everyone!
I'm just curious about uninstalling software that I've previously installed. I've read much about installing software from source, but I can't seem to find how to uninstall it later, if I don't need it for instance. Actually, I'm running Ubuntu, it has easy to use Synaptic Package manager, so I'm just curious to find out more about the Unix-like systems.
Can anyone point me to a web or other resource where I can find some more info on that?
Thanks!
hi ..... i'm also a newbie .... "they" told me ... that linux - guys know what they do ... this is why it does not happen that there is useless software installed ... haha .. very funny !
here is what i did to remove softwar /gain free space .. as long as the system does not depend on one of those components it should work ...
find the "prgramms directory and "executable" with "whereis gnump3d" fe. then delete them .... also remove entries from /etc/init.d/*
but .... as with opensource sw .. they use lots of external librarys usw ... dontknow how to verify if everything unneeded is gone ....
If you can, use a package manager that automates these things, or if you insist on source packages (or non-package manager managed packages), follow one of these:
1) see if the package includes a removal script, uninstallation target for make or something equivalent and use that - some software comes with an uninstaller script as well as an installer script ("make install" vs. "make uninstall" and so on)
2) see what the installation script does (for example "install" target of make - at Makefile), then just follow the same steps from the end to the beginning, removing/undoing whatever the installer did
3) use some software to automate option 2); see above posts.
In the end in a Unix system everything is files, and removing software means removing the files included in that software thing and undoing any modifications that were possibly made when the software was "installed". That leaves a lot of options on how to remove "installed" software, some of which depend on the method that was used to install the software, so you just need to pick the easiest one or the one that suits you best. Typically it's better to think before doing, and that holds here too - if you thought about this before installing anything, you would have made sure you have easy means to undo the changes to the filesystem.
Thanks guys for the info! As I said I want just to know more about this just from curiosity. 1) see if the package includes a removal script, uninstallation target for make or something equivalent and use that - some software comes with an uninstaller script as well as an installer script ("make install" vs. "make uninstall" and so on)
2) see what the installation script does (for example "install" target of make - at Makefile), then just follow the same steps from the end to the beginning, removing/undoing whatever the installer did
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.