The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: Tar backup
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 05-17-2006
azrealhk azrealhk is offline
Registered User
 

Join Date: Jul 2002
Location: HK
Posts: 20
You tar file is too big.

split the tar into seperate commands

e.g.
tar -cvf backup1.tar / /var /opt
tar -cvf backup2.tar /usr /home

you get the idea
Reply With Quote