Download, install and reboot computer at night if neededHow to figure out what is performing scheduled server reboots?How to continue a script after it reboots the machine?How can I automatically silence my computer at night?Download updates from peer computer over LANhow to interrupt system reboot?New Ubuntu install, now reboot startup screen shows ethernet controller for 1 minuteIs /var/run/reboot-required a reliable indicator of a needed reboot?Shutting down computer for night?Can I save the working status of Ubuntu before reboot, and recover it after reboot?Can I reboot Ubuntu automatically if everything important is saved?
Are white and non-white police officers equally likely to kill black suspects?
XeLaTeX and pdfLaTeX ignore hyphenation
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
What are these boxed doors outside store fronts in New York?
Why is an old chain unsafe?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
How is the relation "the smallest element is the same" reflexive?
Do airline pilots ever risk not hearing communication directed to them specifically, from traffic controllers?
How to use Pandas to get the count of every combination inclusive
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Does the radius of the Spirit Guardians spell depend on the size of the caster?
Chess with symmetric move-square
How does one intimidate enemies without having the capacity for violence?
Why does apt-get install python3 with a trailing hyphen remove a lot of packages?
Why CLRS example on residual networks does not follows its formula?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
What does "enim et" mean?
Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?
If Manufacturer spice model and Datasheet give different values which should I use?
Is Social Media Science Fiction?
Why was the small council so happy for Tyrion to become the Master of Coin?
Can I interfere when another PC is about to be attacked?
Can a German sentence have two subjects?
Download, install and reboot computer at night if needed
How to figure out what is performing scheduled server reboots?How to continue a script after it reboots the machine?How can I automatically silence my computer at night?Download updates from peer computer over LANhow to interrupt system reboot?New Ubuntu install, now reboot startup screen shows ethernet controller for 1 minuteIs /var/run/reboot-required a reliable indicator of a needed reboot?Shutting down computer for night?Can I save the working status of Ubuntu before reboot, and recover it after reboot?Can I reboot Ubuntu automatically if everything important is saved?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How can I write a script in Ubuntu such that it download updates at night when I sleep and reboots the computer if it needs a reboot?
ubuntu scripting upgrade reboot
New contributor
add a comment |
How can I write a script in Ubuntu such that it download updates at night when I sleep and reboots the computer if it needs a reboot?
ubuntu scripting upgrade reboot
New contributor
add a comment |
How can I write a script in Ubuntu such that it download updates at night when I sleep and reboots the computer if it needs a reboot?
ubuntu scripting upgrade reboot
New contributor
How can I write a script in Ubuntu such that it download updates at night when I sleep and reboots the computer if it needs a reboot?
ubuntu scripting upgrade reboot
ubuntu scripting upgrade reboot
New contributor
New contributor
edited 10 hours ago
Stephen Kitt
180k25409488
180k25409488
New contributor
asked 11 hours ago
ubuntunoviceubuntunovice
332
332
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can do this by installing the unattended-upgrades
package; see its documentation for details of its configuration.
sudo apt install unattended-upgrades
will install it for you.
Installing it should be sufficient to enable it. To allow it to reboot when necessary, you’ll have to add a configuration file, e.g. /etc/apt/apt.conf.d/52unattended-upgrades-local
, containing
Unattended-Upgrade::Automatic-Reboot "yes";
By default, on Ubuntu, it will install any upgrade from the main repositories, whether it’s security-related or not. You can configure more repositories if necessary by overriding the Unattended-Upgrade::Allowed-Origins
configuration key.
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS'syum-cron
)?
– Ned64
10 hours ago
4
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks inapt
itself.
– Stephen Kitt
10 hours ago
What do you suppose this package does if the file/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.
– Seamus
9 hours ago
1
@Seamus are there Debian or Ubuntu derivatives wherereboot-required
isn’t generated?
– Stephen Kitt
9 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
|
show 4 more comments
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
);
);
ubuntunovice 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%2f511094%2fdownload-install-and-reboot-computer-at-night-if-needed%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
You can do this by installing the unattended-upgrades
package; see its documentation for details of its configuration.
sudo apt install unattended-upgrades
will install it for you.
Installing it should be sufficient to enable it. To allow it to reboot when necessary, you’ll have to add a configuration file, e.g. /etc/apt/apt.conf.d/52unattended-upgrades-local
, containing
Unattended-Upgrade::Automatic-Reboot "yes";
By default, on Ubuntu, it will install any upgrade from the main repositories, whether it’s security-related or not. You can configure more repositories if necessary by overriding the Unattended-Upgrade::Allowed-Origins
configuration key.
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS'syum-cron
)?
– Ned64
10 hours ago
4
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks inapt
itself.
– Stephen Kitt
10 hours ago
What do you suppose this package does if the file/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.
– Seamus
9 hours ago
1
@Seamus are there Debian or Ubuntu derivatives wherereboot-required
isn’t generated?
– Stephen Kitt
9 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
|
show 4 more comments
You can do this by installing the unattended-upgrades
package; see its documentation for details of its configuration.
sudo apt install unattended-upgrades
will install it for you.
Installing it should be sufficient to enable it. To allow it to reboot when necessary, you’ll have to add a configuration file, e.g. /etc/apt/apt.conf.d/52unattended-upgrades-local
, containing
Unattended-Upgrade::Automatic-Reboot "yes";
By default, on Ubuntu, it will install any upgrade from the main repositories, whether it’s security-related or not. You can configure more repositories if necessary by overriding the Unattended-Upgrade::Allowed-Origins
configuration key.
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS'syum-cron
)?
– Ned64
10 hours ago
4
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks inapt
itself.
– Stephen Kitt
10 hours ago
What do you suppose this package does if the file/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.
– Seamus
9 hours ago
1
@Seamus are there Debian or Ubuntu derivatives wherereboot-required
isn’t generated?
– Stephen Kitt
9 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
|
show 4 more comments
You can do this by installing the unattended-upgrades
package; see its documentation for details of its configuration.
sudo apt install unattended-upgrades
will install it for you.
Installing it should be sufficient to enable it. To allow it to reboot when necessary, you’ll have to add a configuration file, e.g. /etc/apt/apt.conf.d/52unattended-upgrades-local
, containing
Unattended-Upgrade::Automatic-Reboot "yes";
By default, on Ubuntu, it will install any upgrade from the main repositories, whether it’s security-related or not. You can configure more repositories if necessary by overriding the Unattended-Upgrade::Allowed-Origins
configuration key.
You can do this by installing the unattended-upgrades
package; see its documentation for details of its configuration.
sudo apt install unattended-upgrades
will install it for you.
Installing it should be sufficient to enable it. To allow it to reboot when necessary, you’ll have to add a configuration file, e.g. /etc/apt/apt.conf.d/52unattended-upgrades-local
, containing
Unattended-Upgrade::Automatic-Reboot "yes";
By default, on Ubuntu, it will install any upgrade from the main repositories, whether it’s security-related or not. You can configure more repositories if necessary by overriding the Unattended-Upgrade::Allowed-Origins
configuration key.
edited 10 hours ago
answered 11 hours ago
Stephen KittStephen Kitt
180k25409488
180k25409488
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS'syum-cron
)?
– Ned64
10 hours ago
4
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks inapt
itself.
– Stephen Kitt
10 hours ago
What do you suppose this package does if the file/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.
– Seamus
9 hours ago
1
@Seamus are there Debian or Ubuntu derivatives wherereboot-required
isn’t generated?
– Stephen Kitt
9 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
|
show 4 more comments
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS'syum-cron
)?
– Ned64
10 hours ago
4
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks inapt
itself.
– Stephen Kitt
10 hours ago
What do you suppose this package does if the file/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.
– Seamus
9 hours ago
1
@Seamus are there Debian or Ubuntu derivatives wherereboot-required
isn’t generated?
– Stephen Kitt
9 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS's
yum-cron
)?– Ned64
10 hours ago
How official is this software source? I would not recommend to any user to install something from another source than their OS's software repository. Perhaps Ubuntu has something built-in (like CentOS's
yum-cron
)?– Ned64
10 hours ago
4
4
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks in
apt
itself.– Stephen Kitt
10 hours ago
@Ned64 it’s available as a package in Debian and Ubuntu, and is written by a Ubuntu developer. It piggy-backs off hooks in
apt
itself.– Stephen Kitt
10 hours ago
What do you suppose this package does if the file
/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.– Seamus
9 hours ago
What do you suppose this package does if the file
/var/run/reboot-required
is never generated by the system? That is to say, some systems generate this file, others do not.– Seamus
9 hours ago
1
1
@Seamus are there Debian or Ubuntu derivatives where
reboot-required
isn’t generated?– Stephen Kitt
9 hours ago
@Seamus are there Debian or Ubuntu derivatives where
reboot-required
isn’t generated?– Stephen Kitt
9 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
The only one I'm certain of is Raspbian (Raspberry Pi's default OS). Just out of curiosity - Isn't Ubuntu an "offspring" of Debian?
– Seamus
8 hours ago
|
show 4 more comments
ubuntunovice is a new contributor. Be nice, and check out our Code of Conduct.
ubuntunovice is a new contributor. Be nice, and check out our Code of Conduct.
ubuntunovice is a new contributor. Be nice, and check out our Code of Conduct.
ubuntunovice 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%2f511094%2fdownload-install-and-reboot-computer-at-night-if-needed%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