--> for safety and encrypted the data from desination.
--> tar command will be used into linux operating system.
#tar option desination Source
cvf-->Create Verbose File Process Example: Backup from cd to hdd. #tar -cvf /root/backup/cdrom.tar /media/cdrom
Note: dont need to mount for cdrom.It willbe automaticallly on mountfor when which command to be used.
Example:
Backup from cd to New Partition hdd.
tar -cvf /dev/hda10 /media/cdrom.
Note:
when you which used to this command , before you took the new hdd partition.
To View the Backup:
tar option backup filename (desination)
tar -tvf /root/seeni/nsbel.tar /home/nsbel
t->listof backup
f-> backup media file
v->verbose
Note:
when will backup , then automatically path will be optained.
|