Java is a general-purpose programming language and a computing platform called the Java Virtual Machine (JVM).
0
votes
0answers
20 views
Can't load IA 32-bit .so on a IA 32-bit platform
I'm trying to install an 32_bit_application on CentOS (64-bit), while running the setup.bin
file it return the following error
Invocation of this Java Application has caused an ...
-2
votes
1answer
46 views
Novice Ubuntu 12.04 user needs help! [closed]
I'm new to Unix/Linux and someone suggested I try Ubuntu. I like it but I can't figure a couple of things out and don't really have time to google up ways to solve the problem. Answers from a quick ...
4
votes
3answers
68 views
Uniquely identifying java processes with same name
I have two java processes which run using the same file name, MyApp.jar (for example).
/usr/java/latest/bin/java -jar MyApp.jar
These jars exist in different places and use different ...
-1
votes
0answers
26 views
Nexus - primefaces repository
I am currently running Nexus 2.3.1-01.
I try to add a proxy repository for http://repository.primefaces.org/
But Nexus is not able to found any artifacts on this repository. Seems to be an indexes ...
1
vote
3answers
42 views
Linux / JVM - OutOfMemoryError: unable to create new native thread
I have a memory problem with a Linux server (CentOS). It is a VM. Below is the context.
It has 70Gb of RAM. There are 2 tomcat running on it.
One tomcat is given a heap of 13Gb and the other one a ...
0
votes
0answers
43 views
Program which uses JVM cannot start without sudo
I have problem with program which uses InstallAnywhere installer on Ubuntu 12.04. When I start installation, following error occurs:
Extracting the installation resources from the installer ...
0
votes
0answers
31 views
Prevent Java to escalate CPU usage on Slackware64?
I use Slackware64-current on my work laptop and though I love running Slackware, sometimes it hangs on me near to the point of starting considering falling back to Windows.
I develop on Java and use ...
1
vote
1answer
47 views
Minimal Java installation for Linux with no GUI
I'm working on a CentOS 6.3 x86_64 minimal OS (installed using the netinstall ISO).
This system is not expected to run anything beyond console apps/services and Tomcat7. When I attempt to install ...
3
votes
0answers
43 views
RES memory more than initial and maximum memory for java
We have a java application running on Centos 6.4 what we notice is that the RES is around 370m which is more then the allocated max that is 256m. Does this signify that we the application is leaking?
...
1
vote
0answers
64 views
Ant error after installing NetBeans 7.3 in Lubuntu
I have NetBeans 7.01 from Debian repository - all works. But I have a problem with NetBeans 7.3 from the official site (installed on the same machine) - I can't compile anything:
ERROR - Ant is ...
0
votes
0answers
26 views
How to install DrJava?
I'm just starting to use Ubuntu and am trying to install a drjava-stable-20120818-r5686.jar file.
I have followed the instructions on the DrJava site and from answers on other questions on this site, ...
2
votes
2answers
88 views
Do I need to remove all “java|jre” packages from my system to be secure from java vulnerabilities?
Currently I have these installed on my Scientific Linux 6.3:
[root@localhost ~]# rpm -qa | egrep -i 'java|jre'
java-1.7.0-openjdk-1.7.0.9-2.3.7.1.el6_3.x86_64
...
0
votes
0answers
29 views
A simple script to make a desktop version of Nimbuzz WebChat? [closed]
There is a nice little script which uses python-webkit called "RGB/HEX Color Picker" here: http://gnome-look.org/content/show.php?action=content&content=128317
I tried if I can use it to make a ...
0
votes
0answers
29 views
Forking two interactive bash processes causes parent process to stop or second bash to go background
If you fork (exec) two interactive bash processes within same parent process (from different threads) causes that parent process becomes stopped or second interactive bash goes to background which ...
1
vote
3answers
193 views
Kill only one Java process
I usually run few Java applications, one for server running locally and other for some IDE like NetBeans. And from time to time, after lots of redeployments, my server get stuck on ...
1
vote
1answer
89 views
Point IP to an application instance
I was just wondering how I go about pointing a static IP address which I have purchased to an application instance on my server, using a different IP from the one I currently have pointing to my main ...
2
votes
1answer
133 views
IBM Java Runtime Environment on CentOS
I need to install IBM's JRE, but I can't seem to find an appropriate download or guide to installing it on CentOS. I've found various zips, but none of them include an RPM and I have no idea where to ...
1
vote
1answer
828 views
Missing 32 bit library on a 64 bit Linux install
I am trying to figure out why Eclipse is complaining about being unable to find a library. I've managed to reproduce/reduce the java problem to:
$ ldd ...
3
votes
1answer
72 views
update-alternatives just for one user
I'm using a shared server.
On that server different versions of Java are installed:
Selection Path Priority Status
...
3
votes
1answer
167 views
Cannot kill a java process
I have a java process that cannot be killed. I have tried every method I know, or that I have found on the internet to no avail. I have tried:
killall java
kill -9 <pid>
kill -11 <pid>
...
1
vote
3answers
2k views
Java update on Centos
I am pretty unfamiliar with Linux, and the more I use it the more I realize how unfamiliar I am.
I have a Centos 6.2 machine. It currently has JDK 1.6.0_26 installed. I would like to update that to ...
3
votes
2answers
230 views
What is meant by stack in connection to a process?
From the book Advanced programming in the Unix environment I read the following line regarding threads in Unix like systems
All the threads within a process share the same address space, file
...
3
votes
2answers
2k views
Installing JDK 7 on debian
So I just rented a dedicated server running Debian, and I know nothing about Linux.
Anyway, I want to install the JDK 7, first I connected through SSH and granted myself administrator rights by ...
2
votes
0answers
130 views
Java uses max 8 cores on Debian, even though 16 are available [closed]
I have two servers at hand, both with 16 cores. The first is running Debian, the second running Ubuntu.
I have written a small multithreaded java app that creates 16 threads. On the Debian machine, ...
0
votes
0answers
149 views
Java SWT App: Need 64-bit swt.jar
I have a Java app that I want to run in Ubuntu, but I have Java 64 so I can't run it because it only has the 32-bit swt.jar. I can't build it myself, so Is there anyone that can provide the 64-bit ...
1
vote
0answers
67 views
Visually-transparent & Input-transparent Windows
I'm a Java programmer who's rather new to Linux. I'm on Suse / Gnome and I need to create a window which:
Is visually translucent/transparent. This is the usual alpha blending
that composes a ...
0
votes
0answers
37 views
How to execute a command as a service in Linux [duplicate]
Possible Duplicate:
how to make system service out of .jar file? (linux)
I am executing a command from Linux to establish a connection between Linux and a cloudbees machine. How could I run ...
2
votes
1answer
148 views
How to trace a java-program?
As a sysadmin I sometimes face situations, where a program behaves abnormally, while not creating errors at all or creating nonsense error-messages.
In the past - before java came in - there were two ...
3
votes
0answers
76 views
Implement Java/JavaFX on ARM
I am working on ARM Linux.
I have found this link that says that JavaFX could work on ARM.
I am confused about Embedded Java SE and JavaFx ARM. Do I need to setup a JVM for those or not?
I have ...
4
votes
1answer
523 views
Use certain version of JRE / JDK for certain programs
I use ArchLinux, and an IDE called PyCharm. On its download page, it recommends using Java 6 instead of OpenJDK. ArchLinux has an OpenJDK package (jdk7-openjdk) that I have installed, installed, and ...
1
vote
1answer
142 views
How to start java application after machine reboot?
I'm wondering if there is easier way to start java application (just tomcat server) after machine has been rebooted?
Possible answers:
Add the application as a service and then add it using ...
0
votes
2answers
264 views
Java version for Tomcat
I want to run my Tomcat with Java 7 but all I found about configuring it doesn't work. The management interface of Tomcat shows 1.6.0_24-b24 as Java version. The JAVA_HOME variable is empty.
% echo ...
1
vote
1answer
317 views
Using NetBeans on ARM Linux?
Is it possible to run NetBeans on a ARM CPU with Linux as OS (maybe Debian) ?
I want to be clear I don't need to compile for ARM (I will use NetBeans only for PHP coding).
So the question is about ...
1
vote
1answer
133 views
CentOS5, RHEL5, Java dependent Packages, Alternate JVM/JDK
Specifically regarding Java dependent packages, such as ant. Is it possible to install them via rpm, when using an alternate JVM/JDK? For example, If I install the Oracle JDK, can I use an ant ...
2
votes
1answer
129 views
Problem with java3d
I want to play this java simulation: http://www.compadre.org/OSP/items/detail.cfm?ID=9640 in java 3d mode on a linux (ubuntu) system. But it doesn't work.
If I switch to java 3d-mode it complains ...
1
vote
1answer
859 views
Installing jdk7 on Debian server via SSH
Currently, I'm trying to launch a java program on a server. The server is launched on my virtual machine (VirtualBox) and controlled over SSH. Its OS is Debian. So, in order to launch my program I ...
1
vote
1answer
123 views
What is the command or hotkey for stopping a running program in DrJava?
I installed DrJava about a week ago. Its been working fine so far but I ran into an infinite loop and wanted a way to stop the program from running without having to force DrJava to quit. Is there a ...
0
votes
1answer
212 views
How do I install drjava in linux from terminal?
I've downloaded drjava-stable-20100816-r5366.jar file which is the drjava version for Linux. How do I install it on my machine?
I'm running Ubuntu 11.10.
I have OpenJDK Java 6 runtime and Sun Java 6 ...
0
votes
1answer
808 views
Upgrade java on Linux Mint 11
I'm unable to use web-based java content due to my version being out of date.
%>java -version
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) Server ...
1
vote
1answer
260 views
How to force a particular version of Java?
I am on a RHEL 5.5 64 bit box. The systems engineer installed the 64-bit Java VM under /usr/bin ; however, I needed a 32 bit VM which he installed in /opt/jdk1.6.0_35. But now, everytime I do java ...
5
votes
1answer
1k views
How do I update IcedTea?
I've only been using Linux for about a month. I'm running Mint 13. I'm trying to use www.goproblems.com but it tells me that my IcedTea is out of date. I hoped there was a package but I can't find ...
2
votes
1answer
902 views
How do I download and launch a JNLP file in CentOS?
I'm using Amazon's GPU cluster to experiment with some HPC java code on CentOS.
The Java application is in JNLP format and has a GUI.
I've followed Amazon's getting started video, but I'm not ...
2
votes
2answers
422 views
How to to remove libgcj from Debian?
I am doing Java programming on Debian. By default Debian 6.x ships with libgcj JVM. On starting eclipse it shows a warning that this JVM is deprecated and may cause problems. For this reason I ...
1
vote
0answers
189 views
Installing jdk 1.4.2 on fedora 14
I am trying to install wsdgate,
In the installation they have recommended to use jdk 1.4.2,
I already have jdk 1.7 but I am not able to install JDK 1.4.2 on fedora 14.
I got error like this
could not ...
1
vote
1answer
388 views
How to set jsse.enableSNIExtension to false when running Java programs?
I am trying to set the Java system property jsse.enableSNIExtension to false, but when I try running this java just outputs help information:
java -Djsse.enableSNIExtension=false
What am I doing ...
1
vote
2answers
2k views
How to install JRE on firefox with fedora (64bits)
What do I need to run Java web applications on firefox with my 64bits fedora 17?
I can't pass this test but I have installed the x64 rpm from there. What is missing?
Additional note: I tried to ...
2
votes
0answers
345 views
How to install Java Runtime Environment 7 update 5 for x64 arquitecture on Debian OS?
The History:
Hey guys I want to install JRE7u5 and not OpenJRE7u5 because, while doing a research on the web I discovery that Minecraft runs better on JRE, than with
OpenJRE.
The Failure:
But the ...
4
votes
1answer
6k views
How to completely remove Java 6 and install Java/JDK 7 on Linux Mint 13
How can I completely remove Java 6 and install Java/JDK 7 on Linux Mint 13?
2
votes
1answer
254 views
JRE in Kubuntu doesn't allow me to run .jar file
I am having trouble trying to run a .jar application on Kubuntu. I created an application in NetBeans in Windows and compiled it into a .jar file. First Windows couldn't find the main class. I ...
3
votes
2answers
196 views
Running jobs in parallel on Ubuntu - I/O contention differences between Perl and Java
Apologies if this is off topic - it concerns the relative efficiencies of running I/O-heavy Perl/Java scripts in parallel on a Ubuntu system.
I have written two simple versions of a file copy script ...