dpkg --configure -a hangs when found initrd image
I have an Ubuntu 14.04 LTS "Desktop" with GitLab.
The system runs in a virtual machine on a Windows Server 2012 R2.
The machine runs daily automatic updates for "Important security updates", "Recommended updates" and "Unsupported updates". Not for "Pre-release updates".
Today I logged in the system, ran "sudo apt-get update" and it couldn't finish because some process is using dpkg.
I've ran "sudo apt-get upgrade" and it updated but hanged at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
Found linux image: /boot/vmlinuz-3.19.0-33-generic
Found initrd image: /boot/initrd.img.3.19.0-33-generic
Found linux image: /boot/vmlinuz-3.19.0-32-generic
Found initrd image: /boot/initrd.img.3.19.0-32-generic
Found linux image: /boot/vmlinuz-3.19.0-31-generic
Found initrd image: /boot/initrd.img.3.19.0-31-generic
I rebooted and hanged again at the same point for an "sudo apt-get upgrade".
Then I tried to clean the unused kernels. I ran:
uname -r
and got:
3.19.0-39-generic
So I removed 3.19.0-31, 3.19.0-32 and 3.19.0-33:
sudo rm /boot/initrd.img.3.19.0-31-generic
sudo rm /boot/initrd.img.3.19.0-32-generic
sudo rm /boot/initrd.img.3.19.0-33-generic
sudo rm /boot/vmlinuz-3.19.0-31-generic
sudo rm /boot/vmlinuz-3.19.0-32-generic
sudo rm /boot/vmlinuz-3.19.0-33-generic
Then, I tried to purge:
sudo apt-get purge linux-image-3.19.0-31-generic linux-image-3.19.0-32-generic linux-image-3.19.0-33-generic
But the process hanged also.
Then, I could "update" but the "upgrade" failed at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
At some update/upgrade, it suggested me to run dpkg --configure -a
but it also failed at the same point above.
Also, when I reboot, the system gets stuck at the "dots screen". I have to "power off" the virtual machine and restart it to get into it.
After some apt-get update
, apt-get upgrade
, dpkg --configure -a
and reboots I'm not sure how, but everything ran fine again.
Now I'm again with the same problems:
When I run
apt-get update
,apt-get upgrade
I get:
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
When I run
sudo dpkg --configure -a
it hangs after:
Found linux image: /boot/vmlinuz-3.19.0-42-generic
Found initrd image: /boot/initrd.img-3.19.0-42-generic
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img-3.19.0-39-generic
The system also hangs at the "dots screen" when I reboot
I'm quite noob with linux. Can anybody put some light here?
apt dpkg
add a comment |
I have an Ubuntu 14.04 LTS "Desktop" with GitLab.
The system runs in a virtual machine on a Windows Server 2012 R2.
The machine runs daily automatic updates for "Important security updates", "Recommended updates" and "Unsupported updates". Not for "Pre-release updates".
Today I logged in the system, ran "sudo apt-get update" and it couldn't finish because some process is using dpkg.
I've ran "sudo apt-get upgrade" and it updated but hanged at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
Found linux image: /boot/vmlinuz-3.19.0-33-generic
Found initrd image: /boot/initrd.img.3.19.0-33-generic
Found linux image: /boot/vmlinuz-3.19.0-32-generic
Found initrd image: /boot/initrd.img.3.19.0-32-generic
Found linux image: /boot/vmlinuz-3.19.0-31-generic
Found initrd image: /boot/initrd.img.3.19.0-31-generic
I rebooted and hanged again at the same point for an "sudo apt-get upgrade".
Then I tried to clean the unused kernels. I ran:
uname -r
and got:
3.19.0-39-generic
So I removed 3.19.0-31, 3.19.0-32 and 3.19.0-33:
sudo rm /boot/initrd.img.3.19.0-31-generic
sudo rm /boot/initrd.img.3.19.0-32-generic
sudo rm /boot/initrd.img.3.19.0-33-generic
sudo rm /boot/vmlinuz-3.19.0-31-generic
sudo rm /boot/vmlinuz-3.19.0-32-generic
sudo rm /boot/vmlinuz-3.19.0-33-generic
Then, I tried to purge:
sudo apt-get purge linux-image-3.19.0-31-generic linux-image-3.19.0-32-generic linux-image-3.19.0-33-generic
But the process hanged also.
Then, I could "update" but the "upgrade" failed at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
At some update/upgrade, it suggested me to run dpkg --configure -a
but it also failed at the same point above.
Also, when I reboot, the system gets stuck at the "dots screen". I have to "power off" the virtual machine and restart it to get into it.
After some apt-get update
, apt-get upgrade
, dpkg --configure -a
and reboots I'm not sure how, but everything ran fine again.
Now I'm again with the same problems:
When I run
apt-get update
,apt-get upgrade
I get:
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
When I run
sudo dpkg --configure -a
it hangs after:
Found linux image: /boot/vmlinuz-3.19.0-42-generic
Found initrd image: /boot/initrd.img-3.19.0-42-generic
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img-3.19.0-39-generic
The system also hangs at the "dots screen" when I reboot
I'm quite noob with linux. Can anybody put some light here?
apt dpkg
Same problem here.. I got it after trying to update "OS Updates" via the gui application named "Ubuntu Software"
– Emile Vrijdags
Feb 4 '17 at 11:15
add a comment |
I have an Ubuntu 14.04 LTS "Desktop" with GitLab.
The system runs in a virtual machine on a Windows Server 2012 R2.
The machine runs daily automatic updates for "Important security updates", "Recommended updates" and "Unsupported updates". Not for "Pre-release updates".
Today I logged in the system, ran "sudo apt-get update" and it couldn't finish because some process is using dpkg.
I've ran "sudo apt-get upgrade" and it updated but hanged at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
Found linux image: /boot/vmlinuz-3.19.0-33-generic
Found initrd image: /boot/initrd.img.3.19.0-33-generic
Found linux image: /boot/vmlinuz-3.19.0-32-generic
Found initrd image: /boot/initrd.img.3.19.0-32-generic
Found linux image: /boot/vmlinuz-3.19.0-31-generic
Found initrd image: /boot/initrd.img.3.19.0-31-generic
I rebooted and hanged again at the same point for an "sudo apt-get upgrade".
Then I tried to clean the unused kernels. I ran:
uname -r
and got:
3.19.0-39-generic
So I removed 3.19.0-31, 3.19.0-32 and 3.19.0-33:
sudo rm /boot/initrd.img.3.19.0-31-generic
sudo rm /boot/initrd.img.3.19.0-32-generic
sudo rm /boot/initrd.img.3.19.0-33-generic
sudo rm /boot/vmlinuz-3.19.0-31-generic
sudo rm /boot/vmlinuz-3.19.0-32-generic
sudo rm /boot/vmlinuz-3.19.0-33-generic
Then, I tried to purge:
sudo apt-get purge linux-image-3.19.0-31-generic linux-image-3.19.0-32-generic linux-image-3.19.0-33-generic
But the process hanged also.
Then, I could "update" but the "upgrade" failed at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
At some update/upgrade, it suggested me to run dpkg --configure -a
but it also failed at the same point above.
Also, when I reboot, the system gets stuck at the "dots screen". I have to "power off" the virtual machine and restart it to get into it.
After some apt-get update
, apt-get upgrade
, dpkg --configure -a
and reboots I'm not sure how, but everything ran fine again.
Now I'm again with the same problems:
When I run
apt-get update
,apt-get upgrade
I get:
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
When I run
sudo dpkg --configure -a
it hangs after:
Found linux image: /boot/vmlinuz-3.19.0-42-generic
Found initrd image: /boot/initrd.img-3.19.0-42-generic
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img-3.19.0-39-generic
The system also hangs at the "dots screen" when I reboot
I'm quite noob with linux. Can anybody put some light here?
apt dpkg
I have an Ubuntu 14.04 LTS "Desktop" with GitLab.
The system runs in a virtual machine on a Windows Server 2012 R2.
The machine runs daily automatic updates for "Important security updates", "Recommended updates" and "Unsupported updates". Not for "Pre-release updates".
Today I logged in the system, ran "sudo apt-get update" and it couldn't finish because some process is using dpkg.
I've ran "sudo apt-get upgrade" and it updated but hanged at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
Found linux image: /boot/vmlinuz-3.19.0-33-generic
Found initrd image: /boot/initrd.img.3.19.0-33-generic
Found linux image: /boot/vmlinuz-3.19.0-32-generic
Found initrd image: /boot/initrd.img.3.19.0-32-generic
Found linux image: /boot/vmlinuz-3.19.0-31-generic
Found initrd image: /boot/initrd.img.3.19.0-31-generic
I rebooted and hanged again at the same point for an "sudo apt-get upgrade".
Then I tried to clean the unused kernels. I ran:
uname -r
and got:
3.19.0-39-generic
So I removed 3.19.0-31, 3.19.0-32 and 3.19.0-33:
sudo rm /boot/initrd.img.3.19.0-31-generic
sudo rm /boot/initrd.img.3.19.0-32-generic
sudo rm /boot/initrd.img.3.19.0-33-generic
sudo rm /boot/vmlinuz-3.19.0-31-generic
sudo rm /boot/vmlinuz-3.19.0-32-generic
sudo rm /boot/vmlinuz-3.19.0-33-generic
Then, I tried to purge:
sudo apt-get purge linux-image-3.19.0-31-generic linux-image-3.19.0-32-generic linux-image-3.19.0-33-generic
But the process hanged also.
Then, I could "update" but the "upgrade" failed at:
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img.3.19.0-39-generic
Found linux image: /boot/vmlinuz-3.19.0-37-generic
Found initrd image: /boot/initrd.img.3.19.0-37-generic
At some update/upgrade, it suggested me to run dpkg --configure -a
but it also failed at the same point above.
Also, when I reboot, the system gets stuck at the "dots screen". I have to "power off" the virtual machine and restart it to get into it.
After some apt-get update
, apt-get upgrade
, dpkg --configure -a
and reboots I'm not sure how, but everything ran fine again.
Now I'm again with the same problems:
When I run
apt-get update
,apt-get upgrade
I get:
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
When I run
sudo dpkg --configure -a
it hangs after:
Found linux image: /boot/vmlinuz-3.19.0-42-generic
Found initrd image: /boot/initrd.img-3.19.0-42-generic
Found linux image: /boot/vmlinuz-3.19.0-39-generic
Found initrd image: /boot/initrd.img-3.19.0-39-generic
The system also hangs at the "dots screen" when I reboot
I'm quite noob with linux. Can anybody put some light here?
apt dpkg
apt dpkg
edited Apr 13 '17 at 12:25
Community♦
1
1
asked Dec 22 '15 at 12:29
YerayYeray
1287
1287
Same problem here.. I got it after trying to update "OS Updates" via the gui application named "Ubuntu Software"
– Emile Vrijdags
Feb 4 '17 at 11:15
add a comment |
Same problem here.. I got it after trying to update "OS Updates" via the gui application named "Ubuntu Software"
– Emile Vrijdags
Feb 4 '17 at 11:15
Same problem here.. I got it after trying to update "OS Updates" via the gui application named "Ubuntu Software"
– Emile Vrijdags
Feb 4 '17 at 11:15
Same problem here.. I got it after trying to update "OS Updates" via the gui application named "Ubuntu Software"
– Emile Vrijdags
Feb 4 '17 at 11:15
add a comment |
4 Answers
4
active
oldest
votes
Temporally fixed it!
After some reboots and some attempts to apt-get update
, apt-get upgrade
, apt-get dist-upgrade
and dpkg --configure -a
, the last command finally ended successfully and the rest of commands started to also run with success.
Updated to 3.19.0-42-generic kernel during the process.
So I'm not sure what exactly caused it, neither what exactly fixed it, but anyway... :)
add a comment |
It looks as through at some point you upgraded your kernel and it did not fully take I would make sure the kernel is correct by running:
sudo apt-get dist-upgrade
Then update and upgrade:
sudo apt-get update && sudo apt-get upgrade
Next you can check all pakages are correct by running
sudo apt-get -f install
1
When I try to runsudo apt-get -f install
, it tells meE: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
add a comment |
I had a similar problem twice and I have noticed that it happens everytime my system wants to upgrade to a new Kernel. The steps below seem to work for me all the time;
- Boot into the recovery mode of your newest kernel versions.
- Log-in to the system as root from the drop-down menu.
- Edit the /etc/resolv.conf file using a text editor, I normally use vi, i.e.
vi /etc/resolv.conf and put in the contents below and save file;
nameserver 208.67.222.220
nameserver 208.67.222.222
- After the above step, Ctrl+D (exit) back into the recovery mode menu and click on networking to enable network/internet connection.
- Next, click on the dpkg item to fix broken packages.
That's it, after the reboot your system should have the right kernel install and broken packages fixed/removed.
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
add a comment |
That’s just to configure a DNS server in order to resolve IP address mapping.
You can even use the public google server
8.8.8.8 and 8.8.4.4
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%2f712361%2fdpkg-configure-a-hangs-when-found-initrd-image%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Temporally fixed it!
After some reboots and some attempts to apt-get update
, apt-get upgrade
, apt-get dist-upgrade
and dpkg --configure -a
, the last command finally ended successfully and the rest of commands started to also run with success.
Updated to 3.19.0-42-generic kernel during the process.
So I'm not sure what exactly caused it, neither what exactly fixed it, but anyway... :)
add a comment |
Temporally fixed it!
After some reboots and some attempts to apt-get update
, apt-get upgrade
, apt-get dist-upgrade
and dpkg --configure -a
, the last command finally ended successfully and the rest of commands started to also run with success.
Updated to 3.19.0-42-generic kernel during the process.
So I'm not sure what exactly caused it, neither what exactly fixed it, but anyway... :)
add a comment |
Temporally fixed it!
After some reboots and some attempts to apt-get update
, apt-get upgrade
, apt-get dist-upgrade
and dpkg --configure -a
, the last command finally ended successfully and the rest of commands started to also run with success.
Updated to 3.19.0-42-generic kernel during the process.
So I'm not sure what exactly caused it, neither what exactly fixed it, but anyway... :)
Temporally fixed it!
After some reboots and some attempts to apt-get update
, apt-get upgrade
, apt-get dist-upgrade
and dpkg --configure -a
, the last command finally ended successfully and the rest of commands started to also run with success.
Updated to 3.19.0-42-generic kernel during the process.
So I'm not sure what exactly caused it, neither what exactly fixed it, but anyway... :)
edited Jan 4 '16 at 10:35
answered Dec 22 '15 at 12:37
YerayYeray
1287
1287
add a comment |
add a comment |
It looks as through at some point you upgraded your kernel and it did not fully take I would make sure the kernel is correct by running:
sudo apt-get dist-upgrade
Then update and upgrade:
sudo apt-get update && sudo apt-get upgrade
Next you can check all pakages are correct by running
sudo apt-get -f install
1
When I try to runsudo apt-get -f install
, it tells meE: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
add a comment |
It looks as through at some point you upgraded your kernel and it did not fully take I would make sure the kernel is correct by running:
sudo apt-get dist-upgrade
Then update and upgrade:
sudo apt-get update && sudo apt-get upgrade
Next you can check all pakages are correct by running
sudo apt-get -f install
1
When I try to runsudo apt-get -f install
, it tells meE: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
add a comment |
It looks as through at some point you upgraded your kernel and it did not fully take I would make sure the kernel is correct by running:
sudo apt-get dist-upgrade
Then update and upgrade:
sudo apt-get update && sudo apt-get upgrade
Next you can check all pakages are correct by running
sudo apt-get -f install
It looks as through at some point you upgraded your kernel and it did not fully take I would make sure the kernel is correct by running:
sudo apt-get dist-upgrade
Then update and upgrade:
sudo apt-get update && sudo apt-get upgrade
Next you can check all pakages are correct by running
sudo apt-get -f install
edited Jun 15 '17 at 15:37
Wtower
389613
389613
answered Dec 22 '15 at 12:45
DnrDevilDnrDevil
1,3291917
1,3291917
1
When I try to runsudo apt-get -f install
, it tells meE: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
add a comment |
1
When I try to runsudo apt-get -f install
, it tells meE: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
1
1
When I try to run
sudo apt-get -f install
, it tells me E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
When I try to run
sudo apt-get -f install
, it tells me E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
– Yeray
Jan 4 '16 at 10:37
add a comment |
I had a similar problem twice and I have noticed that it happens everytime my system wants to upgrade to a new Kernel. The steps below seem to work for me all the time;
- Boot into the recovery mode of your newest kernel versions.
- Log-in to the system as root from the drop-down menu.
- Edit the /etc/resolv.conf file using a text editor, I normally use vi, i.e.
vi /etc/resolv.conf and put in the contents below and save file;
nameserver 208.67.222.220
nameserver 208.67.222.222
- After the above step, Ctrl+D (exit) back into the recovery mode menu and click on networking to enable network/internet connection.
- Next, click on the dpkg item to fix broken packages.
That's it, after the reboot your system should have the right kernel install and broken packages fixed/removed.
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
add a comment |
I had a similar problem twice and I have noticed that it happens everytime my system wants to upgrade to a new Kernel. The steps below seem to work for me all the time;
- Boot into the recovery mode of your newest kernel versions.
- Log-in to the system as root from the drop-down menu.
- Edit the /etc/resolv.conf file using a text editor, I normally use vi, i.e.
vi /etc/resolv.conf and put in the contents below and save file;
nameserver 208.67.222.220
nameserver 208.67.222.222
- After the above step, Ctrl+D (exit) back into the recovery mode menu and click on networking to enable network/internet connection.
- Next, click on the dpkg item to fix broken packages.
That's it, after the reboot your system should have the right kernel install and broken packages fixed/removed.
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
add a comment |
I had a similar problem twice and I have noticed that it happens everytime my system wants to upgrade to a new Kernel. The steps below seem to work for me all the time;
- Boot into the recovery mode of your newest kernel versions.
- Log-in to the system as root from the drop-down menu.
- Edit the /etc/resolv.conf file using a text editor, I normally use vi, i.e.
vi /etc/resolv.conf and put in the contents below and save file;
nameserver 208.67.222.220
nameserver 208.67.222.222
- After the above step, Ctrl+D (exit) back into the recovery mode menu and click on networking to enable network/internet connection.
- Next, click on the dpkg item to fix broken packages.
That's it, after the reboot your system should have the right kernel install and broken packages fixed/removed.
I had a similar problem twice and I have noticed that it happens everytime my system wants to upgrade to a new Kernel. The steps below seem to work for me all the time;
- Boot into the recovery mode of your newest kernel versions.
- Log-in to the system as root from the drop-down menu.
- Edit the /etc/resolv.conf file using a text editor, I normally use vi, i.e.
vi /etc/resolv.conf and put in the contents below and save file;
nameserver 208.67.222.220
nameserver 208.67.222.222
- After the above step, Ctrl+D (exit) back into the recovery mode menu and click on networking to enable network/internet connection.
- Next, click on the dpkg item to fix broken packages.
That's it, after the reboot your system should have the right kernel install and broken packages fixed/removed.
answered Feb 22 '18 at 15:16
Dingane HlalukuDingane Hlaluku
1
1
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
add a comment |
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
What are you accomplishing by setting the name server to those ips?
– Javanator
yesterday
add a comment |
That’s just to configure a DNS server in order to resolve IP address mapping.
You can even use the public google server
8.8.8.8 and 8.8.4.4
add a comment |
That’s just to configure a DNS server in order to resolve IP address mapping.
You can even use the public google server
8.8.8.8 and 8.8.4.4
add a comment |
That’s just to configure a DNS server in order to resolve IP address mapping.
You can even use the public google server
8.8.8.8 and 8.8.4.4
That’s just to configure a DNS server in order to resolve IP address mapping.
You can even use the public google server
8.8.8.8 and 8.8.4.4
answered 5 mins ago
Dingane HlalukuDingane Hlaluku
1
1
add a comment |
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.
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%2f712361%2fdpkg-configure-a-hangs-when-found-initrd-image%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
Same problem here.. I got it after trying to update "OS Updates" via the gui application named "Ubuntu Software"
– Emile Vrijdags
Feb 4 '17 at 11:15