Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Explain Backup Managment commands in Linux.

Answers were Sorted based on User's Feedback



Explain Backup Managment commands in Linux...

Answer / rahul gupta

Backup Management can be done with following commands
1. tar
2. dd
3. mt
4. cpio

Is This Answer Correct ?    13 Yes 2 No

Explain Backup Managment commands in Linux...

Answer / susheel narayan singh

to take a backup of a file if file name is susheel --
# tar -cvf file susheel


c for create
v for verbose
f for file

Is This Answer Correct ?    6 Yes 1 No

Explain Backup Managment commands in Linux...

Answer / arnab

tar -jcvf log.tar.gz log
where j = .gz extention
c = create
v = varbose
f = file
or
tar -zcvf log.tar.bz2 log
where z = .bz2 extention
c = create
v = varbose
f = file

Is This Answer Correct ?    1 Yes 0 No

Explain Backup Managment commands in Linux...

Answer / kashinath

#tar -icvf file name
then fire another command
#tar file (source)name.tar (destination path)

Is This Answer Correct ?    1 Yes 1 No

Explain Backup Managment commands in Linux...

Answer / rajshree

To take the backup of complete file by using tar command.
tar -cvf <destination directory> <source directory>

To take the backup of selected file by using the CPIO command
ls -d <source file> | cpio -ov > <destination file>.cpio

To take the back up remotely by using the scr command
scr -rv <source directory> <dest.sys ip>:<destination derectory>

To take full,incrimental,differential backup by using the DUMP command.
For full backup command is
dump 0uf <dest file> <source file>
For incremental backup command is
dump -2uf <dest file> <source file>...This is for 1st incrimental.
For 2nd incrimental command is
dump -3uf <dest file> <source file>
The value need to be increase depends on no of incrementals.

For the differential backup command is
dump -1uf <dest dir> <source dir>

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Linux Commands Interview Questions

Which command is used to find what is in your home directory?

0 Answers  


Hi All of Unix/Linux professional Q.Why soft link file not open by cat command. Ihave make following symbolic link but when i open with #cat linkfilename it does not oped please see the following code and try to answer. # ln -s file1 ~/mydir/filea [root@dhcppc0 ~]# cd mydir [root@dhcppc0 mydir]# ls -l total 4 lrwxrwxrwx 1 root root 5 2010-04-04 09:04 filea -> file1 [root@dhcppc0 mydir]# cat filea cat: filea: No such file or directory

2 Answers  


What would be the result of the command paste -s dog cat?

0 Answers  


How does grep work in linux?

0 Answers  


How do I run whois command?

0 Answers  


How can I check the exit status of my previous command in Linux operating system?

0 Answers   SwanSoft Technologies,


What does cd do in linux?

0 Answers  


What is the syntax of mkdir?

0 Answers  


What is history command in linux?

0 Answers  


What does chmod 777 do?

0 Answers  


how to call recursive grep function?

2 Answers  


When you issue the command ls -l, what signifies the first character of the resulting display file? 701 What command can you use to determine the purpose of any command?

4 Answers  


Categories