# Installer cabextract avec Homebrew, apk, apt, dnf, MacPorts, Nix, pacman, zypper

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de cabextract pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:cabextract
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install cabextract
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install cabextract
```

  Preuve: MacPorts ports tree: archivers/cabextract/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add cabextract
```

  Preuve: Alpine Linux edge package indexes: cabextract from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install cabextract
```

  Preuve: Debian stable package indexes: cabextract from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install cabextract
```

  Preuve: Fedora Rawhide package metadata: cabextract from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#cabextract
```

  Preuve: nixpkgs package indexes: pkgs/by-name/ca/cabextract/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S cabextract
```

  Preuve: Arch Linux sync databases: cabextract from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install cabextract
```

  Preuve: openSUSE Tumbleweed package metadata: cabextract from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## Faits du paquet

- **Clé du paquet:** brew:cabextract
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/cabextract>
- **Version:** 1.11
- **Résumé source:** Extract files from Microsoft cabinet files
- **Page d'accueil:** <https://www.cabextract.org.uk/>
- **Docs amont:** <https://www.cabextract.org.uk/>
- **Licence:** GPL-3.0-or-later
- **Archive source:** <https://www.cabextract.org.uk/cabextract-1.11.tar.gz>
- **Généré:** 2026-08-04T22:13:35+00:00

## exécutables

- cabextract (cli)
- cabextract (alias)

## Comportement d'installation

- hook post-installation: non défini
- Bouteille: disponible sur arm64_big_sur, arm64_linux, arm64_monterey, arm64_sequoia, arm64_sonoma, arm64_tahoe, arm64_ventura, big_sur, monterey, sonoma, ventura, x86_64_linux

## Version et fraîcheur

- page générée: 2026-08-04
- version du gestionnaire: 1.11
- données locales: OK
- dépôt amont: https://www.cabextract.org.uk/
- info: No package-manager update timestamp was available.
- info: Release/tag comparison is only available for GitHub repositories.
## Historique du projet et usages

cabextract is a small, long-lived Free Software command-line utility for extracting Microsoft Cabinet files. It is tightly associated with Stuart Caie's libmspack library and remains a standard Unix-side tool for unpacking .CAB archives.

### Historique du projet

cabextract's README credits Stuart Caie and gives a 2000-2023 copyright span. The project focuses on Microsoft Cabinet archives, the format Microsoft used for software distribution and Windows Font Packs, and it explicitly distinguishes those archives from InstallShield cabinet files.

Version 1.0 was a major architectural point: the NEWS file says cabextract moved the hard decompression work into libmspack, making extraction more robust and faster while keeping the cabextract CLI focused on archive discovery, listing, filtering, testing, and extraction.

The official site describes cabextract as based on the portable LGPL libmspack library. libmspack itself supports Microsoft compression formats including SZDD, KWAJ, CAB, CHM, and Exchange Offline Address Book LZX data.

### Historique d'adoption

cabextract's adoption comes from solving an unglamorous but persistent packaging problem: Unix, BSD, macOS, Cygwin, DOS, and Amiga users often need to unpack Microsoft cabinet archives without Windows tooling. The official download page links to Debian, Ubuntu, Fedora, FreeBSD, NetBSD, OpenBSD, Homebrew, MacPorts, Cygwin, DOS/FreeDOS, and Amiga packages.

It became part of the background infrastructure of packaging, reverse-engineering, and driver/font extraction workflows because it is scriptable, small, and available in many distribution repositories.

### Modes d'utilisation

Common usage is direct and Unix-like: cabextract file.cab extracts an archive, cabextract executable.exe searches for embedded cabinets, cabextract -d selects an output directory, cabextract -F filters filenames, cabextract -l lists contents, and cabextract -t tests extraction integrity.

The tool also handles multipart cabinet sets and Windows CE installation cabinets, and its documentation includes magic-file rules to help distinguish Microsoft cabinets from InstallShield files.

### Pourquoi les passionnés de paquets s'y intéressent

For package nerds, cabextract is classic plumbing: tiny surface, high leverage, and useful exactly when an upstream ships Windows-era cabinet payloads inside installers or self-extracting files. It is the sort of utility that quietly keeps cross-platform packaging and archival workflows sane.

Its libmspack relationship matters because it separates archive-format knowledge from CLI ergonomics, letting other software use the library while packagers keep a simple cabextract executable.

### Chronologie

- 2000: cabextract copyright history begins.
- Version 1.0: cabextract moved core decompression work to libmspack.
- 2013-2015: 1.5 fixed crashes and hangs found with afl fuzzing by Debian contributors.
- 2023-02-05: libmspack 0.11alpha was released.
- 2023-02-24: cabextract 1.11 was released.

### Related projects

- libmspack is the library cabextract uses for Microsoft compression formats.
- Microsoft Cabinet is the archive format cabextract targets.
- InstallShield cabinet files are explicitly out of scope and detected separately.
- Windows CE cabinet tooling is included through cabextract's related scripts and documentation.

### Sources

- <https://github.com/kyz/libmspack/tree/master/cabextract>
- <https://raw.githubusercontent.com/kyz/libmspack/master/cabextract/NEWS>
- <https://raw.githubusercontent.com/kyz/libmspack/master/cabextract/README>
- <https://www.cabextract.org.uk/>
- <https://www.cabextract.org.uk/libmspack/>


## Notes de sécurité

narrow executable package without higher-risk signals.

- **Risque Geiger:** vert / faible
- narrow executable package without higher-risk signals

## Détails de la base source

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** cabextract
- **Version Scheme:** 0
- **Revision:** 0
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** stable

## Autres enregistrements de gestionnaires de paquets

- Debian apt - cabextract - 1.11-2: normalized package name match | Debian stable package indexes: cabextract from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Microsoft Cabinet file unpacker
- Nix - cabextract: normalized package name match | nixpkgs package indexes: pkgs/by-name/ca/cabextract/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - cabextract - 1.11-2: normalized package name match | Ubuntu 24.04 LTS package indexes: cabextract from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Microsoft Cabinet file unpacker
- apk - cabextract - 1.11-r2: normalized package name match | Alpine Linux edge package indexes: cabextract from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Tool for extracting Microsoft cabinet files | https://www.cabextract.org.uk/
- apk - cabextract-doc - 1.11-r2: normalized package name match | Alpine Linux edge package indexes: cabextract-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Tool for extracting Microsoft cabinet files (documentation) | https://www.cabextract.org.uk/
- dnf - cabextract - 1.11-11.fc45: normalized package name match | Fedora Rawhide package metadata: cabextract from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | Utility for extracting cabinet (.cab) archives | https://www.cabextract.org.uk/
- pacman - cabextract - 1.11-3: normalized package name match | Arch Linux sync databases: cabextract from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | A program to extract Microsoft cabinet (.CAB) files | https://www.cabextract.org.uk/
- zypper - cabextract - 1.11-1.12: normalized package name match | openSUSE Tumbleweed package metadata: cabextract from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | A Program to Extract Microsoft Cabinet Files | https://www.cabextract.org.uk/
- MacPorts - cabextract: normalized package name match | MacPorts ports tree: archivers/cabextract/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1


## Liens liés

- [Terminal utility packages](https://pkg.so/fr/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Archive and compression packages](https://pkg.so/fr/archive-compression-tools/) - Matched archive or compression metadata.
- [Networking and protocol packages](https://pkg.so/fr/networking-protocol-tools/) - Matched network, protocol, or remote-service metadata.
- [Homebrew utility packages](https://pkg.so/fr/brew-utility-packages/) - Matched Homebrew package provider.
- [winetricks](https://pkg.so/fr/brew/winetricks/) - Popular package that depends on this formula.
- [unzip](https://pkg.so/fr/brew/unzip/) - Shares pkgdb curated category or tags: archive-extraction, cli, compression, system.
- [unp](https://pkg.so/fr/brew/unp/) - Shares pkgdb curated category or tags: archive-extraction, cli, compression, system.
- [xz](https://pkg.so/fr/brew/xz/) - Shares pkgdb curated category or tags: cli, compression, system.
- [zstd](https://pkg.so/fr/brew/zstd/) - Shares pkgdb curated category or tags: cli, compression, system.
- [lz4](https://pkg.so/fr/brew/lz4/) - Shares pkgdb curated category or tags: cli, compression, system.
- [gnu-tar](https://pkg.so/fr/brew/gnu-tar/) - Shares pkgdb curated category or tags: cli, compression, system.
- [libzip](https://pkg.so/fr/brew/libzip/) - Shares pkgdb curated category or tags: cli, compression, system.
- [lzip](https://pkg.so/fr/brew/lzip/) - Shares pkgdb curated category or tags: cli, compression, system.
- [unshield](https://pkg.so/fr/brew/unshield/) - Local package facts share a topical domain. Shared terms: cab, cabinet, cli, extract, extraction.

## Combined YAML source

View the package source record on GitHub. [combined/cabextract.yml](https://github.com/mxcl/pkgdb/blob/main/combined/cabextract.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- pkgdb category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
