← All commands
Topic hub Security & Permissions
Windows Linux Security & Permissions Integrity

Windows sigcheck equivalent in Linux

Checks installed files against package checksums.

Windows sigcheck
Linux equivalents
Debian/Ubuntu apt package: debsums
debsums -s
Fedora rpm database
sudo rpm -Va
Arch pacman database
sudo pacman -Qkk

Overview

What this command does

Checks installed files against package checksums.

Migration tip: Check the distro-specific rows before copying; package names and service names can differ even when the tool name is similar.

Practical tasks

Common use cases

Verify installed package files

Checks installed files against package checksums.

debsums -s

Verify installed package files

debsums --help

Show command help when supported

man debsums

Open the manual page when installed

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

debsums -s

Walkthrough

Examples with explanations

# Windows equivalent: sigcheck
debsums -s

Reference

Common options and variations

Command or optionUse
debsums -sVerify installed package files
debsums --helpShow command help when supported
man debsumsOpen the manual page when installed

Distro differences

Debian/Ubuntu vs Fedora vs Arch

The equivalent is shown for Debian/Ubuntu, Fedora and Arch. Some rows use a different package manager or helper tool where Linux distributions commonly diverge.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu apt package: debsums debsums -s Same command on this distribution.
Fedora rpm database sudo rpm -Va Equivalent workflow for this distribution.
Arch pacman database sudo pacman -Qkk Equivalent workflow for this distribution.

Keep learning

Related Security & Permissions commands