What is the difference between Recommended and Suggested packages (Ubuntu)












18














On Ubuntu when you install a package, there can be dependencies, recommendations and suggestions. For example: virtualbox-ose has adduser as dependency, libgl1 as recommendation and libpulse0 as suggestion.



What is the difference between recommendations and suggestions?



Recommendations are standard installed with apt. This can be prevented using the switch --no-install-recommends



Second question: How can you force to install suggestions with apt?










share|improve this question
























  • See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
    – Franklin Yu
    Jan 16 '17 at 4:37
















18














On Ubuntu when you install a package, there can be dependencies, recommendations and suggestions. For example: virtualbox-ose has adduser as dependency, libgl1 as recommendation and libpulse0 as suggestion.



What is the difference between recommendations and suggestions?



Recommendations are standard installed with apt. This can be prevented using the switch --no-install-recommends



Second question: How can you force to install suggestions with apt?










share|improve this question
























  • See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
    – Franklin Yu
    Jan 16 '17 at 4:37














18












18








18


6





On Ubuntu when you install a package, there can be dependencies, recommendations and suggestions. For example: virtualbox-ose has adduser as dependency, libgl1 as recommendation and libpulse0 as suggestion.



What is the difference between recommendations and suggestions?



Recommendations are standard installed with apt. This can be prevented using the switch --no-install-recommends



Second question: How can you force to install suggestions with apt?










share|improve this question















On Ubuntu when you install a package, there can be dependencies, recommendations and suggestions. For example: virtualbox-ose has adduser as dependency, libgl1 as recommendation and libpulse0 as suggestion.



What is the difference between recommendations and suggestions?



Recommendations are standard installed with apt. This can be prevented using the switch --no-install-recommends



Second question: How can you force to install suggestions with apt?







ubuntu package-management aptitude






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '09 at 8:49

























asked Nov 13 '09 at 12:02









Peter Smit

4,916103542




4,916103542












  • See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
    – Franklin Yu
    Jan 16 '17 at 4:37


















  • See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
    – Franklin Yu
    Jan 16 '17 at 4:37
















See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
– Franklin Yu
Jan 16 '17 at 4:37




See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
– Franklin Yu
Jan 16 '17 at 4:37










2 Answers
2






active

oldest

votes


















14














See Debian's FAQ about this. Ubuntu is based on Debian, so it should be the same:




  • Package A recommends Package B, if the package maintainer judges that most users would not want A without also having the functionality provided by B.

  • Package A suggests Package B if B contains files that are related to (and usually enhance) the functionality of A.






share|improve this answer























  • Thanks! Is there a way (command-line switch) to automatically install suggested packages?
    – Peter Smit
    Nov 15 '09 at 13:16






  • 1




    @PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
    – Colin D Bennett
    Jun 30 '14 at 18:38



















0














You can avoid recommended packages from being included in an install in Synaptic via Settings, Preferences, General tab: Untick "Consider recommended packages as dependencies".



With apt-get, you can include the switch "--no-install-recommends".



Dependencies must be present to run the package. I can't tell you what specifically qualifies a package as a recommended one other than what the adjective suggests.



A CLI method of displaying dependencies and suggests is: apt-cache show
Example: apt-cache show gimp






share|improve this answer

















  • 3




    What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
    – Peter Smit
    Nov 13 '09 at 17:00











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%2f70031%2fwhat-is-the-difference-between-recommended-and-suggested-packages-ubuntu%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









14














See Debian's FAQ about this. Ubuntu is based on Debian, so it should be the same:




  • Package A recommends Package B, if the package maintainer judges that most users would not want A without also having the functionality provided by B.

  • Package A suggests Package B if B contains files that are related to (and usually enhance) the functionality of A.






share|improve this answer























  • Thanks! Is there a way (command-line switch) to automatically install suggested packages?
    – Peter Smit
    Nov 15 '09 at 13:16






  • 1




    @PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
    – Colin D Bennett
    Jun 30 '14 at 18:38
















14














See Debian's FAQ about this. Ubuntu is based on Debian, so it should be the same:




  • Package A recommends Package B, if the package maintainer judges that most users would not want A without also having the functionality provided by B.

  • Package A suggests Package B if B contains files that are related to (and usually enhance) the functionality of A.






share|improve this answer























  • Thanks! Is there a way (command-line switch) to automatically install suggested packages?
    – Peter Smit
    Nov 15 '09 at 13:16






  • 1




    @PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
    – Colin D Bennett
    Jun 30 '14 at 18:38














