Tanti Technology

My photo
Bangalore, karnataka, India
Multi-platform UNIX systems consultant and administrator in mutualized and virtualized environments I have 4.5+ years experience in AIX system Administration field. This site will be helpful for system administrator in their day to day activities.Your comments on posts are welcome.This blog is all about IBM AIX Unix flavour. This blog will be used by System admins who will be using AIX in their work life. It can also be used for those newbies who want to get certifications in AIX Administration. This blog will be updated frequently to help the system admins and other new learners. DISCLAIMER: Please note that blog owner takes no responsibility of any kind for any type of data loss or damage by trying any of the command/method mentioned in this blog. You may use the commands/method/scripts on your own responsibility. If you find something useful, a comment would be appreciated to let other viewers also know that the solution/method work(ed) for you.

Tuesday 19 November 2013

IBM Tivoli Storage Manager (TSM)


  TSM downloads and TSM commands
 All the TSM client downloads can be performed using the below IBM link:

http://www-01.ibm.com/support/docview.wss?uid=swg24027432


TSM Commands for aix admin:

All the below commands should be executed from /usr/tivoli/tsm/client/ba/bin  directory.

1. TSM command to restore all the files from TSM backup,
 

 dsmc restore -pick -subdir=yes


2. TSM command to check the list of files backed up in tabular form in AIX server and to select & restore from the list:


 dsmc restore -inac -pick -subdir=yes
   - If we need only files  that were backed up after a certain day or date,
dsmc restore -inac -pick -subdir=yes -fromdate=01/08/11


 3. If all the latest files has to be checked and restored from TSM backup, then


dsmc restore   -subdir=yes -latest


4. TSM Command to take selective backup of entire AIX system.


nohup dsmc selective / /usr/ /var/ /tmp/ /home/ /opt/ /rest of fs in the server/ -subdir=yes > /tmp/selective.out &

 - By doing so, you can view the progress using "tail -f /selective.out"


5. To trigger incremental backup


nohup dsmc incr > /tmp/increment.out &

  - By running the command in background it helps us to monitor the progress. "tail -f /tmp/increment.out

No comments:

Post a Comment