Your Ad Here

Showing posts with label Optimize Linux system. Show all posts
Showing posts with label Optimize Linux system. Show all posts

Thursday, October 1, 2009

Add a swap file or expand existing swap space

        It’s a myth to say that Ubuntu (or any Linux) needs a swap partition.This is certainly the preferred way of working, and is most efficient,but Linux can also use a single swap file located in the root partition,just like Windows or Mac OS X. There are times when this is advantageous,such as if you’re only able to create one partition for Ubuntu (for example, Apple’s BootCamp software only allows the creation of a single non-Mac partition when dual-booting).

        To create a swap file, you need to first create a dummy file of sufficient size, then format it as a swap file, and finally ensure that Ubuntu uses it at boot-up. The following steps do just that (be extremely careful entering these commands):

1. Open a terminal window and create an empty file in the root of the file system using the dd command, as follows (this creates a 1GB file—you should ideally adjust the count= figure to at least match the size of your memory, bearing in mind that there is 1,024MB in a 1GB):

$ sudo dd if=/dev/zero of=/swapfile bs=1M count=1024

2. Now we need to format it as a swap file:

$ sudo mkswap /swapfile

3. The final step is to make Ubuntu mount it at boot, which is done by editing /etc/fstab:

$ gksu gedit /etc/fstab

Then make a new line at the bottom of the file and add the following:

/swapfile none swap sw 0 0

You can align the entries on the line under the column headings in fstab, like the other entries in the file, but it doesn’t matter so long as there is at least one space between each entry on the line. Once done, save the file and reboot your computer. 
 

Once the computer has rebooted, you can test to see if the swapfile is being utilized by typing cat /proc/meminfo|grep Swap. 

The steps above can also be used to add more swap space to a system that has an existing swap partition. You might want to do this if you’re editing extremely high-resolution photographs, for example, or working with large video files.

Reference : Ubuntu Kungfu Linux


Thanks
By:Mr.Gm
Read rest of entry

Sunday, August 9, 2009

Optimize Startup For Faster boot Times

Few operating systems seem to boot quickly enough, and unfortunately Ubuntu is amongst them. However, there are four things you can do to reduce delays and generally speed-up startup:
Reducing the boot menu delay
If you dual-boot Ubuntu and Windows on your computer the boot menu appears for 10 seconds, during which you can select either Windows or Ubuntu. If you only have Ubuntu installed, a prompt appears for three seconds telling you that you can hit a key to see the boot menu.

This delay can feasibly be reduced to one second, providing you have quick enough reactions—hitting a key during that second will cause the countdown timer to stop so you can make your choice at leisure.

Alternatively, you can configure the system so the boot menu never appears. This will deny access to the other boot menu options but if Ubuntu is the only operating system on your computer then this could be a good arrangement.
Start by opening the boot menu configuration file in Gedit:
$ gksu gedit /boot/grub/menu.lst
Then search for the line that reads timeout 10 and change the 10 to read either 1, for a one second countdown, or 0, to disable the boot menu completely.
Save the file and then reboot to test the settings



Thank's
By:Mr.Gm
Read rest of entry
 

My Room Temperature

My Pressure

My Humidity