APT - how to install recommended packages after installing with --no-install-recommends switch?












2














I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?










share|improve this question






















  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10
















2














I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?










share|improve this question






















  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10














2












2








2







I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?










share|improve this question













I installed a few packages with APT using apt-get. I used the --no-install-recommends switch with it to save some disk space.



Now I need to know: how do I install the recommended packages for the already installed programs?







command-line apt






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 22 '16 at 22:27









Eduardo Cola

4,45821031




4,45821031












  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10


















  • Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
    – Stefan Hamcke
    Jan 22 '16 at 22:48












  • Is there any way of doing it with a simple apt-get, though?
    – Eduardo Cola
    Jan 22 '16 at 22:51






  • 1




    you could run apt-get remove <package> then apt-get install <package>
    – Charles Green
    Jan 22 '16 at 22:57










  • I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
    – Stefan Hamcke
    Jan 22 '16 at 23:00










  • OK, thanks for the suggestions.
    – Eduardo Cola
    Jan 22 '16 at 23:10
















Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
– Stefan Hamcke
Jan 22 '16 at 22:48






Aptitude has a view in its graphical interface listing all packages which are recommended by any installed package. To reach it, install aptitude, then type aptitude in a terminal, and then press Ctrl+t or use the mouse to go to the menu bar.
– Stefan Hamcke
Jan 22 '16 at 22:48














Is there any way of doing it with a simple apt-get, though?
– Eduardo Cola
Jan 22 '16 at 22:51




Is there any way of doing it with a simple apt-get, though?
– Eduardo Cola
Jan 22 '16 at 22:51




1




1




you could run apt-get remove <package> then apt-get install <package>
– Charles Green
Jan 22 '16 at 22:57




you could run apt-get remove <package> then apt-get install <package>
– Charles Green
Jan 22 '16 at 22:57












I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
– Stefan Hamcke
Jan 22 '16 at 23:00




I'm using only aptitude, so I don't know how to do this with apt-get. If you there were only few packages you installed with this option, and if you know which ones, you could maybe just reinstall them. But that's just an idea...
– Stefan Hamcke
Jan 22 '16 at 23:00












OK, thanks for the suggestions.
– Eduardo Cola
Jan 22 '16 at 23:10




OK, thanks for the suggestions.
– Eduardo Cola
Jan 22 '16 at 23:10










2 Answers
2






active

oldest

votes


















5














You can run apt-cache show package_you_care_about | grep Recommends.



This will show you all the recommended packages for that particular package. You can then install all the packages there.



For example, with gedit:



apt-cache show gedit | grep Recommends
output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





share|improve this answer























  • Thanks! That's what I was looking for. Answered + upvote.
    – Eduardo Cola
    Jan 22 '16 at 23:10



















2














To find all packages with missing recommended packages:



aptitude search '~RBrecommends:~i'






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    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%2faskubuntu.com%2fquestions%2f724462%2fapt-how-to-install-recommended-packages-after-installing-with-no-install-rec%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    5














    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





    share|improve this answer























    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10
















    5














    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





    share|improve this answer























    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10














    5












    5








    5






    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp





    share|improve this answer














    You can run apt-cache show package_you_care_about | grep Recommends.



    This will show you all the recommended packages for that particular package. You can then install all the packages there.



    For example, with gedit:



    apt-cache show gedit | grep Recommends
    output: Recommends: gir1.2-gtksource-3.0, zenity, yelp
    sudo apt-get install gir1.2-gtksource-3.0 zenity yelp






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Mar 24 '16 at 15:16

























    answered Jan 22 '16 at 23:02









    Mitch

    3,1261531




    3,1261531












    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10


















    • Thanks! That's what I was looking for. Answered + upvote.
      – Eduardo Cola
      Jan 22 '16 at 23:10
















    Thanks! That's what I was looking for. Answered + upvote.
    – Eduardo Cola
    Jan 22 '16 at 23:10




    Thanks! That's what I was looking for. Answered + upvote.
    – Eduardo Cola
    Jan 22 '16 at 23:10













    2














    To find all packages with missing recommended packages:



    aptitude search '~RBrecommends:~i'






    share|improve this answer


























      2














      To find all packages with missing recommended packages:



      aptitude search '~RBrecommends:~i'






      share|improve this answer
























        2












        2








        2






        To find all packages with missing recommended packages:



        aptitude search '~RBrecommends:~i'






        share|improve this answer












        To find all packages with missing recommended packages:



        aptitude search '~RBrecommends:~i'







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 3 '18 at 3:43









        ernobe

        211




        211






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • 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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2faskubuntu.com%2fquestions%2f724462%2fapt-how-to-install-recommended-packages-after-installing-with-no-install-rec%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

            How to change which sound is reproduced for terminal bell?

            Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

            Can I use Tabulator js library in my java Spring + Thymeleaf project?