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

What does execute mean in linux?

0 Answers  


How do I find command history in linux?

0 Answers  


How do you grep?

0 Answers  


What are runlevels in linux?

0 Answers  


please advice me what i have to prepare for NIC Exam(22-feb- 09). send me the question pattern for the 2 hrs exam. please sent it to manivannan_it15@yahoo.co.in

0 Answers   Google, PGE,






What is sudo bash command?

0 Answers  


What the command used for list the contents of your home directory, current directory and all subdirectories?

0 Answers  


What is the command to delete a file linux?

0 Answers  


How do I permanently set ulimit in linux?

0 Answers  


How to hide the partition in grub booting?

0 Answers  


how to create SAMBA server in fedora 9 linux ?

6 Answers   Wipro,


I have my default runlevel is init5 now i have configured to init 3,now i wanna run my system in init3 process without reboot the system .How will you do for this scenario?

6 Answers   Span Systems,


Categories