cbagger01
Group: Members
Posts: 4264
Joined: Oct. 2003 |
|
Posted: Jan. 21 2004,03:35 |
|
I have installed Opera 6.12 and it works well with DSL.
Check out the following thread for an Opera Install Script:
http://damnsmalllinux.org/cgi-bin....=2;t=90
In addition to installing Opera itself (and Flash plugin), I have also installed the Blackdown Java virtual machine, and I have installed RealPlayer 8 (with RealVideo 9 codec upgrade). I also used the default Opera pop up window to associate the streaming MP3 format with the XMMS application (radiostorm.com).
Here are two scripts that I used to install Java AFTER the Opera install was already finished. Save them to your /home/damnsmall directory and make them executable by typing 'chmod 755 filename' from the command line:
.start_java
Code Sample | #!/bin/sh # # .start_java - Checks to see if the Blackdown Java is already installed # Otherwise, run the install script. # Rev 0 12/4/03
#Check to see if Java is already installed if test -f '/home/damnsmall/j2re1.3.1/bin/realpath' then exit fi
# Otherwise, run the insall script cd /home/damnsmall rxvt -rv -T "installing Java runtime..." -e sh ./.install_java exit
|
.install_javaCode Sample | #!/bin/sh # # .install_java - Downloads and installs the Blackdown Java runtime for a # Damn Small Linux Opera user. # Rev 0 12/4/03
# First, download, unpack and install the Blackdown 1.31-02b binaries echo 'Grabbing Blackdown Java RTE 1.31-02b Binaries...' wget -c http://www.ibiblio.org/pub/linux/devel/lang/java/blackdown.org/JDK-1.3.1/i386/FCS-02b/j2re-1.3.1-02b-FCS-linux-i386.bin echo $'yes\n' | sh ./j2re-1.3.1-02b-FCS-linux-i386.bin rm -rf /home/damnsmall/j2re-1.3.1-02b-FCS-linux-i386.bin
# Add Java runtime path to Opera rm -rf /home/damnsmall/.opera/javapath.txt echo '/ramdisk/home/damnsmall/j2re1.3.1/lib/i386' > /home/damnsmall/.opera/javapath.txt
|
|