|
Search Forums:
|
|||||||
| Forums | Register | Forum Rules | Linux and Unix Links | Man Pages | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Split the file in tar
I want to use tar to pack all /home in a file, but it is large than 4 GB and can't burn to DVDR for storage. How can I set in tar to make it will split in every 4GB size ?
|
| Sponsored Links | |
|
|
|
#2
|
|||
|
|||
|
tar n split
tar and then split it into manageable sizes. Code:
split -b 4096m test.tar reqd_filename I am not sure if it is a good option. |
| Sponsored Links | ||
|
|
|
#3
|
|||
|
|||
|
how can I combine into one? using the same command 'split'?
|
|
#4
|
|||
|
|||
|
dear
compress command you can use. the write cd/dvd it's a safer way. or use man command for join the file |
| Sponsored Links | |
|
|
#5
|
|||
|
|||
|
does Tar support splitting the *.tar file into specific size?
|
| Sponsored Links | |
|
|
#6
|
|||
|
|||
|
dear
tar can be used to create archives of compressed files that are uncompressed when they are extracted compress ./tmp/* tar Cvf tmpZ.tar ./temp/* SAME HELP YOU CAN FIND WITH man tar |
| Sponsored Links | |
|
|
#7
|
|||
|
|||
|
Quote:
Quote:
|
| Sponsored Links | ||
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Split large file and add header and footer to each file | ashish4422 | Shell Programming and Scripting | 1 | 04-15-2008 06:12 AM |
| Split a file with no pattern -- Split, Csplit, Awk | madhunk | UNIX for Dummies Questions & Answers | 10 | 12-17-2007 11:57 AM |
| split the file name | rinku | Shell Programming and Scripting | 1 | 05-28-2007 01:47 AM |
| Need to split the file | getdpg | Shell Programming and Scripting | 11 | 09-04-2006 03:08 AM |
| How to split file by tags inside file? | spookyrtd99 | Shell Programming and Scripting | 1 | 07-31-2006 12:50 AM |
|
|