What is the difference between Recommended and Suggested packages (Ubuntu)
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
add a comment |
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
See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
– Franklin Yu
Jan 16 '17 at 4:37
add a comment |
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
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
ubuntu package-management aptitude
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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.
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 theaptitude install PKGNAME
command line to tell it to install suggested packages.
– Colin D Bennett
Jun 30 '14 at 18:38
add a comment |
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
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
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%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
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.
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 theaptitude install PKGNAME
command line to tell it to install suggested packages.
– Colin D Bennett
Jun 30 '14 at 18:38
add a comment |
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.
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 theaptitude install PKGNAME
command line to tell it to install suggested packages.
– Colin D Bennett
Jun 30 '14 at 18:38
add a comment |
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.
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.
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 theaptitude install PKGNAME
command line to tell it to install suggested packages.
– Colin D Bennett
Jun 30 '14 at 18:38
add a comment |
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 theaptitude 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
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
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.
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.
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%2f70031%2fwhat-is-the-difference-between-recommended-and-suggested-packages-ubuntu%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
See also Ask Ubuntu: In 'apt-cache depends' output, what is the meaning of Suggests, Recommends, |, <>?.
– Franklin Yu
Jan 16 '17 at 4:37