0

I used this purge command sudo apt-get purge openjdk7*, however this uninstalled a lot of the software and my me menu has vanished. Every time I install something there is a huge list of packages the system wants me to remove by using the command sudo apt-get autoremove. I looked trough these, and some were recently installed, but are recognized as orphaned packages.

Is there any way I can solve this, or do I have to format and install Ubuntu again? I am using Ubuntu 12.04 LTS x64.

Here are pastebins of three relevant log files from my system:

/var/log/dpkg.log

/var/log/apt/history.log

/var/log/apt/term.log

Eliah Kagan
  • 119,640
user66987
  • 197

2 Answers2

2

Going from the APT history log, the problem wasn't apt-get purge openJDK7*, which uninstalled openjdk, but apt-get purge java* which removed ubuntu-desktop.

The problem is that java* matches javascript :)

To get back to a usable system, apt-get install ubuntu-desktop.

To get everything you had installed back, install everything you can see that APT removed when you told it to purge java*.

tumbleweed
  • 8,106
0

I am not sure if this will help you or not, but I had no issues using the purge command to get rid of openjdk. I did this of course to install the official oracle-java7. Here are the steps I took:

sudo apt-get purge openjdk*
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer

Hope this helps, sorry if it doesn't!

jacobfogg
  • 263