The Visual-Guide shows you Step-by-Step How to Install and Getting-Started with Selenium Server and Selenium RC Client for Python Ubuntu Linux 12.04 Precise Desktop.
And this Visual Guide includes the Basic Screenshots of All GUI Steps involved.
The Content give Focus Only to the Essentials Instructions and Commands to make it Easier to Follow.

-
Here Download Selenium RC:
Selenium RC Server .jarLink to Download Latest Selenium RC Server -
Open Terminal Window
(Press “Enter” to Execute Commands)In case first see: Terminal QuickStart Guide.
-
Check if Java JDK is Installed
Copyjava -version
How to Install Required Oracle Java JDK on Ubuntu:
-
Start Selenium Server
Copycd /selenium-server*.jar
Copyjava -jar selenium-server-standalone-2.25.0.jar
Then the Selenium Server will Listen by Default for the Selenium Client on the 4444 Port.
-
Getting-Started with Selenium RC Python Client
-
Installing Selenium Python Client:
-
Start Browser by Selenium Python RC Client
Copypython
Copy>>>>from selenium import selenium
Copy>>>>selenium = selenium("localhost", 4444, "*firefox",
"http://www.google.com/")Copy>>>>selenium.start()
-