TazPkg¶
Note
SliTaz has published no stable ISO since 5.0 (2023) but shows active development into 2026; tazpkg remains its native package manager.
- ID
tazpkg- Home page
- Platforms
🐧 Linux (SliTaz GNU/Linux only)
- Operations
installed·search·install·upgrade·upgrade_all·remove·sync·cleanup- purl types
pkg:tazpkg- CLI name
tazpkg- Every call
tazpkg <command> --output=raw- Forced environment
LC_ALL=C- Issues and PRs
- Source
SliTaz GNU/Linux’s package manager.
Documentation:
Note
tazpkg decorates every listing with localized, colorized titles, separators
and count footers, with no terminal detection: LC_ALL=C pins the text to
English, --output=raw switches the decorations to plain text, and any
remaining ANSI sequence is stripped before parsing. Data rows are then
matched by their digit-led version column, which no decoration line carries.
Note
No outdated operation: tazpkg up --check requires root and recharges
the package lists from the mirror even when only listing, so there is no
cleanly read-only upgradable listing.
What mpm adds to tazpkg¶
Through mpm, tazpkg gains --exact and --extended search, to narrow to exact names or match descriptions.
Bigger still, mpm reaches across every manager at once: mpm installed and mpm outdated cover tazpkg alongside every other manager you run in one table, mpm upgrade --all updates them together, and mpm sbom exports the whole machine as one bill of materials.
Every mpm command also gains --dry-run and --plan previews, cross-scheme version comparison and purl identifiers. See manager augmentations for how each one is built.
Your tazpkg commands, in mpm¶
You already know tazpkg: each operation maps one-to-one onto mpm, in an interface shared by every manager.
To… |
With |
With |
|---|---|---|
List what’s installed |
|
|
Search for a package |
|
|
Install a package |
|
|
Upgrade one package |
|
|
Upgrade everything |
|
|
Remove a package |
|
|
Clear caches |
|
|
Prefix any command above with --dry-run to simulate the underlying manager calls without touching the system: the safe way to watch what mpm would do before trusting it.
Operations¶
Operation |
Supported |
Notes |
|---|---|---|
|
✓ |
|
|
||
|
||
|
✓ |
exact and extended search backfilled by |
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
Selecting and configuring tazpkg¶
Deselect tazpkg for a single run with --no-tazpkg, or persist the choice in your configuration:
[mpm]
tazpkg = false
The arguments and environment variables listed in the box atop this page are forced on every tazpkg call, so runs stay quiet, non-interactive and reproducible: the defaults you would set in CI anyway.
Keep it enabled but tune how mpm drives it with a per-manager override:
[mpm.managers.tazpkg]
timeout = 900
mpm config-template tazpkg prints every overridable attribute as a ready-to-paste block.
Recipes¶
A few jobs you would otherwise script around tazpkg, one mpm command each:
Snapshot and clone a machine:
mpm --tazpkg dump tazpkg.toml, thenmpm restore tazpkg.tomlon the next one.Export a compliance SBOM:
mpm --tazpkg sbom(CycloneDX by default,--spdxfor SPDX).
Privilege escalation¶
System-wide manager: mpm wraps its privileged operations in sudo out of the box. Instead of letting the tool prompt mid-run, mpm primes the credential cache up-front, with a single branded password prompt at most. Turn escalation off for rootless setups with --no-sudo or the per-manager sudo override.
See privilege escalation for the full policy.
Cooldown¶
State of TazPkg’s release-age gating, from the cooldown support table:
Status: ❌ None (SliTaz)
A cooldown only pays off where a compromised release can be withdrawn while the clock runs, and can only be emulated where the registry dates its releases. From the retraction table:
Registry: Distro binary archives (
pkg:deb,pkg:rpm,pkg:alpm,pkg:apk)Retraction: Index revert: removal is an archive operation and the mirror is rebuilt without the package. Debian, for one, requires filing an
RM:bug againstftp.debian.org(developers-reference)Publish date: ❌ the version string is the distro maintainer’s build, carrying no upstream publication date
With --cooldown set, mpm skips this manager’s install and upgrade operations rather than run them unguarded (fail-closed); --allow-unsupported-managers opts back in.
Version probe¶
The version is extracted from the output of awk -F $1=="tazpkg"{print $2} /var/lib/tazpkg/installed.info with:
r"^(?P<version>[\d.]+)$"
Reference traces¶
Raw native outputs captured in the manager source: the reference mpm’s parsers were written against. If you know TazPkg well and a transcript below looks wrong, or a newer release changed its output format, report it.
$ tazpkg list --output=raw
List of all installed packages
================================================================================
busybox 1.36.0 base-system
nano 6.2 editors
================================================================================
2 packages installed.
Feed any of these through mpm and the raw output becomes one uniform table, the same shape for every manager: filter it, project columns, or export it (mpm --tazpkg installed --output json, or csv, toml, yaml), each package carrying a purl and a version comparable across managers.
Changelog¶
7.2.0(2026-07-09)Add TazPkg (SliTaz GNU/Linux) package manager with
installed,search,install,upgrade,remove,syncandcleanupsupport.