LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Solaris / OpenSolaris (https://www.linuxquestions.org/questions/solaris-opensolaris-20/)
-   -   backup techniques in solaris. (https://www.linuxquestions.org/questions/solaris-opensolaris-20/backup-techniques-in-solaris-423376/)

waqar 03-09-2006 10:35 PM

backup techniques in solaris.
 
hello,

i want to know the backup techniques on Solaris 9platform i.e. different methods used for backup,the bmost effective method of all ,and how can i implement them i.e whole procedure etc.

with regards,
waqar

jlliagre 03-10-2006 05:17 AM

I guess you question is both too wide and lacking information about your specific goal and constraints.

Backing up depends on a lot of factors, and is not fundamentally different with Solaris compared to other O/Ses.

On important point often overlooked is the restore phase, you'd be surprised to know that a substantial part of back-ups done do not allow to properly restore what they are supposed to.

flowerman 03-10-2006 09:56 AM

:study: first you should read about it in solaris basic admin for normal backup which can make backup with #tar cvf for regular files and another way of backup is for file system you can find it in Solaris advanced admin. by using #ufsdumpcommand.

javier.e.menendez 03-12-2006 03:24 PM

Examples:

Back up a directory into a tape:
tar cvf /dev/rmt/0 /export/home
ufsdump 0uf /dev/rmt/0 /export/home

View the files in the tape:
tar tvf /dev/rmt/0
ufsrestore tvf /dev/rmt/0

Extract the files:
tar xvf /dev/rmt/0 /export/home
cd /export/home ; ufsrestore rvf /dev/rmt/0

Ufsdump backs up ufs file systems, tar does it by directories.


All times are GMT -5. The time now is 07:04 PM.