Showing posts with label Plugins. Show all posts
Showing posts with label Plugins. Show all posts

Speed Up and Optimize Firefox 3.6 in Ubuntu Using Swiftfox 3.6.0

Swiftfox are additional plugins to optimize or speed up firefox on ubuntu system. both the technology Intel and AMD processors, when you want to install it, plugins are already available on each processor. so, you must select the type of processor for these plugins whether Intel or AMD processors. Donwload swiftfox plugins installer package here. then select the type of processor, follow these steps:


Go to terminal and login as root by type :

$ sudo su

Run the installer packages by type :

$ ./install-swiftfox.sh

Or

$ sh install-swiftfox.sh 

Finish...!! Launch Swiftfox by selecting it from the menu

If you want to install the deb file, follow these steps:

Add third party repository by type :

$ gedit /etc/apt/source.list

Add this line

deb http://getswiftfox.com/builds/debian unstable non-free

Update and install your repository by type :

$ apt-get update

$ apt-get install swiftfox-prescott

And Finish....!!

To install the deb packages manually, just click double-click on the deb file or with the command in a terminal:

$ dpkg -i swiftfox-3.6.0-1_prescott.deb

If any problem, go to Swiftfox Forum

Happy Testing...!!

Sources :

Read More...!!

Install Webmin 1.500 in Ubuntu Karmic Koala (9.10)

Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely
webmin version 1500 released on 7 December 2009, which was revised from the previous bugs. to install it there are two steps to install webmin, follow these steps:



1st Step

Go to termial login as root and edit your sources.list by type :

$ sudo su
$ gedi/etc/apt/sources.list

add this line :

deb http://download.webmin.com/download/repository sarge contrib

$ wget http://www.webmin.com/jcameron-key.asc
$ apt-key add jcameron-key.asc

Update your repository by type :

$ apt-get update
$ apt-get install webmin

and Finish....!!

2nd Steps

You can directly download .deb packages here or here if it is done, install the following packages with the command :

$ apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl

$ dpkg -i webmin_1.500_all.deb

Or you can directly double click to install it, if installation proccess finish, open your browser and type :

http://localhost:10000

Happy Testing....!!
Read More...!!

Create Apache2 Directory For Each User in Ubuntu.

When we install apache2, directory configuration files *. html, *. php must be in place in the directory /var/www




Well, for one, and another thing, we want to create a file *. html and *. php we freely without having to move from our local directory to directory /var/www earlier. For this purpose we need to enable UserDir in Apache2 features. To enable this feature can do the following steps:

Go to Terminal, Login as root by type :

$ sudo su
$ a2enmod userdir

then restart apche service by type :


$ /etc/init.d/apache restart

Rename existing public directory at home directory to public_html and create file *.html or *.php and put it in public_html directory. Go to your browser ex : firefox navigate to address bar : http://localhost/~user

Happy Testing...!!
Read More...!!

Create Local Repository Ubuntu Jaunty (9.04) With .iso DVD on Hardisk

To create a local repository in need cd image repository, it is require. to create it, follow these steps...!!

1. create a directory for each repository .iso on /media example : /dir1 /dir2 /dir3 /dir4 /dir5 /dir6 by type :
Login as root
 

$ mkdr /media/dir1 /media/dir2 /media/dir3 /media/dir4 /media/dir5 /media/dir6


After you successfully create a folder, mount repository image on /media by type :

$ sudo mount -o loop /xxx.iso /media/dir1
$ sudo mount -o loop /xxx.iso /media/dir2
$ sudo mount -o loop /xxx.iso /media/dir3
$ sudo mount -o loop /xxx.iso /media/dir4
$ sudo mount -o loop /xxx.iso /media/dir5
$ sudo mount -o loop /xxx.iso /media/dir6

2. edit sources repository in /etc/apt/sources.list and add the local repository sources by type :

$ gedit /etc/apt/sources/.list

add following line :


deb file:///media/dir1/ jaunty main restricted
deb file:///media/dir2/ jaunty main multiverse restricted
deb file:///media/dir3/ jaunty universe
deb file:///media/dir4/ jaunty universe
deb file:///media/dir5/ jaunty universe
deb file:///media/dir6/ jaunty universe

close and save...!!

3. Update soures.list by type


$ apt-get update

Finish and you can install ubuntu packages on your local repository.

Happy Testing...!!
Read More...!!

Install Sun's JDK 6 on Ubuntu Jaunty (9.04)


In the following article I’m going to log a few steps to setup the latest Java SDK and Eclipse IDE on Ubuntu. It is the first in a series of posts I plan to write as I migrate my development environment from Windows to Ubuntu. Other frameworks, SDKs, APIs, tools, database or application servers will be covered separate posts later.

