Clonezilla Liveの公式ダウンロードページには、CHECKSUMS.TXTおよびCHECKSUMS.TXT.gpgファイルがあります。
ただし、通常の検証コマンドでは署名を検証できません。
$ gpg --verify --keyring ./CHECKSUMS.TXT.gpg ./CHECKSUMS.TXT
gpg: no valid OpenPGP data found.
gpg: the signature could not be verified.
Please remember that the signature file (.sig or .asc)
should be the first file given on the command line.
そして
$ gpg --verify ./CHECKSUMS.TXT.gpg
gpg: no signed data
gpg: can't hash datafile: No data
Clonezilla Liveの公式Webサイトで入手可能なCHECKSUMS.TXT.gpgファイルを使用して、CHECKSUMS.TXTファイルの整合性を確認するにはどうすればよいですか?
gpg --verify ./CHECKSUMS.TXT.gpg ./CHECKSUMS.TXT
か?