Support for split archives
See original GitHub issueI could use mounting split tar archive created like this: tar cf - ./folder | split --bytes=500MB - archive.tar.
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
How to Work With Multipart Zip Archives and Split Files?
In this tutorial, we'll learn how to split files, create archives right away in parts, and then restore the original content. 2. Splitting...
Read more >Splitting Zip files - WinZip
Open the Zip file. Open the Tools tab. Click the Split Size dropdown button and select the appropriate size for each of the...
Read more >How to split an archive - PKZIP & SecureZIP - Support
Right click on the file you wish to split and select Add to New Archive · Click the dropdown box for split size...
Read more >How to split zip archive into multiple blocks of a specific size
First, use the zip command to combine the split zip files into a single zip archive.
Read more >Split Files larger than 2GB using 7zip
General Instructions. back to top. TUF supports the upload of files via HTTPS (preferred and easiest method) and/or SFTP. Files ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I implemented a prototype on the develop branch. You can try it out with:
It can detect decimal, hexadecimal, and alphabetical split extensions of arbitrary length. But it assumes that the split extension sequence either begins at 0 or 1 even though
split
theoretically allows settingFROM
higher than 1. Furthermore, by defaultsplit
will create files without any dot but ratarmount will only look for extensions, i.e., the prefix given tosplit
is required to end with.
for compatibility.It does not yet work recursively if there is a split archive inside another archive but I’ll probably implement that before a release.
I also decided to make the split file detection the default behavior and offer a
--no-detect-split
option. This option is also not yet implemented.You can try it out with:
In this example, I specified the
.001
file but it also works with any other part, e.g.,.002
. It even should work when specifying all of the partsratarmount random.tar.[0-9][0-9][0-9] mountPoint
. But the parts should not be interspersed with other archives to be union mounted because the order is important for the resulting merged view. E.g.:ratarmount foo.tar random.tar.001 bar.tar random.tar.002 mountPoint
. In that case, ratarmount will print an error because the “same”random.tar
archive appears at conflicting positions.Closed with d5bb6e4 in master. The release should follow in the next weeks.