14












14








14






See Debian's FAQ about this. Ubuntu is based on Debian, so it should be the same:




  • Package A recommends Package B, if the package maintainer judges that most users would not want A without also having the functionality provided by B.

  • Package A suggests Package B if B contains files that are related to (and usually enhance) the functionality of A.






share|improve this answer














See Debian's FAQ about this. Ubuntu is based on Debian, so it should be the same:




  • Package A recommends Package B, if the package maintainer judges that most users would not want A without also having the functionality provided by B.

  • Package A suggests Package B if B contains files that are related to (and usually enhance) the functionality of A.







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 5 '17 at 16:26









Vringar

35




35










answered Nov 14 '09 at 18:05









Simen

38926




38926












  • Thanks! Is there a way (command-line switch) to automatically install suggested packages?
    – Peter Smit
    Nov 15 '09 at 13:16






  • 1




    @PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
    – Colin D Bennett
    Jun 30 '14 at 18:38


















  • Thanks! Is there a way (command-line switch) to automatically install suggested packages?
    – Peter Smit
    Nov 15 '09 at 13:16






  • 1




    @PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
    – Colin D Bennett
    Jun 30 '14 at 18:38
















Thanks! Is there a way (command-line switch) to automatically install suggested packages?
– Peter Smit
Nov 15 '09 at 13:16




Thanks! Is there a way (command-line switch) to automatically install suggested packages?
– Peter Smit
Nov 15 '09 at 13:16




1




1




@PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
– Colin D Bennett
Jun 30 '14 at 18:38




@PeterSmit you can add the option -o APT::Install-Suggests=true to the aptitude install PKGNAME command line to tell it to install suggested packages.
– Colin D Bennett
Jun 30 '14 at 18:38













0














You can avoid recommended packages from being included in an install in Synaptic via Settings, Preferences, General tab: Untick "Consider recommended packages as dependencies".



With apt-get, you can include the switch "--no-install-recommends".



Dependencies must be present to run the package. I can't tell you what specifically qualifies a package as a recommended one other than what the adjective suggests.



A CLI method of displaying dependencies and suggests is: apt-cache show
Example: apt-cache show gimp






share|improve this answer

















  • 3




    What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
    – Peter Smit
    Nov 13 '09 at 17:00
















0














You can avoid recommended packages from being included in an install in Synaptic via Settings, Preferences, General tab: Untick "Consider recommended packages as dependencies".



With apt-get, you can include the switch "--no-install-recommends".



Dependencies must be present to run the package. I can't tell you what specifically qualifies a package as a recommended one other than what the adjective suggests.



A CLI method of displaying dependencies and suggests is: apt-cache show
Example: apt-cache show gimp






share|improve this answer

















  • 3




    What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
    – Peter Smit
    Nov 13 '09 at 17:00














0












0








0






You can avoid recommended packages from being included in an install in Synaptic via Settings, Preferences, General tab: Untick "Consider recommended packages as dependencies".



With apt-get, you can include the switch "--no-install-recommends".



Dependencies must be present to run the package. I can't tell you what specifically qualifies a package as a recommended one other than what the adjective suggests.



A CLI method of displaying dependencies and suggests is: apt-cache show
Example: apt-cache show gimp






share|improve this answer












You can avoid recommended packages from being included in an install in Synaptic via Settings, Preferences, General tab: Untick "Consider recommended packages as dependencies".



With apt-get, you can include the switch "--no-install-recommends".



Dependencies must be present to run the package. I can't tell you what specifically qualifies a package as a recommended one other than what the adjective suggests.



A CLI method of displaying dependencies and suggests is: apt-cache show
Example: apt-cache show gimp







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 13 '09 at 13:31









admintech

6,71812241




6,71812241








  • 3




    What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
    – Peter Smit
    Nov 13 '09 at 17:00














  • 3




    What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
    – Peter Smit
    Nov 13 '09 at 17:00








3




3




What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
– Peter Smit
Nov 13 '09 at 17:00




What about the main question. What is the difference between recommendations and suggestions? You don't mention suggestions at all!
– Peter Smit
Nov 13 '09 at 17:00


















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.





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%2fsuperuser.com%2fquestions%2f70031%2fwhat-is-the-difference-between-recommended-and-suggested-packages-ubuntu%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

Probability when a professor distributes a quiz and homework assignment to a class of n students.

Aardman Animations

Are they similar matrix