I want to downgrade the gnome-terminal from 3.10.2 to 3.6.2, like in How to downgrade packages on Ubuntu? I tried using synaptic but without success and I don't think it's as easy as with any other application.
Asked
Active
Viewed 4,233 times
3 Answers
1
What you should do is:
- Save / Finish Up Whatever you're doing in the GUI (LightDM/Unity).
- Go to a TTY Session (CTRL+ALT+F1).
- Login with your username and password.
- Stop LightDM.
- Downgrade Gnome Terminal
- Start LightDM.
I'll start from step 4.
Step 4: Stop LightDM
To stop lightdm, enter the following command:
sudo service lightdm stop
Step 5: Downgrade Gnome Terminal
Command(s):
sudo apt-get update
sudo apt-get install gnome-terminal=3.6.2
Step 6: Start LightDM
Command:
sudo service lightdm start
You should then be directed to the GUI login screen. Volla!
See this post for more information.
1
As per the output of apt-cache policy gnome-terminal
you have installed gnome-terminal 3.10
via PPA and gnome-terminal 3.6
is still available at the main repository. So do downgrade from 3.10 to 3.6 run the following command:
sudo apt-get install gnome-terminal=3.6.2-0ubuntu1
Here is another method that involves removing the PPA:
sudo apt-get install ppa-purge
sudo ppa-purge ppa:gnome3-team/gnome3

heemayl
- 91,753
0
In case anyone else arrives here and is unable to target version 3.6.2 via apt-get the following script found here worked for me:
wget http://fr.archive.ubuntu.com/ubuntu/pool/main/g/gnome-terminal/gnome-terminal-data_3.6.2-0ubuntu1_all.deb http://fr.archive.ubuntu.com/ubuntu/pool/main/g/gnome-terminal/gnome-terminal_3.6.2-0ubuntu1_amd64.deb
sudo dpkg -i gnome-terminal_3.6.2-0ubuntu1_amd64.deb gnome-terminal-data_3.6.2-0ubuntu1_all.deb
sudo apt-mark hold gnome-terminal
sudo apt-mark hold gnome-terminal-data
I was on a fresh install of Ubuntu 16.04 going from gnome-terminal version 3.18 to 3.6.2 and worked without a hitch.

Bobby Jones
- 11
apt-cache policy gnome-terminal
? – heemayl Feb 21 '15 at 01:51sudo apt-get install gnome-terminal=3.6.2-0ubuntu1
– heemayl Feb 21 '15 at 11:25