LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 10-29-2013, 09:55 AM   #1
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Rep: Reputation: Disabled
Update Mint 15: No menu bar, no consoles, all broken?!?


I ran an update yesterday evening. Now the menu at the lower edge is gone. The buttons are there but hidden, i.e. they get dark grey under the mouse cursor. Clicking on them shows transparent popups which don't work.

I can't switch to console (Alt / Ctrl / Fn) and have to restart by resorting to (Alt / Ctrl / Del).

I renamed /home/<user>/.cinnamon, /home/<user>/.gnome2 and /home/<user>/.gnome2-private to no avail. Any ideas would be appreciated.
 
Old 10-30-2013, 07:57 PM   #2
yooy
Senior Member
 
Registered: Dec 2009
Posts: 1,387

Rep: Reputation: 174Reputation: 174
how did you upgrade mint?
usually it takes fresh install to upgrade mint to newer version..

try installing dock so that you can work, or enter in terminal something like "gnome-panel&"
 
Old 10-31-2013, 08:15 AM   #3
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by yooy View Post
how did you upgrade mint?
usually it takes fresh install to upgrade mint to newer version..
I updated the current version (Olivia / Mint15). That is not meant as an upgrade to the yet to be released version 16 .

Quote:
Originally Posted by yooy View Post
try installing dock so that you can work, or enter in terminal something like "gnome-panel&"
There is no working mint anymore. This is a multi-boot machine so I can at most mount mint's "/" and edit config files as necessary.
 
Old 10-31-2013, 08:23 AM   #4
andrewthomas
Senior Member
 
Registered: May 2010
Location: Chicago Metro
Distribution: Arch, Gentoo, Slackware
Posts: 1,690

Rep: Reputation: 312Reputation: 312Reputation: 312Reputation: 312
Quote:
Originally Posted by JZL240I-U View Post
I updated the current version (Olivia / Mint15). That is not meant as an upgrade to the yet to be released version 16 .



There is no working mint anymore. This is a multi-boot machine so I can at most mount mint's "/" and edit config files as necessary.
Chroot into your Mint and fix it.
 
Old 10-31-2013, 10:23 AM   #5
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by andrewthomas View Post
Chroot into your Mint and fix it.
How?
 
Old 10-31-2013, 11:41 AM   #6
andrewthomas
Senior Member
 
Registered: May 2010
Location: Chicago Metro
Distribution: Arch, Gentoo, Slackware
Posts: 1,690

Rep: Reputation: 312Reputation: 312Reputation: 312Reputation: 312
Quote:
Originally Posted by JZL240I-U View Post
How?
Assuming your mint installation is at /dev/sdc1 then:
Code:
#!/bin/bash
 mount /dev/sdc1 /mnt/
 mount --bind /dev /mnt/dev
 mount --bind /proc /mnt/proc
 mount --bind /sys /mnt/sys
 mount --bind /dev/pts /mnt/dev/pts
 mount -o bind /etc/resolv.conf /mnt/etc/resolv.conf
 chroot /mnt/ /bin/bash
# this is where you can do all kinds of useful stuff. Like fix your broken system.
 umount /mnt/etc/resolv.conf
 umount /mnt/dev/pts
 umount /mnt/sys
 umount /mnt/proc
 umount /mnt/dev
 umount /mnt
 
Old 11-01-2013, 02:11 AM   #7
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by andrewthomas View Post
Code:
...{useful information how to chroot}
# this is where you can do all kinds of useful stuff. Like fix your broken system.
...{useful information how to end chroot}
What I meant is how do I fix the system? I have no idea where to even only begin...

Thanks for your help.
 
Old 11-01-2013, 04:12 AM   #8
andrewthomas
Senior Member
 
Registered: May 2010
Location: Chicago Metro
Distribution: Arch, Gentoo, Slackware
Posts: 1,690

Rep: Reputation: 312Reputation: 312Reputation: 312Reputation: 312
Quote:
Originally Posted by JZL240I-U View Post
What I meant is how do I fix the system? I have no idea where to even only begin...

Thanks for your help.
Ok. Have you tried to select the recovery option(or whatever they are calling it these days) from your grub2 menu(probably the second entry?)
That should boot you into a root shell.

Or from the chroot.

Code:
apt-get update && apt-get upgrade
Copy and paste the output of the upgrade command you are still having problems
 
Old 11-01-2013, 04:17 AM   #9
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by andrewthomas View Post
Ok. Have you tried to select the recovery option(or whatever they are calling it these days) from your grub2 menu(probably the second entry?).
Yes, some automatic repair then started. It didn't help.

Quote:
Originally Posted by andrewthomas View Post
...That should boot you into a root shell.
I did not chose a shell since I would not know what to do then.

Quote:
Originally Posted by andrewthomas View Post
Or from the chroot.

Code:
apt-get update && apt-get upgrade
Copy and paste the output of the upgrade command you are still having problems
I'm living in the country and only have a mobile connection -- which I only know how to start from the GUI -- which does not work anymore...

Looks hopeless, maybe I should re-install.
 
Old 11-01-2013, 05:20 AM   #10
andrewthomas
Senior Member
 
Registered: May 2010
Location: Chicago Metro
Distribution: Arch, Gentoo, Slackware
Posts: 1,690

Rep: Reputation: 312Reputation: 312Reputation: 312Reputation: 312
If you can't figure out how to fix it from a root shell, then you certainly would be best off re-installing. Although, it doesn't hurt to try if you are going to reinstall anyway. You just may learn something.

Last edited by andrewthomas; 11-01-2013 at 05:21 AM. Reason: grammar
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] KDE menu bar: icons all on the left. How to rectify and documentation of menu bar? JZL240I-U Linux - Desktop 5 12-30-2011 10:42 AM
[SOLVED] Ubuntu 11.04 Lunch bar and menu bar gone. KristjanJo Linux - Desktop 9 10-09-2011 09:04 PM
[SOLVED] Missing Menu and task bar in Mint. newbeeman Linux - Newbie 2 01-23-2011 08:44 AM
KDE task bar / menu bar has dissaspeared! KingofBLASH SUSE / openSUSE 1 03-05-2006 09:24 PM
Menu items missing and shortcuts broken after update amishdisco Mandriva 2 02-10-2004 09:37 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 03:43 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration