About Me

United States
www.krishnavedam.googlepages.com/vedam's hi everyone, Interested to do something more to our college or to our friends,and to make ourselves be special one among all others then cmon share your views and ideas suggestions here cmon in. help each other in answering their questions and through others ways. just post here ur question or else answer the posts as far and as many as u can

Saturday, July 24, 2010

How to Delete an Internet Cache on Ubuntu

The Internet cache (also known as temporary Internet files) is used to speed up the loading of web pages. When a web page is opened, it is placed in the Internet cache on your computer. When you access the site a second time the page is loaded from the cache unless it has been modified. This reduces the time needed to open the file. Ubuntu uses the Firefox web browser by default. The location of the Internet cache files are located in within the "Firefox" directory on your hard drive.

Difficulty: Easy
Instructions
Graphical
Step 1
Click on the "Places" menu in the tool bar at the top of the page.

Step 2
Click on the "Home Folder" icon.

Step 3
Click on the "View" menu at the top of the "Home Folder" window.

Step 4
Click the check box next to "Show Hidden Files." You can also press the "Ctrl" key and the "H" key at the same time from within the "Home Folder" window.

Step 5
Double-click on the ".mozilla" folder.

Step 6
Double click on the "firefox" folder.

Step 7
Double click on the folder with the ".default" extension. The complete folder name will be something like: "ciab0l6t.default".

Step 8
Double-click on the "Cache" folder.

Step 9
Press the "Ctrl" key and the "A" key simultaneously to select all the files within the cache folder.

Step 10
Right click anywhere in the folder and select "Move to trash."

Step 11
Right click on the "Trash" icon on the desktop and choose "Empty Trash" to delete the files.

Command Line
Step 1
Open a terminal window. The terminal window will be found under "Accessories" in the "Applications" menu.

Step 2
Type the command "cd .mozilla/firefox/" to navigate into the firefox directory.

Step 3
Type the command "ls" to list the contents of the firefox directory. Note the exact name of the directory with the ".default" file extension. The complete directory name will be something like: "ciab0l6t.default".

Step 4
Type the command "cd ciab0l6t.default/Cache" to navigate into the "Cache" directory. Replace "ciab0l6t.default" with the directory name from Step 3.

Step 5
Type the command "rm *" to delete the contents of the "Cache" directory.


By Kristen Leigh Grubb, eHow Contributing Writer

Friday, July 23, 2010

laptop screen randomly dims in ubuntu


There is another place to set gnome power manager options:

Start Gconf-editor:
Alt-F2 > type gconf-editor> run

Select apps menu > gnome-power-manager
There are some options to try:
- dim-on-idle
- backlight menu > idle-...

Now, notebooks have very specific hardware that have specific issues. Some options in some computer still don't work 
__________________

Thursday, July 22, 2010

ORACLE CONFIGURATION IN UBUNTU 10.04

Q. How do I install Oracle Database XE Server on my Ubuntu Linux desktop system?
A. An Oracle database consists of a collection of data managed by an Oracle database management system. You can download Oracle Database XE server for Debian, Mandriva, Novell, Red Hat and Ubuntu Linux distributions. First you need to get databases up and running in order to use Oracle. The Oracle database has had a reputation among new Linux users as difficult to install on Linux systems. Now Oracle Corporation has packaged recent versions for several popular Linux distributions in an attempt to minimize installation challenges beyond the level of technical expertise required to install a database server.

Make sure you have enough disk space and memory

If you have less than 1GB memory run the following commands to create swap space:
$ sudo dd if=/dev/zero of=/swpfs1 bs=1M count=1000
$ sudo mkswap /swpfs1
$ sudo swapon /swpfs1

Debian / Ubuntu Oracle installation

First modify /etc/apt/sources.list file:
$ sudo vi /etc/apt/sources.list
Append following line:
deb http://oss.oracle.com/debian unstable main non-free
Save and close the file. Next import GPG key:
$ wget http://oss.oracle.com/el4/RPM-GPG-KEY-oracle -O- | sudo apt-key add -
Update package database:
$ sudo apt-get update
Finally install Oracle:
$ sudo apt-get install oracle-xe
Output:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-2.6.20-15-generic linux-headers-2.6.20-15
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libaio
The following NEW packages will be installed:
  libaio oracle-xe
0 upgraded, 2 newly installed, 0 to remove and 2 not upgraded.
Need to get 221MB/221MB of archives.
After unpacking 405MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://oss.oracle.com unstable/non-free oracle-xe 10.2.0.1-1.1 [221MB]
....
....

Post-install configuration

You must configure Oracle TCP/IP port and other parameters. Simply type the following command:
$ sudo /etc/init.d/oracle-xe configure
Output:
Oracle Database 10g Express Edition Configuration
-------------------------------------------------
This will configure on-boot properties of Oracle Database 10g Express
Edition.  The following questions will determine whether the database should
be starting upon system boot, the ports it will use, and the passwords that
will be used for database accounts.  Press  to accept the defaults.
Ctrl-C will abort.

Specify the HTTP port that will be used for Oracle Application Express [8080]: [Enter key]

Specify a port that will be used for the database listener [1521]:[Enter key]

Specify a password to be used for database accounts.  Note that the same
password will be used for SYS and SYSTEM.  Oracle recommends the use of
different passwords for each database account.  This can be done after
initial configuration:secret
Confirm the password:secret

Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]:y

Starting Oracle Net Listener...Done
Configuring Database...Done
Starting Oracle Database 10g Express Edition Instance...Done
Installation Completed Successfully.
To access the Database Home Page go to "http://127.0.0.1:8080/apex"
To access the Database Home Page go to http://127.0.0.1:8080/apex. Open a web browser and type url (you need to use username "system" and password setup earlier)