The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




Thread: Tar backup
View Single Post in the UNIX and Linux 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