How to uninstall a program that was not installed using the package manager on Linux Mint?












2















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.










share|improve this question





























    2















    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.










    share|improve this question



























      2












      2








      2








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 26 at 0:42









      JakeGould

      32k1098140




      32k1098140










      asked Feb 5 '13 at 1:19









      b-vigilanTb-vigilanT

      8418




      8418






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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!






          share|improve this answer























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            1














            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!






            share|improve this answer




























              1














              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!






              share|improve this answer


























                1












                1








                1







                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!






                share|improve this answer













                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!







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 26 at 0:41









                JakeGouldJakeGould

                32k1098140




                32k1098140






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Plaza Victoria

                    In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                    How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...