Pages

Thursday, June 27, 2013

how to recover grub



To recover grub boot loader install Easy bcd you can download it from cnet

1. Once you have installed easy bcd open it

2.Go to option add new entry in left pan

3. Now click on tab linux /BSD

4. Select grub2 (which is latest grub boot loader) from type

5. Type any name say "my linux" which you want to display in menu

6. Click on Add entry, you will see message flashing in left bottom corner "my linux has been added successfully"

Now restart your system and enjoy.

> do suggest/comment

Tuesday, June 11, 2013

why should i hire you

    This is very famous HR interview question and idea behind asking this question is that they want to know your strengths. it's indirect way to ask your strength like "what are your strength". so you should tell your strengths like i am good at this and that (your technical strengths like any subjects,communication skills, fast learner etc.).


    so finally you need to tell your strengths but do not say that i am the best and you should hire me and yes do not mention so many  strengths even if you have.only tell few of them at which you are strong.
   
   

Sunday, June 9, 2013

How to install .tar.gz in ubuntu

For example you want to install vlc.tar.gz file in ubuntu then first you need to extract this .tar.gz file using the following command

$ tar -xvzf vlc.tar.gz

one folder will be created with name vlc, go to this folder  and now run these commands

$./configure
$make
$make install

if any dependency error message is shown then resolve that dependency and then run
$make
$make install


Sunday, June 2, 2013

What is LPR command in linux

lpr command is used to give file for printing to the destined printer.
there are few options for lpr command

-P prints file to the named printer or give address of printer

-# sets number of copies to be printed between 1 to 100

for example
lpr -P addressofprinter -# 4 filename1 filename2

you can print multiple files at a time. number after -# is number of copies to be printed.