How to uninstall a program that was not installed using the package manager on Linux Mint?
So, I installed Canto Atom/RSS reader using the source from the official website, but it was throwing me errors so I installed it using apt-get
(this worked).
Now, I want to uninstall the original but I dont know how, as there is no make file so I cannot do make uninstall
, there's only setup.py
and it only has options to build
or install
. How do I remove it from my system?
I'm running Linux Mint 14 64-bit, btw.
python linux-mint uninstall apt-get source-code
add a comment |
So, I installed Canto Atom/RSS reader using the source from the official website, but it was throwing me errors so I installed it using apt-get
(this worked).
Now, I want to uninstall the original but I dont know how, as there is no make file so I cannot do make uninstall
, there's only setup.py
and it only has options to build
or install
. How do I remove it from my system?
I'm running Linux Mint 14 64-bit, btw.
python linux-mint uninstall apt-get source-code
add a comment |
So, I installed Canto Atom/RSS reader using the source from the official website, but it was throwing me errors so I installed it using apt-get
(this worked).
Now, I want to uninstall the original but I dont know how, as there is no make file so I cannot do make uninstall
, there's only setup.py
and it only has options to build
or install
. How do I remove it from my system?
I'm running Linux Mint 14 64-bit, btw.
python linux-mint uninstall apt-get source-code
So, I installed Canto Atom/RSS reader using the source from the official website, but it was throwing me errors so I installed it using apt-get
(this worked).
Now, I want to uninstall the original but I dont know how, as there is no make file so I cannot do make uninstall
, there's only setup.py
and it only has options to build
or install
. How do I remove it from my system?
I'm running Linux Mint 14 64-bit, btw.
python linux-mint uninstall apt-get source-code
python linux-mint uninstall apt-get source-code
edited Jan 26 at 0:42
JakeGould
32k1098140
32k1098140
asked Feb 5 '13 at 1:19
b-vigilanTb-vigilanT
8418
8418
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I know this is an old question, but the solution is something I was looking for at one point in the past for ImageMagick I installed from source on Ubuntu, so I will share what I learned, from my experience.
The key: Build your own .deb
package as a part of the install process using checkinstall
. As the official Ubuntu checkinstall
page explains:
CheckInstall keeps track of all files installed by a "make install" or equivalent, creates a Slackware, RPM, or Debian package with those files, and adds it to the installed packages database, allowing for easy package removal or distribution.
So knowing that, let’s install checkinstall
like this:
sudo apt-get install build-essential checkinstall
Note I am adding build-essential
to the mix to ensure your compiling environment is solid.
Now, run this command to install all of the dependencies—libraries and such—needed by Canto:
sudo apt-get build-dep canto
Once that is done, download the Canto source code of the exact version you want to remove and then build the binary from the source by running ./configure
like this:
./configure
But instead of the next typical steps of make
and sudo make install
run this command instead:
sudo checkinstall
That will build the .deb
package and install Canto again. Don’t panic! When that install is done, look at the final output and it should say something like:
You can remove it from your system anytime using:
sudo dpkg -r canto-1.2.3
And there you go! You can remove Canto! And this works for most any source code compiled on a Debian setup such as Linux Mint.
If this can’t help the original post 6+ years later, I hope this helps someone else who comes across this!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f546685%2fhow-to-uninstall-a-program-that-was-not-installed-using-the-package-manager-on-l%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I know this is an old question, but the solution is something I was looking for at one point in the past for ImageMagick I installed from source on Ubuntu, so I will share what I learned, from my experience.
The key: Build your own .deb
package as a part of the install process using checkinstall
. As the official Ubuntu checkinstall
page explains:
CheckInstall keeps track of all files installed by a "make install" or equivalent, creates a Slackware, RPM, or Debian package with those files, and adds it to the installed packages database, allowing for easy package removal or distribution.
So knowing that, let’s install checkinstall
like this:
sudo apt-get install build-essential checkinstall
Note I am adding build-essential
to the mix to ensure your compiling environment is solid.
Now, run this command to install all of the dependencies—libraries and such—needed by Canto:
sudo apt-get build-dep canto
Once that is done, download the Canto source code of the exact version you want to remove and then build the binary from the source by running ./configure
like this:
./configure
But instead of the next typical steps of make
and sudo make install
run this command instead:
sudo checkinstall
That will build the .deb
package and install Canto again. Don’t panic! When that install is done, look at the final output and it should say something like:
You can remove it from your system anytime using:
sudo dpkg -r canto-1.2.3
And there you go! You can remove Canto! And this works for most any source code compiled on a Debian setup such as Linux Mint.
If this can’t help the original post 6+ years later, I hope this helps someone else who comes across this!
add a comment |
I know this is an old question, but the solution is something I was looking for at one point in the past for ImageMagick I installed from source on Ubuntu, so I will share what I learned, from my experience.
The key: Build your own .deb
package as a part of the install process using checkinstall
. As the official Ubuntu checkinstall
page explains:
CheckInstall keeps track of all files installed by a "make install" or equivalent, creates a Slackware, RPM, or Debian package with those files, and adds it to the installed packages database, allowing for easy package removal or distribution.
So knowing that, let’s install checkinstall
like this:
sudo apt-get install build-essential checkinstall
Note I am adding build-essential
to the mix to ensure your compiling environment is solid.
Now, run this command to install all of the dependencies—libraries and such—needed by Canto:
sudo apt-get build-dep canto
Once that is done, download the Canto source code of the exact version you want to remove and then build the binary from the source by running ./configure
like this:
./configure
But instead of the next typical steps of make
and sudo make install
run this command instead:
sudo checkinstall
That will build the .deb
package and install Canto again. Don’t panic! When that install is done, look at the final output and it should say something like:
You can remove it from your system anytime using:
sudo dpkg -r canto-1.2.3
And there you go! You can remove Canto! And this works for most any source code compiled on a Debian setup such as Linux Mint.
If this can’t help the original post 6+ years later, I hope this helps someone else who comes across this!
add a comment |
I know this is an old question, but the solution is something I was looking for at one point in the past for ImageMagick I installed from source on Ubuntu, so I will share what I learned, from my experience.
The key: Build your own .deb
package as a part of the install process using checkinstall
. As the official Ubuntu checkinstall
page explains:
CheckInstall keeps track of all files installed by a "make install" or equivalent, creates a Slackware, RPM, or Debian package with those files, and adds it to the installed packages database, allowing for easy package removal or distribution.
So knowing that, let’s install checkinstall
like this:
sudo apt-get install build-essential checkinstall
Note I am adding build-essential
to the mix to ensure your compiling environment is solid.
Now, run this command to install all of the dependencies—libraries and such—needed by Canto:
sudo apt-get build-dep canto
Once that is done, download the Canto source code of the exact version you want to remove and then build the binary from the source by running ./configure
like this:
./configure
But instead of the next typical steps of make
and sudo make install
run this command instead:
sudo checkinstall
That will build the .deb
package and install Canto again. Don’t panic! When that install is done, look at the final output and it should say something like:
You can remove it from your system anytime using:
sudo dpkg -r canto-1.2.3
And there you go! You can remove Canto! And this works for most any source code compiled on a Debian setup such as Linux Mint.
If this can’t help the original post 6+ years later, I hope this helps someone else who comes across this!
I know this is an old question, but the solution is something I was looking for at one point in the past for ImageMagick I installed from source on Ubuntu, so I will share what I learned, from my experience.
The key: Build your own .deb
package as a part of the install process using checkinstall
. As the official Ubuntu checkinstall
page explains:
CheckInstall keeps track of all files installed by a "make install" or equivalent, creates a Slackware, RPM, or Debian package with those files, and adds it to the installed packages database, allowing for easy package removal or distribution.
So knowing that, let’s install checkinstall
like this:
sudo apt-get install build-essential checkinstall
Note I am adding build-essential
to the mix to ensure your compiling environment is solid.
Now, run this command to install all of the dependencies—libraries and such—needed by Canto:
sudo apt-get build-dep canto
Once that is done, download the Canto source code of the exact version you want to remove and then build the binary from the source by running ./configure
like this:
./configure
But instead of the next typical steps of make
and sudo make install
run this command instead:
sudo checkinstall
That will build the .deb
package and install Canto again. Don’t panic! When that install is done, look at the final output and it should say something like:
You can remove it from your system anytime using:
sudo dpkg -r canto-1.2.3
And there you go! You can remove Canto! And this works for most any source code compiled on a Debian setup such as Linux Mint.
If this can’t help the original post 6+ years later, I hope this helps someone else who comes across this!
answered Jan 26 at 0:41
JakeGouldJakeGould
32k1098140
32k1098140
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f546685%2fhow-to-uninstall-a-program-that-was-not-installed-using-the-package-manager-on-l%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown