Syed Mubin wrote:
> ___________________________________________________________________________
> ___
> Syed Mubeen National Centre For Biological Sciences,
> [EMAIL PROTECTED] TIFR Centre, P.B #1234,
> 80-334-5615 or 4062 or 3035 IISc Campus,
> Resi :3452848 Bangalore - 560 012. INDIA.
> ___________________________________________________________________________
> ____
>
> Hi,
>
> I'm running JDK1.1.6v2 on RedHat Linux 5.1 as far as java is
> concerened its working fine ,
> I have recently downloaded Swing-1.0.2,but i'm unable install
> it,as it shows lot of errors also no README for installation on Linux,
> I also want to install downloaded netbeans nbdv20b3.sh ,I have
> many questions like whether you need swing to be installed first before
> installing netbeans.
> If there is any URL which gives the install procedure for Swing &
> Netbeans on Linux.
>
> my vi .bashrc
> ------------
> # .bashrc
> #CONTENTS
>
> # User specific aliases and functions
>
> # Source global definitions
> if [ -f /etc/bashrc ]; then
> . /etc/bashrc
> fi
>
> /usr/games/fortune
>
> JAVA_HOME=/home/syed/JDK1.6/jdk1.1.6
> export DISPLAY=:0
> PATH="/home/syed/JDK1.6/jdk1.1.6/bin:$PATH"
>
> ------------------------------------------------------------------------
> Please anybody there to help me
>
> Syed Mubeen
Syed,
I cannot help you with NetBeans, but Swing is easy to install. There are a
series of jar files provided with Swing. The one named "swingall.jar"
contains everything. So all you need to do is to unzip or untar the Swing
download into some suitable directory; e.g., "usr/local". Then add the
complete pathname of the Swing jar file to your class path; e.g.,
CLASSPATH=/iusr/local/swing-1.0.2/swingall.jar
export CLASSPATH
I use the Korn shell so I am not sure if the "export" is the right thing to do
for the bash shell.
Also, you should dowloand Swing 1.0.3 or Swing 1.1. Swing 1.0.3 has some bug
fixes over Swing 1.0.2. Swing 1.1 is the next version of Swing which will be
compatible with the Swing in JDK 1.2. This is still beta while Swing 1.0.3 is
supposedly production.
Cynthia Jeness