Completely new to Linux, bear with me. I've just this morning succeeded in getting Lubuntu on my Acer C710, thanks to the wonderful script over here.
I'm trying to see how Minecraft will run, which requires Java. I started by trying to install Oracle, but it was the full JDK rather than just the JRE, so I uninstalled it. I don't fully understand the instructions for installing the JRE (being as it isn't on the repository and such).
Next I tried to install OpenJDK 6's and 7's JREs. I tried from the repository, the LSC, and the Synaptic package manager. All of them bring up errors during the install. The repository, for example:
user@chrubuntu:~$ sudo apt-get install default-jre
Reading package lists... Done
Building dependency tree
Reading state information... Done
default-jre is already the newest version.
The following packages were automatically installed and are no longer required:
abiword-common fonts-lyx libabiword-3.0 libchamplain-0.12-0
libchamplain-gtk-0.12-0 libgdome2-0 libgdome2-cpp-smart0c2a
libgtkmathview0c2a liblink-grammar4 libloudmouth1-0 libmhash2 libots0
libraptor2-0 librasqal3 librdf0 libtelepathy-glib0 libtidy-0.99-0
libwmf0.2-7 libwpd-0.9-9 libwpg-0.2-2 libwps-0.2-2 libwv-1.2-4 libyajl2
link-grammar-dictionaries-en xul-ext-ubufox
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 12 not upgraded.
15 not fully installed or removed.
Need to get 0 B/72.3 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
dpkg: error processing package tzdata-java (--configure):
package tzdata-java is not ready for configuration
cannot configure (current status `half-installed')
dpkg: dependency problems prevent configuration of openjdk-7-jre-headless:amd64:
openjdk-7-jre-headless:amd64 depends on tzdata-java; however:
Package tzdata-java is not installed.
dpkg: error processing package openjdk-7-jre-headless:amd64 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of default-jre-headless:
default-jre-headless depends on openjdk-7-jre-headless (>= 7~u3-2.1.1); however:
No apport report written because the error message indicates its a followup error from a previous failure.
Package openjdk-7-jre-headless:amd64 is not configured yet.
It goes on like that for a while. Trying to uninstall bits of these programs seems to have brought up a few errors talking about the same half-installed errors, and some bits of the programs are there and won't go away, but do nothing anyway - the policy tools, and the option to open my .jar in 6 or 7's JREs (but, as said, this does nothing - not even an error message).
I'm floundering for what more I can actually say. Anyone got any ideas?
apt-get autoremove
bit is for the packages listed above that message, and doesn't affect the current operation. – saiarcot895 May 23 '14 at 03:23sudo apt-get install -f
, or maybesudo apt-get install tzdata-java
? – saiarcot895 May 23 '14 at 03:26