where get bunzip2?
To use I need to download and bunzip it with bunzip2. I don't think there's a bunzip2 with Red Hat Linux 6.0 -- which I use. Where can I get it, for Linux/i386? -- Roland Silver <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Memory problems
Nathan, I read your reply to Benjamin Edelman, where you asked the question >2) Check the contents of /proc/meminfo to make sure you have all the >memory and swap you think you do (you do boot with the linux "mem=" >option, right?). I'm new to the Linux environment, running Blackdown jdk1.1.7v3 on an i386. I'm not sure whether or not I'm booting with the linux "mem=" option. 1. What's the reason for doing so? 2. How do I set up the boot operation to do so? >Benjamin Edelman wrote: > > > > I'm running JDK 1.1.7v3 on an i386 running RedHat 5.2. The JDK has a nasty > > habit of bailing out with an out of memory error before my machine has > > actualy run out of memory > >Some things to try: > >1) Make sure you're not out of memory due to other big processes >running. > >2) Check the contents of /proc/meminfo to make sure you have all the >memory and swap you think you do (you do boot with the linux "mem=" >option, right?). > >3) Type "ulimit -a" into bash to see if you've got a "max memory size" >or "data seg size" other than unlimited. > >Nathan -- Roland Silver <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
package problem
I have a problem with packages that has me stumped. I've boiled it
down to two simple classes, defined in Foo.java and Bar.java; both
are in the directory /home/rollo/Java/foobar on my i386 Linux machine.
//Foo.java
package foobar;
import java.util.*;
public class Foo {
public Foo() {
Bar bar = new Bar();
}
public static void main(String[] args) {
System.out.println("Foo here");
}
}
//Bar.java
package foobar;
public class Bar {
public Bar() {
Foo foo = new Foo();
}
}
Current directory is /home/rollo/Java/foobar, and
CLASSPATH specifies the following three paths:
/usr/local/jdk117_v3/lib/classes.zip
/home/rollo/TIJ/exercises
/home/rollo/Java
The command
javac Foo.java
compiles OK, as does
javac Bar.java
putting Foo.class and Bar.class in the foobar directory, but
java Foo
complains:
Can't find class Foo
I'd really appreciate it if someone can help me with this problem!
* What am I doing wrong?
* How do I fix it?
I am running Blackdown JDK version 1.1.7-V3 on an i386 machine under
Red Hat Linux 6.0.
-- Roland Silver <[EMAIL PROTECTED]>
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
do I need source patches for JDK-1.1.7?
I've downloaded for installation on an i386 machine running Red Hat Linux 6.0. The readme says "All Java-Linux ports share a common set of source patches. These are located in the 'common' directory for each major JDK revision." For the revision I've downloaded, that would be the file . Do I need it? -- Roland Silver <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Java and Redhat 6.1
I'm thinking about upgrading my Linux machine from Redhat 6.0 to version 6.1, but I don't want to break my Java setup in the process. I'm using Blackdown Java 1.1.7v3 with the xx libraries, and I don't want to go to Java 1.2 until Blackdown makes a stable release. Will Redhat 6.1 support my current Java configuration? -- Roland Silver <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
