LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 02-04-2012, 08:27 PM   #1
javascriptninja
Member
 
Registered: Jan 2012
Posts: 41

Rep: Reputation: Disabled
How to upgrade to Ubuntu 11.10 sans Unity


I am currently running Ubuntu 10.10.

I want all the benefits of an upgrade without any of the disadvantages (i.e. Unity).

After the upgrade I don't want to be surprised and find that my gnome-panel has been replaced with something else, like what happened last time.

Is there a way to do this?

Is there a way to backup my current configuration, so that if something magical like that happens, I can do a roll back?
 
Old 02-04-2012, 11:03 PM   #2
kareempharmacist
Member
 
Registered: Jan 2012
Location: Cairo, Egypt
Distribution: MX Linux, Ubuntu 18.04
Posts: 336

Rep: Reputation: 42
you need to take an image of your partitions using ghost4linux or redo backup and recovery
http://sourceforge.net/projects/g4l/
http://sourceforge.net/projects/redo...urce=directory

if you are linux expert use ghost4linux
if u are a newbie use redo backup
good luck
 
Old 02-04-2012, 11:30 PM   #3
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
Before you upgrade get your system exactly how you want it (meaning the packages you have installed). Once you are happy open a terminal and type
Code:
sudo dpkg --get-selections installed-packages.txt
Make sure the file is in your /home

Now do your upgrade and then type this in a terminal
Code:
sudo dpkg --clear-selections
This will clear the newly setup list in apt of what packages are currently installed on your system.
Now type this into your terminal
Code:
sudo dpkg --set-selections installed-packages.txt
Now all you should need to do it
Code:
sudo apt-get update
sudo apt-get upgrade
This will uninstall packages you don't want and install new versions of the packages you do want. All your previous user settings should, if you have a separate /home partition, be in your /home as .hidden files (the . indicates the file/folder is hidden)

The relevant information is in the man pages and also in various places on the net.
 
Old 02-05-2012, 02:10 AM   #4
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Gnome panel as you are used to will not be available in 11.10. That is not even Ubuntus fault. Gnome3, on which 11.10 is based does not support such a thing.

The closest thing you could do is, if you are installed on 2 partitions, get the netboot install and install the base package and reboot and install from the command line when you first boot.

Install whatever the package is called in Ubuntu repos that supplies the gnome desktop (not the Ubuntu desktop). This will allow you to install gnome-fallback. This package will not be available for many versions either. It is supplied now by the Gnome folks for peopld who do not have the hardware for Gnome Shell.

You will be able to boot to it by selecting it at the loging screen in the "session" menu there.

If you really want a panel type DE I would look very seriously at Xfce. I do not particularly like the version in Xubuntu 11.10 but the one coming up in 12.04 (I have Xubuntu 12.04-testing installed) is very nice. 11.10 uses 4.6 and the panel is not quite as customizable as it is in 4.8 which comes in with 12.04.

Debian testing (Wheezy) has been using 4.8 for a longer time. That is the OS I am on now and use most of the time. As a long time Gnome user I can tell you that I would not go back if the reenabled the old Gnome2 panel DE.

Once again it would be a safe and easy thing to just install Xubuntu 11.04 if you are intalled on 2 partitions. Just don't format the /home partition. Backing up is still a great idea (I do) but I have done this for years and never needed to use the back up files. There is always that chance though.
 
Old 02-05-2012, 02:49 AM   #5
k3lt01
Senior Member
 
Registered: Feb 2011
Location: Australia
Distribution: Debian Wheezy, Jessie, Sid/Experimental, playing with LFS.
Posts: 2,900

Rep: Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637Reputation: 637
Quote:
Originally Posted by widget View Post
Gnome panel as you are used to will not be available in 11.10. That is not even Ubuntus fault. Gnome3, on which 11.10 is based does not support such a thing.
This is correct Gnome 3 doesn't have Gnome-panel like Gnome 2x did. Good catch there Widget, I didn't think of that. Gnome 3 has gnome-session-fallback (the name of the relevant package) and this uses gnome-panel from Gnome 3 plus Metacity from Gnome 2x. So to get the look, not necessarily the full feel, of Gnome panels you will also have to install gnome-session-fallback in addition to what I put in my previous post.

I should probably get back into Ubuntu a bit more, problem is I'm having so much fun with modifying Debian
 
Old 02-05-2012, 12:04 PM   #6
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Quote:
Originally Posted by k3lt01 View Post
I should probably get back into Ubuntu a bit more, problem is I'm having so much fun with modifying Debian
I really don't think that radical down grading of the OS's available on your box is a good idea.

I do admit to having Xubuntu 12.04-testing on here but have come to realize it is not a particularly good idea. Except to find out why it is so much bigger than Debian with Xfce. Xubuntu is riddled with Gnome packages. No wonder it is practically as heavy as Ubuntu.
 
Old 02-05-2012, 12:22 PM   #7
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 293Reputation: 293Reputation: 293
Quote:
Originally Posted by javascriptninja View Post
How to upgrade to Ubuntu 11.10 sans Unity
I am currently running Ubuntu 10.10.
I want all the benefits of an upgrade without any of the disadvantages (i.e. Unity).
You must upgrade in sequence. That is, you must upgrade from 10.10 to 11.04, and then to 11.10. You can not upgrade directly from 10.10 to 11.10 and skip 11.04.
Quote:
Originally Posted by widget View Post
If you really want a panel type DE I would look very seriously at Xfce. ...
Or even better yet, just do a clean install (not a dist-upgrade) of Lubuntu 11.10. Lubuntu is very fast and light and uses the LXDE (sans Unity, sans Gnome 3 shell) desktop.
 
  


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
LXer: Move unity launcher to the bottom with Unity Bottom Launcher | PPA Ubuntu LXer Syndicated Linux News 0 12-19-2011 12:30 AM
LXer: Top 4 Lightweight, Official Ubuntu Based Alternatives for Ubuntu 11.04's Unity 3D LXer Syndicated Linux News 0 05-18-2011 08:30 PM
LXer: Unity, Ubuntu Software Center And Sound Indicator Video And Screenshots [Ubuntu / UNE 10.10 Ma LXer Syndicated Linux News 0 07-13-2010 01:00 PM
LXer: Ubuntu 10.10 Will Get Unity, Ubuntu Light Interface LXer Syndicated Linux News 0 05-10-2010 03:10 PM

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

All times are GMT -5. The time now is 06:05 AM.

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