[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Mozilla M18 on potato (pentium100)



Hi,

Pap Tibor [papt@edasz.hu] wrote:
> Another question:
> 
> I would like to use java support with mozilla. I've got the sun java
> plugin 1.2.2 on a CD. Can I install this into mozilla? I don't want to
> download another plugin if it's not necessary. (My internet connection
> through modem is quite expensive and slow.)

If you have the java 1.2 installed, you can simply link the
javaplugin.so to your mozilla's plugins directory. I use the following
script for automate the process of updating the nightly and setting up
the plugins as well.

#!/bin/sh
#This scripts automates the mozilla installation process
#Written by Shao Zhang <shaoz@cse.unsw.edu.au>

mozilla=mozilla-i686-pc-linux-gnu.tar.gz
dir=`date --date=yesterday '+%Y-%m-%d'`-21-Mtrunk
url=ftp://ftp.mozilla.org/pub/mozilla/nightly/$dir/$mozilla

javaplugin=/usr/lib/j2re1.3/plugin/i386/javaplugin.so
mozplugin=$HOME/package/plugins/javaplugin.so

cd $HOME; rm -f $mozilla; wget $url;

if [ -f $HOME/$mozilla ]; then
    rm -rf $HOME/package;
    tar zxvf $mozilla;
    ln -s $javaplugin $mozplugin;
    exit 0;
fi

exit 1;

Regards,

Shao.

-- 
____________________________________________________________________________
Shao Zhang - Running Debian 2.1  ___ _               _____
Department of Communications    / __| |_  __ _ ___  |_  / |_  __ _ _ _  __ _ 
University of New South Wales   \__ \ ' \/ _` / _ \  / /| ' \/ _` | ' \/ _` |
Sydney, Australia               |___/_||_\__,_\___/ /___|_||_\__,_|_||_\__, |
Email: shao@cia.com.au                                                  |___/ 
_____________________________________________________________________________



Reply to: