Ubuntu 16.04 32-bit does not boot after sudo apt upgrade
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
I installed latest Ubuntu 16.04 on my 32-bit laptop. Clean install, erasing other operating systems. Everything was fine, I was able to reboot after the installation was finished. No other actions with the new operating system were made.
After that, I ran the command: sudo apt update && sudo apt upgrade
, waited until it finished and then I rebooted again. After that the system is not booting.
Every time the last message is Starting Show Plymouth Boot Screen...
.
I can enter a virtual console with Ctrl+Alt+F1, but don't know what to do there. sudo apt-get dist-upgrade
did not help. It said nothing to upgrade, and after rebooting it hangs again.
After removing quiet splash
on /etc/default/grub
in hangs with other message:
screenshot
Now the last message is Write protecting the kernel text: 8504k
, or Starting WPA supplicant...
, the last message varies.
16.04 boot upgrade 32-bit
add a comment |Â
up vote
0
down vote
favorite
I installed latest Ubuntu 16.04 on my 32-bit laptop. Clean install, erasing other operating systems. Everything was fine, I was able to reboot after the installation was finished. No other actions with the new operating system were made.
After that, I ran the command: sudo apt update && sudo apt upgrade
, waited until it finished and then I rebooted again. After that the system is not booting.
Every time the last message is Starting Show Plymouth Boot Screen...
.
I can enter a virtual console with Ctrl+Alt+F1, but don't know what to do there. sudo apt-get dist-upgrade
did not help. It said nothing to upgrade, and after rebooting it hangs again.
After removing quiet splash
on /etc/default/grub
in hangs with other message:
screenshot
Now the last message is Write protecting the kernel text: 8504k
, or Starting WPA supplicant...
, the last message varies.
16.04 boot upgrade 32-bit
finish the update withsudo apt-get dist-upgrade
â ravery
Feb 9 at 12:26
did not helped, it said nothing to upgrade, after reboot hangs again
â dima.rus
Feb 9 at 12:43
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I installed latest Ubuntu 16.04 on my 32-bit laptop. Clean install, erasing other operating systems. Everything was fine, I was able to reboot after the installation was finished. No other actions with the new operating system were made.
After that, I ran the command: sudo apt update && sudo apt upgrade
, waited until it finished and then I rebooted again. After that the system is not booting.
Every time the last message is Starting Show Plymouth Boot Screen...
.
I can enter a virtual console with Ctrl+Alt+F1, but don't know what to do there. sudo apt-get dist-upgrade
did not help. It said nothing to upgrade, and after rebooting it hangs again.
After removing quiet splash
on /etc/default/grub
in hangs with other message:
screenshot
Now the last message is Write protecting the kernel text: 8504k
, or Starting WPA supplicant...
, the last message varies.
16.04 boot upgrade 32-bit
I installed latest Ubuntu 16.04 on my 32-bit laptop. Clean install, erasing other operating systems. Everything was fine, I was able to reboot after the installation was finished. No other actions with the new operating system were made.
After that, I ran the command: sudo apt update && sudo apt upgrade
, waited until it finished and then I rebooted again. After that the system is not booting.
Every time the last message is Starting Show Plymouth Boot Screen...
.
I can enter a virtual console with Ctrl+Alt+F1, but don't know what to do there. sudo apt-get dist-upgrade
did not help. It said nothing to upgrade, and after rebooting it hangs again.
After removing quiet splash
on /etc/default/grub
in hangs with other message:
screenshot
Now the last message is Write protecting the kernel text: 8504k
, or Starting WPA supplicant...
, the last message varies.
16.04 boot upgrade 32-bit
16.04 boot upgrade 32-bit
edited Feb 9 at 14:04
asked Feb 9 at 12:22
dima.rus
964
964
finish the update withsudo apt-get dist-upgrade
â ravery
Feb 9 at 12:26
did not helped, it said nothing to upgrade, after reboot hangs again
â dima.rus
Feb 9 at 12:43
add a comment |Â
finish the update withsudo apt-get dist-upgrade
â ravery
Feb 9 at 12:26
did not helped, it said nothing to upgrade, after reboot hangs again
â dima.rus
Feb 9 at 12:43
finish the update with
sudo apt-get dist-upgrade
â ravery
Feb 9 at 12:26
finish the update with
sudo apt-get dist-upgrade
â ravery
Feb 9 at 12:26
did not helped, it said nothing to upgrade, after reboot hangs again
â dima.rus
Feb 9 at 12:43
did not helped, it said nothing to upgrade, after reboot hangs again
â dima.rus
Feb 9 at 12:43
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
I would suggest to disable plymouth. Having acces to the console it is easy.
- Log in the console.
- Edit
/etc/default/grub
(as root, for examplesudo nano /etc/default/grub
) Change the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT=""
And then update grub and reboot
sudo update-grub && sudo reboot
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the consolesudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sureaptitude
is smarter thanapt-get
.
â S.M.
Feb 9 at 15:54
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I would suggest to disable plymouth. Having acces to the console it is easy.
- Log in the console.
- Edit
/etc/default/grub
(as root, for examplesudo nano /etc/default/grub
) Change the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT=""
And then update grub and reboot
sudo update-grub && sudo reboot
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the consolesudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sureaptitude
is smarter thanapt-get
.
â S.M.
Feb 9 at 15:54
add a comment |Â
up vote
0
down vote
I would suggest to disable plymouth. Having acces to the console it is easy.
- Log in the console.
- Edit
/etc/default/grub
(as root, for examplesudo nano /etc/default/grub
) Change the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT=""
And then update grub and reboot
sudo update-grub && sudo reboot
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the consolesudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sureaptitude
is smarter thanapt-get
.
â S.M.
Feb 9 at 15:54
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I would suggest to disable plymouth. Having acces to the console it is easy.
- Log in the console.
- Edit
/etc/default/grub
(as root, for examplesudo nano /etc/default/grub
) Change the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT=""
And then update grub and reboot
sudo update-grub && sudo reboot
I would suggest to disable plymouth. Having acces to the console it is easy.
- Log in the console.
- Edit
/etc/default/grub
(as root, for examplesudo nano /etc/default/grub
) Change the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT=""
And then update grub and reboot
sudo update-grub && sudo reboot
answered Feb 9 at 13:01
S.M.
1464
1464
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the consolesudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sureaptitude
is smarter thanapt-get
.
â S.M.
Feb 9 at 15:54
add a comment |Â
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the consolesudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sureaptitude
is smarter thanapt-get
.
â S.M.
Feb 9 at 15:54
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
now it hangs with other message, I updated the question
â dima.rus
Feb 9 at 13:52
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the console
sudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sure aptitude
is smarter than apt-get
.â S.M.
Feb 9 at 15:54
These new messages are not bad and it is not clear why boot is not continuing. Had your upgrade finished successfully? Please try in the console
sudo aptitude clean && sudo aptitude update && sudo aptitude full-upgrade
. I am sure aptitude
is smarter than apt-get
.â S.M.
Feb 9 at 15:54
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1004552%2fubuntu-16-04-32-bit-does-not-boot-after-sudo-apt-upgrade%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
finish the update with
sudo apt-get dist-upgrade
â ravery
Feb 9 at 12:26
did not helped, it said nothing to upgrade, after reboot hangs again
â dima.rus
Feb 9 at 12:43