apt (resilient)How to set default APT sourceapt-get update and package authenticationInstallation problem...
What would be the challenges to taking off and landing a typical passenger jet at FL300?
Would the Republic of Ireland and Northern Ireland be interested in reuniting?
Why doesn't 'd /= d' throw a division by zero exception?
Numbers Decrease while Letters Increase
Why did MS-DOS applications built using Turbo Pascal fail to start with a division by zero error on faster systems?
How many US airports have 4 or more parallel runways?
Why in most German places is the church the tallest building?
How to gently end involvement with an online community?
Heat reduction based on compression
essere/stare - location of a building
Position a tabular on the corner of a slide
GPU chip implementation on CPU - will it be faster?
Strange-looking FM transmitter circuit
What is the difference between Major and Minor Bug?
Does travel insurance for short flight delays exist?
I don't have the theoretical background in my PhD topic. I can't justify getting the degree
Do they have Supervillain(s)?
Who was president of the USA?
Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?
Was there ever a treaty between 2 entities with significantly different translations to the detriment of one party?
Why are non-collision-resistant hash functions considered insecure for signing self-generated information
Can a Rogue PC teach an NPC to perform Sneak Attack?
Why is there so little discussion / research on the philosophy of precision?
Non-visual Computers - thoughts?
apt (resilient)
How to set default APT sourceapt-get update and package authenticationInstallation problem with python-software-propertiesapt-get install gives 404 not found, but URL worksDoes “apt-get -s upgrade” or some other apt command have an option to list the repositories the packages will be downloaded from?How do I obtain the dependency fcitx-dbus?apt-get doesn't find phpldapadmin in Debian 9 (Stretch)How does apt-get work, in detail?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository
ubuntu apt software-installation
New contributor
add a comment |
I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository
ubuntu apt software-installation
New contributor
1
What if the missing package is a dependency for one you want to install?
– Jeff Schaller♦
yesterday
In my specific case this is not so relevant. And I will also notify the user!
– apolzek
yesterday
1
See superuser.com/questions/837662/…
– pLumo
yesterday
add a comment |
I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository
ubuntu apt software-installation
New contributor
I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository
ubuntu apt software-installation
ubuntu apt software-installation
New contributor
New contributor
edited yesterday
Jeff Schaller♦
49.2k11 gold badges72 silver badges163 bronze badges
49.2k11 gold badges72 silver badges163 bronze badges
New contributor
asked yesterday
apolzekapolzek
11 bronze badge
11 bronze badge
New contributor
New contributor
1
What if the missing package is a dependency for one you want to install?
– Jeff Schaller♦
yesterday
In my specific case this is not so relevant. And I will also notify the user!
– apolzek
yesterday
1
See superuser.com/questions/837662/…
– pLumo
yesterday
add a comment |
1
What if the missing package is a dependency for one you want to install?
– Jeff Schaller♦
yesterday
In my specific case this is not so relevant. And I will also notify the user!
– apolzek
yesterday
1
See superuser.com/questions/837662/…
– pLumo
yesterday
1
1
What if the missing package is a dependency for one you want to install?
– Jeff Schaller♦
yesterday
What if the missing package is a dependency for one you want to install?
– Jeff Schaller♦
yesterday
In my specific case this is not so relevant. And I will also notify the user!
– apolzek
yesterday
In my specific case this is not so relevant. And I will also notify the user!
– apolzek
yesterday
1
1
See superuser.com/questions/837662/…
– pLumo
yesterday
See superuser.com/questions/837662/…
– pLumo
yesterday
add a comment |
2 Answers
2
active
oldest
votes
apt
will not continue on errors.
As a workaround, you can install each item separately:
for i in package1 package2 package3; do
sudo apt-get install -y $i
done
add a comment |
xargs -n1 sudo apt install < list
xargs can be used to install a list of package one by one.
man xargs;
-n max-args, --max-args=max-args
Use at most max-args arguments per command line.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
apolzek is a new contributor. Be nice, and check out our Code of Conduct.
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%2funix.stackexchange.com%2fquestions%2f536847%2fapt-resilient%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
apt
will not continue on errors.
As a workaround, you can install each item separately:
for i in package1 package2 package3; do
sudo apt-get install -y $i
done
add a comment |
apt
will not continue on errors.
As a workaround, you can install each item separately:
for i in package1 package2 package3; do
sudo apt-get install -y $i
done
add a comment |
apt
will not continue on errors.
As a workaround, you can install each item separately:
for i in package1 package2 package3; do
sudo apt-get install -y $i
done
apt
will not continue on errors.
As a workaround, you can install each item separately:
for i in package1 package2 package3; do
sudo apt-get install -y $i
done
edited yesterday
answered yesterday
pLumopLumo
7,46815 silver badges34 bronze badges
7,46815 silver badges34 bronze badges
add a comment |
add a comment |
xargs -n1 sudo apt install < list
xargs can be used to install a list of package one by one.
man xargs;
-n max-args, --max-args=max-args
Use at most max-args arguments per command line.
add a comment |
xargs -n1 sudo apt install < list
xargs can be used to install a list of package one by one.
man xargs;
-n max-args, --max-args=max-args
Use at most max-args arguments per command line.
add a comment |
xargs -n1 sudo apt install < list
xargs can be used to install a list of package one by one.
man xargs;
-n max-args, --max-args=max-args
Use at most max-args arguments per command line.
xargs -n1 sudo apt install < list
xargs can be used to install a list of package one by one.
man xargs;
-n max-args, --max-args=max-args
Use at most max-args arguments per command line.
answered yesterday
GAD3RGAD3R
30.4k19 gold badges63 silver badges122 bronze badges
30.4k19 gold badges63 silver badges122 bronze badges
add a comment |
add a comment |
apolzek is a new contributor. Be nice, and check out our Code of Conduct.
apolzek is a new contributor. Be nice, and check out our Code of Conduct.
apolzek is a new contributor. Be nice, and check out our Code of Conduct.
apolzek is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f536847%2fapt-resilient%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
1
What if the missing package is a dependency for one you want to install?
– Jeff Schaller♦
yesterday
In my specific case this is not so relevant. And I will also notify the user!
– apolzek
yesterday
1
See superuser.com/questions/837662/…
– pLumo
yesterday