You have an LTO cartridge and need to get its contents onto a Windows machine. What that takes depends on three things: what format the tape was written in, whether you have a drive that can physically read that cartridge generation, and the LTFS software to mount it. This article walks through each, in the order that saves the most wasted effort.
First: what format is the tape in?
An LTO cartridge is just media; what is on it depends on what wrote it. There are two broad cases:
- LTFS. The tape carries a self-describing filesystem and mounts like a removable drive. Most media-and-archive workflows (camera offload, post-production, archival software including Hiberden) write LTFS. If the tape came from that world, or is labeled with a volume name, LTFS is the likely answer.
- A backup product's own format. Tapes written by backup software such as Veeam, NetBackup, Backup Exec, or older enterprise tools are not filesystems and will not mount. You need that backup product (or a migration service) to read them; nothing in this article changes that.
If you do not know, the practical approach is to try an LTFS mount: an LTFS tape mounts and shows its files, a foreign-format tape does not.
Second: can any drive you have actually read it?
LTO drives read a limited range of older generations, and the range narrowed in recent generations:
- LTO-9 drives read and write LTO-9 and read LTO-8.
- LTO-8 drives read and write LTO-8 and read LTO-7.
- LTO-7 and earlier drives generally read two generations back and write one back.
So a current LTO-9 drive cannot read an LTO-6 cartridge, and a cartridge from the LTO-3 or LTO-4 era needs a period drive, which today means the used market or a tape services company. Check the cartridge label for its generation before buying or borrowing anything. LTFS itself exists from LTO-5 onward; older generations predate it and were almost always written in backup-product formats.
Third: the hardware path
A standalone (half-height) LTO drive typically connects over SAS, which desktop PCs do not have onboard: you add a SAS HBA card, or use a desktop drive that bridges to Thunderbolt. Rack libraries add a robot on the same idea. If the machine can see the drive in Device Manager, you are most of the way there; if not, Tape drive not detected covers the usual causes, drivers and HBA first.
Mounting the tape with LTFS
- Install the drive vendor's LTFS software. On Windows that is usually IBM's LTFS (Single Drive Edition); HPE drives use HPE StoreOpen. It is free. LTFS software for Windows maps the options.
- Confirm the LTFS Windows service is running. A fresh install often needs a service start or a reboot.
- Load the cartridge and mount it. The tape appears as a drive letter.
- Copy files off with Explorer or robocopy. Expect tape behavior, not disk behavior: sequential reads are fast, but every seek costs real time, so copying whole folders beats opening files one by one.
Reading a tape when you do not know what wrote it
Once an LTFS tape is mounted, look at the files. Archival tools usually leave self-describing structure. A Hiberden cartridge, for example, contains a standard TAR archive plus a JSON sidecar describing its contents and hashes; any LTFS-capable system can mount it and open the TAR with standard tools, no Hiberden required. That layout is documented in the on-tape format spec. Other tools write plain file trees, which are simply yours to copy.
Copying is not verifying
A completed copy proves the read calls returned, not that what landed on disk matches what the tape held, or that the tape's other files are still sound. If the data matters, hash what you copied and record the hashes, and if the cartridge is part of an archive you intend to keep, re-read it on a schedule. This is the discipline Hiberden automates as verified 3-2-1 archiving: every copy is re-read and re-hashed against a recorded SHA-256 before it counts as Verified.
When the honest answer is a recovery service
If the cartridge is physically damaged, decades old, from a dead generation with no drive you can source, or in a backup format whose software is gone, that is data recovery, a specialist service with tape-lab hardware. Archive software, Hiberden included, reads intact tapes through working drives; it is not a recovery tool for broken ones. Knowing the difference early saves buying hardware that cannot help.
Where to go next
- LTFS software for Windows: the driver and application layers, mapped
- Tape (LTO-9 / LTFS): how Hiberden works with tape
- Tape drive not detected: the states between plugging in and mounting
- How long does LTO tape last?: media life, drive life, and what actually expires first