Skip to content
Allin

Create a TAR file

Bundle several files into an uncompressed .tar, the archive Unix tooling expects.

10 / 10 free files today

Create a TAR file works straight from this page — free, instant, nothing to install. It sits under Archives & splitting in our catalogue, alongside Create a ZIP file and TAR to ZIP.

How to use it

  1. Open the tool — no signup or install needed.
  2. Enter your input or adjust the available options.
  3. Get your result instantly, then copy or download it.

Frequently asked questions

What is Create a TAR file?

Bundle several files into an uncompressed .tar, the archive Unix tooling expects.

When would I actually use this?

Bundling several files into one to send, opening an archive without installing anything, and cutting a file that exceeds an attachment or upload limit into pieces that can be put back together.

What is the most common mistake?

Treating the parts of a split file as files. A piece is a slice of bytes, not a smaller version of the original: it opens as nothing, and the whole is recoverable only if every part is present, unrenamed and in order. Losing one part loses the file.

How is Create a TAR file different from Create a ZIP file?

They sit next to each other but answer different questions: Create a ZIP file is the one to open when you need it to bundle several files into one ZIP, choosing how hard to compress them. Pick whichever matches what you're starting from — both are free.

Is there a tool for the next step?

TAR to ZIP is the closest one after this: Repack a .tar, .tar.gz or .tgz archive as a ZIP that Windows opens without extra software.

What else is worth having open alongside it?

ZIP to TAR and Extract a ZIP file — they come up in the same task often enough to be worth a second tab.

Where do the figures come from?

ZIP and TAR are open container formats with published layouts, and both are read and written here in the browser. A container records names, sizes and order; it does not record who made it or whether the contents are what they claim, so an archive is a wrapper, never a guarantee.

Further reading

All guides
ComparisonZIP or TAR: Which One, and Why It MattersOne structural difference explains everything else: TAR does not compress, it only stacks; ZIP compresses each file on its own. Measured on 60 small source files, that is the difference between 1,809 bytes and 14,686.How-toSplitting a File That Is Too Big to SendThe last resort when nothing can be compressed further. It works, and it has three sharp edges: the parts are useless on their own, the order is absolute, and the megabyte you set is not the megabyte the limit means.ExplainerWhy Compressing a File Twice Does Not Halve It TwiceThe first pass takes 30% off and the second takes nothing. That is not a broken tool — it is the difference between removing redundancy and removing information, and knowing which one you are doing tells you when to stop and what a second attempt actually costs.GuidePull the Plug: Which Online File Tools Actually Upload Your DocumentEvery online file tool promises your document is safe. Almost none tell you whether it leaves your machine at all. There is a five-second test that settles it without reading a single privacy policy, and it works on any tool — including this one.ExplainerConverting Formulas to Values Keeps the Cached Answer, Not the CalculationA spreadsheet file stores both the formula and the last answer Excel computed. Stripping the formula leaves the stored answer — and leaves a blank wherever the file never carried one.ExplainerThe Number 1 and the Text "1" Are Not DuplicatesDeduplication compares whole rows exactly, cell type included. Five identical-looking rows came out as three, because one held a number, one a string and one a string with a leading space.