Solaris Server Backup

How to take backup from Solaris Server?

Questions by pradeep chakravarty

Showing Answers 1 - 15 of 15 Answers

ranjith54

  • Mar 17th, 2010
 

Every UNIX flavour Operating systems Use thier own flavour specific commands to backup the Data on the server
In Solaris they use
Ufsdump is the cmd to backup a file system
Ufsrestore is the command to restore the data
#ufsdump 0cuf /dev/rmt/0 /export/home
#ufsrestore if /dev/rmt/o  /home

  Was this answer useful?  Yes

UncaAlby

  • Apr 20th, 2010
 

You can use either the "tar" or the "cpio" commands for a relatively system-indendent backup.  I recommend writing your own script and setting it up to run from a cron job.  For example, you might want to backup only the user data.  If the OS and your applications crash, they can be re-installed from original media.  Just make sure you've recorded all your configuration changes somewhere safe.

And, if you can acquire the resources (such as an extra test platform), you should test a restore procedure at least once.  You don't want to find out the hard way if there's a problem with the backup.

  Was this answer useful?  Yes

Pardeep Thakur

  • Jul 12th, 2012
 

In running server you can use following command
#fssnap -F ufs -o bs=/var/tmp /export/home
#ufsdump 0uf /dev/rmt/0 /dev/fssnap/0

  Was this answer useful?  Yes

osmond

  • Sep 14th, 2012
 

The arp command is used to manage entries in the ARP cache. To display the entries in the ARP cache, use the –a option,

  Was this answer useful?  Yes

vivek

  • Dec 17th, 2012
 

boot -s
fsck /dev/rdks/c1t0d0s0
#ufsdump 0uf /dev/rmt/0 /dev/rdsk/c1t0d0s0
for restore
#ufsrestore /dev/rmt/0 /

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions