How do I pause/resume download and install from terminal?
I mostly use terminal for installation of programs (as does mostly everybody). However, at times (particularly when I have low battery and no charger wire OR more importantly, when installer file is too big, installation is incomplete and I need to power down my system) I would like to pause the installation (while it is in downloading state) so that I won't loose already downloaded files.
How do I do this?
installation command-line apt
add a comment |
I mostly use terminal for installation of programs (as does mostly everybody). However, at times (particularly when I have low battery and no charger wire OR more importantly, when installer file is too big, installation is incomplete and I need to power down my system) I would like to pause the installation (while it is in downloading state) so that I won't loose already downloaded files.
How do I do this?
installation command-line apt
Wouldn't it be simpler not to start a long installation when the battery is low? I thought "everybody" new about that.
– mikewhatever
Nov 19 '12 at 12:11
I start installation with considerable battery (mostly >90%). But I have a slow bandwidth connection and a power saving problem. I get max 25 kB/s on downloads (sometimes 30 kB/s at night). Also focus is on the second condition as that is more frequently occurring.
– VedVals
Nov 19 '12 at 12:48
add a comment |
I mostly use terminal for installation of programs (as does mostly everybody). However, at times (particularly when I have low battery and no charger wire OR more importantly, when installer file is too big, installation is incomplete and I need to power down my system) I would like to pause the installation (while it is in downloading state) so that I won't loose already downloaded files.
How do I do this?
installation command-line apt
I mostly use terminal for installation of programs (as does mostly everybody). However, at times (particularly when I have low battery and no charger wire OR more importantly, when installer file is too big, installation is incomplete and I need to power down my system) I would like to pause the installation (while it is in downloading state) so that I won't loose already downloaded files.
How do I do this?
installation command-line apt
installation command-line apt
edited Nov 19 '12 at 12:53
asked Nov 19 '12 at 11:56
VedVals
1,57662441
1,57662441
Wouldn't it be simpler not to start a long installation when the battery is low? I thought "everybody" new about that.
– mikewhatever
Nov 19 '12 at 12:11
I start installation with considerable battery (mostly >90%). But I have a slow bandwidth connection and a power saving problem. I get max 25 kB/s on downloads (sometimes 30 kB/s at night). Also focus is on the second condition as that is more frequently occurring.
– VedVals
Nov 19 '12 at 12:48
add a comment |
Wouldn't it be simpler not to start a long installation when the battery is low? I thought "everybody" new about that.
– mikewhatever
Nov 19 '12 at 12:11
I start installation with considerable battery (mostly >90%). But I have a slow bandwidth connection and a power saving problem. I get max 25 kB/s on downloads (sometimes 30 kB/s at night). Also focus is on the second condition as that is more frequently occurring.
– VedVals
Nov 19 '12 at 12:48
Wouldn't it be simpler not to start a long installation when the battery is low? I thought "everybody" new about that.
– mikewhatever
Nov 19 '12 at 12:11
Wouldn't it be simpler not to start a long installation when the battery is low? I thought "everybody" new about that.
– mikewhatever
Nov 19 '12 at 12:11
I start installation with considerable battery (mostly >90%). But I have a slow bandwidth connection and a power saving problem. I get max 25 kB/s on downloads (sometimes 30 kB/s at night). Also focus is on the second condition as that is more frequently occurring.
– VedVals
Nov 19 '12 at 12:48
I start installation with considerable battery (mostly >90%). But I have a slow bandwidth connection and a power saving problem. I get max 25 kB/s on downloads (sometimes 30 kB/s at night). Also focus is on the second condition as that is more frequently occurring.
– VedVals
Nov 19 '12 at 12:48
add a comment |
3 Answers
3
active
oldest
votes
Ctrl+c cancels it but next time start from where you left
Ctrl+z stops process but then you can't do another process as it remains locked to the first process
Using one of the above methods is generally better than just closing the terminal, but if you just close the terminal while it's downloading packages, it should start the download right where it stopped next time you run sudo apt-get upgrade
If you want to restart the download after using Ctrl+z:
- Check paused tasks by typing
jobs
in the terminal - To resume a process, type
fg
- If you have multiple tasks, then type
fg 1
,fg 2
, etc…
Make sure, however, that you never stop it while it's installing the downloaded packages, since this will result in a lock on apt-get, which will require a computer restart or reconfiguration of apt, and you'll have to start at the beginning of the installation.
So make sure to only "pause" (close) the terminal when it's downloading, not installing.
If you would like to start another apt-get process - after pausing the first process, run sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
; it won't look like it did anything, but you should be able to start another apt-get process.
To kill a command that you've paused with Ctrl+z, enter kill -9 %x
into the terminal, replacing x with the number that the paused process is (see jobs
). The process will remain in the list, but it will say "killed" after it instead of "stopped", indicating it is no longer active.
Sources : [ubuntu] How to pause download operation in terminal
Accidently pressed Ctrl-Z in a Linux terminal in Ubuntu Intrepid Ipex. What do I do now?
Starting, Stopping and Managing Jobs in the Ubuntu Terminal
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
@ved2254 Just usefg
, assuming you haven't started any other processes. I added it to the answer for consistency.
– DaimyoKirby
Nov 19 '12 at 13:45
I'm not on my home computer right now, so I'll test this when I get home, but typingfg
orfg 1
should "unpause" it.
– DaimyoKirby
Nov 19 '12 at 14:05
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
1
I added the instructions to the post -sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall withfg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.
– DaimyoKirby
Nov 22 '12 at 2:03
|
show 4 more comments
Find the answer on how I solved it here. or follow this
link https://superuser.com/a/1388933/979057 . I run grep VERSION /etc/os-release
VERSION="2019.1"
VERSION_ID="2019.1"
Linux psycho 4.18.0-kali3-amd64 #1 SMP Debian 4.18.20-2kali2 (2018-11-30) x86_64 GNU/Linux
New contributor
add a comment |
If you want to pause the downloaded files from terminal, I hope you have downloading something url. Just copy it first. and enter this lines in that terminal
wget -m -P [download-url]
It can pulse the downloading files. Where as you want to resume to download or even after net is disconnected, want to resume the file. Simply run this in terminal:
wget -c -m -P [brokern url]
or
wget --continue [broken url]
1
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
add a comment |
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
});
}
});
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%2faskubuntu.com%2fquestions%2f219242%2fhow-do-i-pause-resume-download-and-install-from-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ctrl+c cancels it but next time start from where you left
Ctrl+z stops process but then you can't do another process as it remains locked to the first process
Using one of the above methods is generally better than just closing the terminal, but if you just close the terminal while it's downloading packages, it should start the download right where it stopped next time you run sudo apt-get upgrade
If you want to restart the download after using Ctrl+z:
- Check paused tasks by typing
jobs
in the terminal - To resume a process, type
fg
- If you have multiple tasks, then type
fg 1
,fg 2
, etc…
Make sure, however, that you never stop it while it's installing the downloaded packages, since this will result in a lock on apt-get, which will require a computer restart or reconfiguration of apt, and you'll have to start at the beginning of the installation.
So make sure to only "pause" (close) the terminal when it's downloading, not installing.
If you would like to start another apt-get process - after pausing the first process, run sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
; it won't look like it did anything, but you should be able to start another apt-get process.
To kill a command that you've paused with Ctrl+z, enter kill -9 %x
into the terminal, replacing x with the number that the paused process is (see jobs
). The process will remain in the list, but it will say "killed" after it instead of "stopped", indicating it is no longer active.
Sources : [ubuntu] How to pause download operation in terminal
Accidently pressed Ctrl-Z in a Linux terminal in Ubuntu Intrepid Ipex. What do I do now?
Starting, Stopping and Managing Jobs in the Ubuntu Terminal
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
@ved2254 Just usefg
, assuming you haven't started any other processes. I added it to the answer for consistency.
– DaimyoKirby
Nov 19 '12 at 13:45
I'm not on my home computer right now, so I'll test this when I get home, but typingfg
orfg 1
should "unpause" it.
– DaimyoKirby
Nov 19 '12 at 14:05
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
1
I added the instructions to the post -sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall withfg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.
– DaimyoKirby
Nov 22 '12 at 2:03
|
show 4 more comments
Ctrl+c cancels it but next time start from where you left
Ctrl+z stops process but then you can't do another process as it remains locked to the first process
Using one of the above methods is generally better than just closing the terminal, but if you just close the terminal while it's downloading packages, it should start the download right where it stopped next time you run sudo apt-get upgrade
If you want to restart the download after using Ctrl+z:
- Check paused tasks by typing
jobs
in the terminal - To resume a process, type
fg
- If you have multiple tasks, then type
fg 1
,fg 2
, etc…
Make sure, however, that you never stop it while it's installing the downloaded packages, since this will result in a lock on apt-get, which will require a computer restart or reconfiguration of apt, and you'll have to start at the beginning of the installation.
So make sure to only "pause" (close) the terminal when it's downloading, not installing.
If you would like to start another apt-get process - after pausing the first process, run sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
; it won't look like it did anything, but you should be able to start another apt-get process.
To kill a command that you've paused with Ctrl+z, enter kill -9 %x
into the terminal, replacing x with the number that the paused process is (see jobs
). The process will remain in the list, but it will say "killed" after it instead of "stopped", indicating it is no longer active.
Sources : [ubuntu] How to pause download operation in terminal
Accidently pressed Ctrl-Z in a Linux terminal in Ubuntu Intrepid Ipex. What do I do now?
Starting, Stopping and Managing Jobs in the Ubuntu Terminal
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
@ved2254 Just usefg
, assuming you haven't started any other processes. I added it to the answer for consistency.
– DaimyoKirby
Nov 19 '12 at 13:45
I'm not on my home computer right now, so I'll test this when I get home, but typingfg
orfg 1
should "unpause" it.
– DaimyoKirby
Nov 19 '12 at 14:05
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
1
I added the instructions to the post -sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall withfg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.
– DaimyoKirby
Nov 22 '12 at 2:03
|
show 4 more comments
Ctrl+c cancels it but next time start from where you left
Ctrl+z stops process but then you can't do another process as it remains locked to the first process
Using one of the above methods is generally better than just closing the terminal, but if you just close the terminal while it's downloading packages, it should start the download right where it stopped next time you run sudo apt-get upgrade
If you want to restart the download after using Ctrl+z:
- Check paused tasks by typing
jobs
in the terminal - To resume a process, type
fg
- If you have multiple tasks, then type
fg 1
,fg 2
, etc…
Make sure, however, that you never stop it while it's installing the downloaded packages, since this will result in a lock on apt-get, which will require a computer restart or reconfiguration of apt, and you'll have to start at the beginning of the installation.
So make sure to only "pause" (close) the terminal when it's downloading, not installing.
If you would like to start another apt-get process - after pausing the first process, run sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
; it won't look like it did anything, but you should be able to start another apt-get process.
To kill a command that you've paused with Ctrl+z, enter kill -9 %x
into the terminal, replacing x with the number that the paused process is (see jobs
). The process will remain in the list, but it will say "killed" after it instead of "stopped", indicating it is no longer active.
Sources : [ubuntu] How to pause download operation in terminal
Accidently pressed Ctrl-Z in a Linux terminal in Ubuntu Intrepid Ipex. What do I do now?
Starting, Stopping and Managing Jobs in the Ubuntu Terminal
Ctrl+c cancels it but next time start from where you left
Ctrl+z stops process but then you can't do another process as it remains locked to the first process
Using one of the above methods is generally better than just closing the terminal, but if you just close the terminal while it's downloading packages, it should start the download right where it stopped next time you run sudo apt-get upgrade
If you want to restart the download after using Ctrl+z:
- Check paused tasks by typing
jobs
in the terminal - To resume a process, type
fg
- If you have multiple tasks, then type
fg 1
,fg 2
, etc…
Make sure, however, that you never stop it while it's installing the downloaded packages, since this will result in a lock on apt-get, which will require a computer restart or reconfiguration of apt, and you'll have to start at the beginning of the installation.
So make sure to only "pause" (close) the terminal when it's downloading, not installing.
If you would like to start another apt-get process - after pausing the first process, run sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
; it won't look like it did anything, but you should be able to start another apt-get process.
To kill a command that you've paused with Ctrl+z, enter kill -9 %x
into the terminal, replacing x with the number that the paused process is (see jobs
). The process will remain in the list, but it will say "killed" after it instead of "stopped", indicating it is no longer active.
Sources : [ubuntu] How to pause download operation in terminal
Accidently pressed Ctrl-Z in a Linux terminal in Ubuntu Intrepid Ipex. What do I do now?
Starting, Stopping and Managing Jobs in the Ubuntu Terminal
edited Nov 22 '12 at 2:16
answered Nov 19 '12 at 13:13
DaimyoKirby
2,67332247
2,67332247
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
@ved2254 Just usefg
, assuming you haven't started any other processes. I added it to the answer for consistency.
– DaimyoKirby
Nov 19 '12 at 13:45
I'm not on my home computer right now, so I'll test this when I get home, but typingfg
orfg 1
should "unpause" it.
– DaimyoKirby
Nov 19 '12 at 14:05
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
1
I added the instructions to the post -sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall withfg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.
– DaimyoKirby
Nov 22 '12 at 2:03
|
show 4 more comments
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
@ved2254 Just usefg
, assuming you haven't started any other processes. I added it to the answer for consistency.
– DaimyoKirby
Nov 19 '12 at 13:45
I'm not on my home computer right now, so I'll test this when I get home, but typingfg
orfg 1
should "unpause" it.
– DaimyoKirby
Nov 19 '12 at 14:05
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
1
I added the instructions to the post -sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall withfg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.
– DaimyoKirby
Nov 22 '12 at 2:03
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
Tried the answer. Now how to resume?
– VedVals
Nov 19 '12 at 13:40
@ved2254 Just use
fg
, assuming you haven't started any other processes. I added it to the answer for consistency.– DaimyoKirby
Nov 19 '12 at 13:45
@ved2254 Just use
fg
, assuming you haven't started any other processes. I added it to the answer for consistency.– DaimyoKirby
Nov 19 '12 at 13:45
I'm not on my home computer right now, so I'll test this when I get home, but typing
fg
or fg 1
should "unpause" it.– DaimyoKirby
Nov 19 '12 at 14:05
I'm not on my home computer right now, so I'll test this when I get home, but typing
fg
or fg 1
should "unpause" it.– DaimyoKirby
Nov 19 '12 at 14:05
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
It works. On a side note, I had to stop it as it couldn't connect to the servers. Does this tend to happen? Tried to install Ubuntu Ultimate Edition Theme Pack
– VedVals
Nov 19 '12 at 14:13
1
1
I added the instructions to the post -
sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall with fg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.– DaimyoKirby
Nov 22 '12 at 2:03
I added the instructions to the post -
sudo rm /var/lib/dpkg/lock && sudo rm /var/cache/apt/archives/lock
should unlock it, yet keep the old process so you can recall it later. I think it's just with that package, since I anything else I recall with fg
runs like normal, without any server errors. Don't really know what else, sorry. :/ Maybe if you start a new thread someone more knowledgeable could take a look at it.– DaimyoKirby
Nov 22 '12 at 2:03
|
show 4 more comments
Find the answer on how I solved it here. or follow this
link https://superuser.com/a/1388933/979057 . I run grep VERSION /etc/os-release
VERSION="2019.1"
VERSION_ID="2019.1"
Linux psycho 4.18.0-kali3-amd64 #1 SMP Debian 4.18.20-2kali2 (2018-11-30) x86_64 GNU/Linux
New contributor
add a comment |
Find the answer on how I solved it here. or follow this
link https://superuser.com/a/1388933/979057 . I run grep VERSION /etc/os-release
VERSION="2019.1"
VERSION_ID="2019.1"
Linux psycho 4.18.0-kali3-amd64 #1 SMP Debian 4.18.20-2kali2 (2018-11-30) x86_64 GNU/Linux
New contributor
add a comment |
Find the answer on how I solved it here. or follow this
link https://superuser.com/a/1388933/979057 . I run grep VERSION /etc/os-release
VERSION="2019.1"
VERSION_ID="2019.1"
Linux psycho 4.18.0-kali3-amd64 #1 SMP Debian 4.18.20-2kali2 (2018-11-30) x86_64 GNU/Linux
New contributor
Find the answer on how I solved it here. or follow this
link https://superuser.com/a/1388933/979057 . I run grep VERSION /etc/os-release
VERSION="2019.1"
VERSION_ID="2019.1"
Linux psycho 4.18.0-kali3-amd64 #1 SMP Debian 4.18.20-2kali2 (2018-11-30) x86_64 GNU/Linux
New contributor
New contributor
answered Dec 30 '18 at 10:39
Thorne
11
11
New contributor
New contributor
add a comment |
add a comment |
If you want to pause the downloaded files from terminal, I hope you have downloading something url. Just copy it first. and enter this lines in that terminal
wget -m -P [download-url]
It can pulse the downloading files. Where as you want to resume to download or even after net is disconnected, want to resume the file. Simply run this in terminal:
wget -c -m -P [brokern url]
or
wget --continue [broken url]
1
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
add a comment |
If you want to pause the downloaded files from terminal, I hope you have downloading something url. Just copy it first. and enter this lines in that terminal
wget -m -P [download-url]
It can pulse the downloading files. Where as you want to resume to download or even after net is disconnected, want to resume the file. Simply run this in terminal:
wget -c -m -P [brokern url]
or
wget --continue [broken url]
1
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
add a comment |
If you want to pause the downloaded files from terminal, I hope you have downloading something url. Just copy it first. and enter this lines in that terminal
wget -m -P [download-url]
It can pulse the downloading files. Where as you want to resume to download or even after net is disconnected, want to resume the file. Simply run this in terminal:
wget -c -m -P [brokern url]
or
wget --continue [broken url]
If you want to pause the downloaded files from terminal, I hope you have downloading something url. Just copy it first. and enter this lines in that terminal
wget -m -P [download-url]
It can pulse the downloading files. Where as you want to resume to download or even after net is disconnected, want to resume the file. Simply run this in terminal:
wget -c -m -P [brokern url]
or
wget --continue [broken url]
edited Jun 2 '15 at 14:06
Jens Erat
4,12972031
4,12972031
answered Jun 2 '15 at 13:33
Venu A Positive
1011
1011
1
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
add a comment |
1
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
1
1
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
a little confusing. We want apt-get, not wget
– Find Me In The Woods
Jun 2 '15 at 14:20
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
What are you trying to pulse?
– Yaakov Ainspan
Jan 30 '17 at 1:14
add a comment |
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.
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%2faskubuntu.com%2fquestions%2f219242%2fhow-do-i-pause-resume-download-and-install-from-terminal%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
Wouldn't it be simpler not to start a long installation when the battery is low? I thought "everybody" new about that.
– mikewhatever
Nov 19 '12 at 12:11
I start installation with considerable battery (mostly >90%). But I have a slow bandwidth connection and a power saving problem. I get max 25 kB/s on downloads (sometimes 30 kB/s at night). Also focus is on the second condition as that is more frequently occurring.
– VedVals
Nov 19 '12 at 12:48