CentOS 5 :: Remove Java-1.4.2-gcj-compact Package?

May 6, 2009

What is 'java-1.4.2-gcj-compact package' Is this a JDK or just JRE?

I want to remove 'java-1.4.2-gcj-compact' package and install sun's JDK1.6. But lots of other packages depends on 'java-1.4.2-gcj-compact'. How should I go ahead.

View 3 Replies


ADVERTISEMENT

Software :: CentOS - Remove Package With Configuration Files?

Dec 4, 2010

How to remove package with his configuration files. rpm -e doesnt delete any configuration files, is there any similar command to debians apt-get --purge ?

View 2 Replies View Related

CentOS 5 :: Yum Correspond Exactly With Add / Remove Software Package Manager?

Jul 18, 2010

When I call (in CentOS v5.4) the Package Manager through menu
Applications->Add/remove Software
Do I get exactly the same information (as GUI) as when I use "yum" (as cmdline)? Do both tools show essentially always the same info about installed software? Or is it possible that yum does not something about software which is installed by GUI Package manager or vice versa? Do they share the same software repository database?

View 1 Replies View Related

CentOS 5 :: Java Not Working In Firefox After Java Upgrade

Apr 5, 2010

After upgrading java (jre) to 1.6.0_19, the java plugin no longer loads into Firefox. All the rest of my plugins from /usr/lib/mozilla/plugins/ load fine.Java can be a pain such a pain the neck!

View 8 Replies View Related

CentOS 5 :: How To Install JAVA JAVA BRIDGE PHP

May 1, 2010

I have installed CENTOS / PHP 5.1.6 / JAVA 1.5.0_20. Now i want to install JAVABRIDGE for PHP and JAVA title should list in the PHP_info page.

View 1 Replies View Related

Programming :: Java: Referencing Image Within Package

Jan 30, 2009

I am running into a small bit of difficulty with images I want to use in a Java program, keeping them bundled with the program in a JAR file and accessing them within the package.For those who are thinking it, this is definitely not homework.In my program, I have several images I would like to use on buttons on a toolbar.I have Googled, and I found something that comes close, but it deals with fetching images from a URL - nothing that deals with local files, more specifically, local images kept inside of a JARchive.

View 3 Replies View Related

Programming :: Unable To Access Java Package

Feb 16, 2011

i am a complete newbie in java. while dealing with packages i faced the following problem. I created a file named "CreatePackage"

Code:

package lobkush;
public class CreatePackage {
public CreatePackage() {
System.out.println("you are presently under package named "lobkush" ");
}
}

after this i created a folder named "lobkush".I also compiled the source file and placed the .class file in the corresponding directory.

Now to test it i created another java file. This is where the problem arises.while importing the class file if I write:

Code:

import lobkush.*;
the compiler shows an error

but if I write

Code:

import lobkush.CreatePackage;

no error is shown and the .class file generated.

View 4 Replies View Related

Slackware :: Missing Java - Package Browser Down ?

Dec 17, 2010

I thought I knew what I was doing, just a minimal install of slackware 13.1 for a game server (minecraft), but it seems I missed java or something - I get the "command not found" error. gcc-java is installed. What package did I miss/what series is it in? Does it have any dependencies?

View 1 Replies View Related

Fedora :: Remove All Traces Of GNU Java And Openjdk And Replace With Sun JDK?

Mar 20, 2011

I have fedora 13 64bit box. I have installed latest Sun JDk. But when I do: java -version I still got OpenJDK version. So I completely removed OpendJDK. But now when I do: java -version I get even older GNU java 1.5 something libgcj. So I completely removed that too but it was asking to remove bunch of dependent apps like OpenOffice Writer etc. Even though I need the writer, I let it go because I do not want ever to see the face of any GNU java on my linux. So everything related to GNU java is removed. Luckily I am able to start Eclipse and it works fine and start normally (apparently using the installed Sun JDK which is what I want). But now when I do java -version I get bash: /usr/bin/java: No such file or directoy

