Showing posts with label BIOS. Show all posts
Showing posts with label BIOS. Show all posts

Sunday, January 19, 2014

Increase Component’s Clock Rate With Over clock



In order to increase the clock speed of any component we can use phenomena called as over clocking. It increases the component’s clock rate, running it at a higher speed than it was designed to run. Increasing a component’s clock rate causes it to perform more operations per second, but it also produces additional heat. It guides the user for squeezing the component’s performance.

What is actually the process it involves?

Friday, September 20, 2013

Reset BIOS Supervisor Password

Many times it happens that our computer vendor often lock our computer BIOS with Supervisor Password. So, if we ever need to change boot device settings or any other settings in our BIOS then we have to go to the service center to do it. Here, I will show you how to bypass the Supervisor Password and reset it.

How To:

  1. Switch On the Laptop.
> Go to BIOS Setup on startup. The BIOS will request for Supervisor password. Enter anything, for 3 times, and then the system will display a System Disabled message.
Enter Wrong Password
Ignore Warning


  1. System Disabled Code.
> Write down the code displayed below the System Disabled message. You need to generate the BIOS backdoor password.

Note down this code


  1. Backdoor Password Generation.
> On a computer with Internet connection, go here and enter the code, you got in previous step. This site will generate a backdoor password for you.
Go to the link provided


  1. Restart Computer.
> Again go to BIOS Setup screen, again it will ask for Supervisor password, now enter the Backdoor password that you got from the website. There you go, you just unlocked your BIOS. 
Enter the password you got from website
 

  1. Change Password.
> Now go to Security tab in the BIOS, and change Supervisor password to whatever you want or keep it blank. Whenever it asks for old password, type in the Backdoor password.
Now change the password

It is as simple as that..!!

Sunday, February 3, 2013

Logical Volume Management In Ubuntu



Logical Volume Management (LVM) is a disk management option that every major Linux distribution includes. Whether you need to set up storage pools or just need to dynamically create partitions, LVM is probably what you are looking for.

                      
                                         Fig1: Logical Volume Management
 What is LVM?

Logical Volume Manager allows for a layer of abstraction between your operating system and the disks/partitions it uses. In traditional disk management your operating system looks for what disks are available (/dev/sda, /dev/sdb, etc.) and then looks at what partitions are available on those disks (/dev/sda1, /dev/sda2, etc.).



Fig2: LV  Manager

With LVM, disks and partitions can be abstracted to contain multiple disks and partitions into one device. Your operating systems will never know the difference because LVM will only show the OS the volume groups (disks) and logical volumes (partitions) that you have set up.
Because volume groups and logical volumes aren’t physically tied to a hard drive, it makes it easy to dynamically resize and create new disks and partitions. In addition, LVM can give you features that your file system is not capable of doing. For example, Ext3 does not have support for live snapshots, but if you’re using LVM you have the ability to take a snapshot of your logical volumes without unmounting the disk.

When To Use LVM?

The first thing your should consider before setting up LVM is what you want to accomplish with your disks and partitions. Some distributions, like Fedora, install with LVM by default.
If you are using Ubuntu on a laptop with only one internal hard drive and you don’t need extended features like live snapshots, then you may not need LVM. If you need easy expansion or want to combine multiple hard drives into a single pool of storage then LVM may be what you have been looking for.

Setting up LVM in Ubuntu

First thing to know about using LVM is there is no easy way to convert your existing traditional partitions to logical volumes. It is possible to move to a new partition that uses LVM, but that won’t be something that we will cover in this article; instead we are going to take the approach of setting up LVM on a fresh installation of Ubuntu 11.10.To install Ubuntu using LVM you need to use the alternate install CD. Download it from the link below and burn a CD or use unetbootin to create a USB drive.

 Fig3: Ubuntu Edition Screen

Boot your computer from the alternate install disk and select your options up until the partition disks screen and select guided – use entire disk and set up LVM.

 Fig4: Partition Disks 

Select the main disk you want to use, typically your largest drive, and then go to the next step.

 Fig5: Disk to Partition

You will immediately need to write the changes to disk so make sure you selected the right disk and then write the changes.

 Fig6: Changes Screen

Select the size you want the first logical volume to be and then continue.

 Fig7: Partitioning Disks

Confirm your disk partitions and continue with the installation.
 Fig8: Changes Screen

The final step will write the GRUB boot loader to the hard drive. It is important to note that GRUB cannot be on an LVM partition because computer BIOS’s cannot directly read from a logical volume. Ubuntu will automatically create a 255 MB ext2 partition for your boot loader.

  Fig9: GBL Installation Permission Screen

After the installation is complete, reboot the machine and boot into Ubuntu as normal. There should be no perceivable difference between using LVM or traditional disk management with this type of installation.


Fig10: Final Completion Screen

This is how the LVM is installed on UBUNTU Linux.