Ubuntu’s latest distribution ships with a very old version of Eclipse (3.2.2) still. On my old system I sometimes dealt with different SDK versions simultaneously, so I didn’t want to rely on the package manager alone, too. I started by downloading the latest Java SDK from http://java.sun.com. I downloaded jdk-6u14-linux-i586.bin and saved the file in /usr/local/, made it executable and ran the file

chmod +x jdk-6u14-linux-i586.bin
./jdk-6u14-linux-i586.bin

I extracted all files to /usr/local/jdk1.6.0_14. Next I added an environment variable JAVA_HOME and added the bin-path to the PATH variable.

$ gedit /etc/bash.bashrc

And add:

# Java SDK
export JAVA_HOME=/usr/local/jdk1.6.0_14
export PATH=$JAVA_HOME/bin:$PATH

The command java -version should now display

java version “1.6.0_14″
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot(TM) Server VM (build 14.0-b16, mixed mode)
Eclipse

Eclipse could be installed as easily as the Java SDK. I downloaded the Eclipse IDE for Java Developers from Eclipse.org, extracted the archive to /usr/local, and added it to the PATH variable as well.

$ gedit tar -xvf eclipse-java-galileo-linux-gtk.tar.gz
$ gedit /etc/bash.bashrc

# Eclipse
export PATH=/usr/local/eclipse:$PATH

Finally, the Java SDK has to be added to Eclipse’s Preferences in Window|Preferences|Java|Installed JREs|Add. The dialog is pretty self-explanatory.

That’s it for now. I might add additional steps to configure and fine-tune this development environment later.

Happy Testing...!!


Sources : http://blog.wessendorf.org/

Read More...!!

Install DVD and Codecs Video Audio on Ubuntu 9.04


Ubuntu 9.04 comes with a few free codecs after installation. To enable DVD, xvid, divx, windows media, real audio/video, quick time and other popular audio/video format playback follow this simple tutorial:



1. Go to Applications/Add/Remove and choose to show All Available Applications
2. Next, from left menu choose Sound & Video and on search field enter “gstreamer” without quotes
3. From the list bellow, choose all Gstreamer plugins:

GStreamer ffmpeg video plugin
GStreamer extra plugins
GStreamer plugins for mms, wavpack, quicktime, musepack
GStreamer plugins for aac, xvid, mpeg2, faad

4. Click Apply Changes

After installing you can open every known audio/video format supported by Gstreamer framework.


If you have problems with playing DVD's try this terminal add tutorial:


First, you need to add Medibuntu to the repository - Medubuntu (Multimedia, Entertainment & Distractions In Ubuntu) is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons (copyright, license, patent, etc).


1. For adding medubuntu to repository:


$ sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list --output-document=/etc/apt/sources.list.d/medibuntu.list


2. For adding GPG needed Key


$ sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update


3. Next enter this lines in terminal for:
DVD playback:


$ sudo apt-get install libdvdcss2


4. For Windows, Real Networks, Quick Time and other codecs add one line depending of your Ubuntu version:


Ubuntu 9.04 32bit


$ sudo apt-get install w32codecs


Ubuntu 9.04 64bit


$ sudo apt-get install w64codecs




Happy Testing...!!!


Sources :
http://www.detector-pro.com/
Read More...!!

Install Java Runtime Environment (JRE) in Ubuntu 9.04 (Jaunty)


Java is an object-oriented programming language developed by Sun Microsystems in the early 1990s. Java applications are compiled to bytecode, which at runtime is either interpreted or compiled to native machine code for execution.

The language itself derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. JavaScript, a scripting language, shares a similar name and has similar syntax, but is not directly related to Java.

Currently Ubuntu has the following Java packages


sun-java6-bin – Contains the binaries
sun-java6-demo – Contains demos and examples
sun-java6-doc – Contains the documentation
sun-java6-fonts – Contains the Lucida TrueType fonts from the JRE
sun-java6-jdk – Contains the metapackage for the JDK
sun-java6-jre – Contains the metapackage for the JRE
sun-java6-plugin – Contains the plug-in for Mozilla-based browsers
sun-java6-source – Contains source files for the JDK

Installing the Java Runtime Environment

First you need to check multiverse repository enabled or not after that open a terminal window. Since you are going to be installing the JRE and the web browser plug-in, you’ll be using the following command from a terminal



$ sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts

Once it downloads the packages and begins the installation, you’ll get a screen that contains the Sun Operating System Distributor License for Java and hit Enter to continue.
You’ll see a dialog that asks you if you agree with the DLJ license terms. Select Yes, and hit Enter; the JRE will finish installing.

Testing Java Runtime Environment
You’ll want to confirm that your system is configured properly for Sun’s JRE. This is a two-step process.First, check that the JRE is properly installed by running the following command from a terminal.
java -version
You should get similar output
Testing Java Plugin for Firefox
open Firefox and typing about:plugins in the address bar and check for java plugin


Happy Testing..!!!
Sources :
http://www.ubuntugeek.com/
Read More...!!