Now what I need to do so that when I open any terminal window and enter java -version I should get Sun JDK version? Sun JDK is installed in /usr/java/jdk1.6.021. I also have symlinks: /usr/java/latest and /usr/java/defaults pointing to sun jdk.

View 5 Replies View Related

Ubuntu :: Remove Firefox Without Removing Java Plugin?

Jun 5, 2010

I'm on 9.10 x64 gnome.I hate firefox and want to remove it because I use chrome,but when I try to remove it it removes the java plugin.And when I try to install the java plugin alone, it installs firefox. Why are these dependencies of each other? Is there any way that I can remove ff without removing java?

View 7 Replies View Related

General :: Libraries In Slackware 12.1 And Install The Java Jdk Package?

May 15, 2010

i wanted to know whether the gcc,g++ libraries are pre-installed i slackware 12.1 or not. if not then from where can i download them .how do i install them? how do i install the java jdk package also?

View 1 Replies View Related

Programming :: Importing A Package Recursively (with Subpackages) In Java?

Feb 26, 2010

I'm a 1st-year CS major and am new to Java. I had a question about importing packages. As I understand it, when you use a wildcard when importing, it will import the classes within the package specified before the asterisk, but none of the subpackages in the specified package.is there a way to include all classes and subpackages recursively with a single line, instead of doing:

import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;

As I understand it, it doesn't actually cause any bloat in your bytecode, so if it can be done, would there be any disadvantage?

View 4 Replies View Related

CentOS 5 :: Building RPM Package With Specific Noarch Sub-package

Feb 3, 2011

I was building yesterday the boost-1.45.0 RPM package for CentOS 5.5.

View 3 Replies View Related

Debian :: Cannot Find Java Package - Fake Root Does Not Work

Mar 19, 2011

I'm am very new at debian. I have tried to use the apt install to install java-package an fake root after it says cannot find java-package also fake root doesn't work?

View 5 Replies View Related

Ubuntu :: OpenJDK Java 6 Runtime - Package Dependencies Cannot Be Resolved

Aug 26, 2010

I'm trying to install Open Rocket : [URL]. I don't think I have java installed. I went to software center and tried to install "OpenJDK Java 6 runtime" and it says package dependencies cannot be resolved. I tried doing sudo apt-get install through terminal and it was dependent on a long list of things:

openjdk-6-jre
openjdk-6-jre-headless
tzdata-java
tzdata

I tried to sudo apt-get each one and it led me down the list like that to a dead end.

View 6 Replies View Related

Programming :: Java Package To Use For Playing Music With Different Kind Of Instruments?

Jul 23, 2009

Does anybody know any Java package that can be used for playing music with different kind of instruments. Is any package which implements the java.sound api http://java.sun.com/products/java-me.../doc-midi.html

View 1 Replies View Related

Ubuntu :: Remove Current Version Of Java And Upgrade To The Newest Versions?

Dec 30, 2010

I'm looking to remove my current version of Java and upgrade to the newest versions of Java and hopefully any other components like flash etc.

View 5 Replies View Related

Ubuntu Installation :: How To Install Java / Amsn In Synaptic Package Manager

Apr 4, 2010

i downloaded packages of java and amsn but i cant see them in the synaptic package manager.when i search them i cant find and when i click file--> add downloaded packages ,it doesnt take this packages.

View 4 Replies View Related

Ubuntu Multimedia :: Installing Java 3D - Package Javax.vecmath Does Not Exist

Jan 9, 2011

I'm trying to play around with java 3d, but having troubles to get some example to run.

NetBeans don't likes the line "import javax.vecmath.*;", it tells me that "package javax.vecmath does not exist",...

Code:

etc/environment holds following:

Code:

View 1 Replies View Related

Ubuntu :: A Package (libsdl Related) Requires To Remove The "ubuntu-desktop" Package

Jun 4, 2011

I need to install the following packages in order to compile a ScummVM fork that is not already compiled for ubuntu.

