Tuesday, January 6, 2009

Increasing the swap space

How can you increase your swap space

For some application sometimes you will need more swap space than that what you have now. In my case I was having only 840 MB and when I tried to install Oracle 10g server i couldn't install it as it requires more swap space. So I had to increase my swap space. First you have to see how much swap space you are having now. For that go to terminal and type swapon -s which will show you the swap space and it will show you something like this

asha@asha:~$ swapon -s
Filename Type Size Used Priority
/dev/sda4 partition 979956 313344 -1

Now you can take some space from one of your partitions. And if you are having another partition other than / then better to take from that. And one warning is there.If you have some important data you better back up.

In order to create supplementary swap file you are using dd (data dump) command.You have to do it in the root.

So type in the terminal

dd if=/dev/zero of=/extra-swap bs=1M count=1024

We'll use the mkswap command to make our file swap-consumable for the Linux kernel.

mkswap /extra-swap

To turn on the swap file run

swapon /extra-swap

Now swapon -s will show the new file also.

And to make this swap on even after booting your machine you have to

cp /etc/fstab /etc/fstab.mybackup

Now its done. And you can continue with the installation.

Oracle Client installation

How can You Install Oracle client in ubuntu

First you have to get the Debian file. You will get it from the link : http://www.oracle.com/technology/software/products/database/xe/htdocs/102xelinsoft.html

Here you have to download the Oracle database 10g express client. If ou are using ubuntu then you have to get the *.deb file.You may have to make an account and get a username and password in that site For installing double click on the file you have downloaded.And follow the procedure. Then it will get installed and you can access the SQL CLI from the Applications --> Oracle client 10g Express edition.

If it is showing some error when you try to connect to the server, as shown in the figure.

Image:Oracle.png

Then you have to open the file nls_lang.sh. And in that file there will be some bugs. In that file make sure that in the lines 106 & 108 there is only single brackets. This will clear the bug and you can get it running.


Make the ntfs file system writable

How Can I Make the ntfs file system writable?

The ntfs file systems were read only on Linux. On the 14th of July 2006, a developer of the linux-ntfs team, Szabolcs Szakacsits, revolution this area by releasing a new driver ntfs-3g which claimed to provide full read/write support for all NTFS partition. After months of successful testing by hundreds of thousands of users in beta status, ntfs-3g is now fully stable.

For mounting NTFS you can use one small tool called NTFS-3G this is very powerfull and simple tool.

For those who are using Ubuntu 7.04 Feisty Fawn

Open the terminal and type $ sudo apt-get install ntfs-3g ntfs-config . This will make your windows ntfs partitions writable.

For those who are using Ubuntu 6.10 Edgy Ft.

Go to CLI . Then there type $ sudo gedit /etc/apt/sources.list

Then the gedit will open and there you have to add teh following lines in the last. Then save the file and exit.

deb http://givre.cabspace.com/ubuntu/ edgy main
deb http://ntfs-3g.sitesweetsite.info/ubuntu/ edgy main
deb http://flomertens.keo.in/ubuntu/ edgy main

Now update the source list by using the command $ sudo apt-get update

If you want to install ntfs-3g run the following command from your terminal $ sudo apt-get install ntfs-3g

Setting Themes

The first thing I do, when I install a linux will be making the machine look good. One of which is selecting a good theme. The theme plays a very important role in making a system user friendly especially when you install debian. The fresh installed system will have a classic look which is not much accepted by a person who is using windows xp or vista. I had an experience once. I was installing debian and after installation one of my friend who was watching the installation said "Oh GOD linux!!!" . Then I changed the themes and the looks of task bar, my friend said "wow Linux looks so great!!! "

The wallpaper plays an important role in looks. Get an eye freshening wallpaper on to your desktop or laptop.

The theme includes how the system should look like. The color of the window borders, task bar, the icons, all can be changed while setting the theme. The Themes can be access by:

Desktop --> Preferences --> Theme

There you can try selecting different themes which will change the task bar, icons and window borders.You can save new themes by changing the parameters. The parameters can be accessed by selecting the Theme Details. For deifferent combinations you can save themes.

Also you can download debian themes from sites and you can install it from the Theme window through install .
As on the figure you can get a nice task bar at the bottom by simply customizing the task bar. For this first you better add the windows list to the upper panel by right clicking on it and selecting Add to Panel . Then you can add show desktop to your upper panel. Now delete the lower panel and create new one by right clicking on the upper pannel, by selecting the New Pannel.

Now from the bottom new pannel select Properties .
Make the Size 50 , untick Expand, Autohide and Show hide buttons. Now select Background tab and select Solid Color sliding the Style to the left will make it transparent. Then add different applications by adding to panel which will list on your panel as icons. This will give a good look which is something similar to MAC os eventhough it is not a dock.

If you are interested in playing more with display effects you can get compiz-fusion installed on your machine.