libsdl1.2-dev
libsdl1.2debian-all

But installing via Synaptic requires me to remove the "ubuntu-desktop" package.

View 1 Replies View Related

CentOS 5 :: Mess Up Everything On Java Plugins On Centos 5.3?

May 3, 2009

This is what I have done[URL]...I download Linux x64 RPM I follow the instructions from there [URL]..now problem now is that after installing the java software, I'm still prompted by Firefox that I have not installed java. I have enable Java in Firefox. This is how I check Edit->Preferences->Content.

Later I found this post How to get Java to work in Firefox

[Code]...

View 2 Replies View Related

Fedora :: How To Remove Rpm Package?

Sep 1, 2010

I downloaded RealPlayer and tried to install it. Well the install screwed up and now I am trying to remove it and I'm not sure how. I just tried to just reinstall it by double-clicking on the rpm file and it give me an error saying it already installed.

View 9 Replies View Related

Ubuntu :: How To Remove The Package

Jun 17, 2010

10.04 installation (that worked fine for weeks) does not boot anymore (soft lockup). After some googling I suspect that the problem is the installation of the hostap_utils-package that I performed the last time I could use it. I am on a Thinkpad X30 without CD-drive and don't have my docking station at hand, but fortunately I still have a working 8.04 installation on it and I from that I can mount the 10.04 partition.

So my question is: Is there a good way to remove a package from a 10.04 installation when you cannot boot it directly but have access to the filesystem? Alternatively could someone please post all the files that belong to the hostap_utils package so I can just delete them manually (even though that probably is not a clean way to remove a package..).

View 1 Replies View Related

Ubuntu :: Cannot Remove The Package Kdm

Apr 20, 2011

I had installed some kde app a while ago which I didn't want anymore so I uninstalled it and noticed that I didn't need the million kde dependencies that program had required. So I uninstalled all those, and everything went fine except for kdm which gives me the following error:

Code:

$ sudo apt-get purge kdm
[sudo] password for user:
Reading package lists... Done

[code]...

I was able to autoremove it, just not purge it (removing the config files left over).

View 2 Replies View Related

Debian :: How To Remove Package (lomoco)

Mar 5, 2011

I have logitech mx518 (mouse).Additional buttons did not work, so I googled a bit and tried different stuff. One of these is the package lomoco.I installed it via aptitude install and did not noticed any differences. So I tried to remove it with aptitude remove, but this seems not to have worked.The problem is, I get several warnings or error messages (or what ever) on startup about lomoco. So I would like to remove it completely.

View 2 Replies View Related

Fedora :: How To Remove Package Autofs

May 5, 2010

I just used command # yum install -y autofs that work complete but now i want to remove this package.How do i remove this.

View 1 Replies View Related

OpenSUSE Install :: Cannot Remove Package

Oct 19, 2010

I tried to install RealPlayer using a package from the RealPlayer website but I cannot remove in now. I got the following eeror message:

Loading repository data...
Reading installed packages...
Resolving package dependencies..

View 3 Replies View Related

Ubuntu :: Tell Apt-get Not To Remove (or Ignore) A Package

Apr 25, 2010

There is a package on my system that won't be removed. How can I tell apt-get not to remove that specific file?

sudo apt-get purge (remove) texlive-lang-cyrillic won't work.

View 2 Replies View Related

Ubuntu :: How To Remove Complete Package

Sep 18, 2010

After i remove many applications from my system, i see that there are many temp files on my filesystem (not just from /home directory but also i see many temp files other directories.). So i am asking you how to remove a software completely from Ubuntu ?

View 5 Replies View Related

Ubuntu :: Apt Won't Remove Deleted Package

Mar 13, 2011

i'm trying to reinstall LaTeX after i manually deleted all of it's directories in /usr/share, apt-get can't seem to remove or install any of the packages,

Code:

sudo apt-get install -f
Reading package lists...
Building dependency tree...

[code]....

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved