Manjaro

無法解壓tor-browser git repo

  • May 20, 2021

我打算安裝 Tor 瀏覽器。我從這裡下載了包。我複製了一個 git repo

git clone https://aur.archlinux.org/tor-browser.git

然後,我試圖打開它。

cd tor-browser
makepkg -s

我收到了類似這樣的錯誤/輸出:

Validating source files with sha256sums...
   tor-browser.desktop.in ... Passed
   tor-browser.in ... Passed
   tor-browser.png ... Passed
   tor-browser.svg ... Passed
==> Validating source_x86_64 files with sha256sums...
   tor-browser-linux64-10.0.16_en-US.tar.xz ... Passed
   tor-browser-linux64-10.0.16_en-US.tar.xz.asc ... Skipped
==> Verifying source file signatures with gpg...
   tor-browser-linux64-10.0.16_en-US.tar.xz ... FAILED (unknown public key EB774491D9FF06E2)
==> ERROR: One or more PGP signatures could not be verified!

您需要閱讀說明。Package Details: tor-browser頁面上的第一條(固定)評論說:

在執行 makepkg 之前,您必須這樣做(作為普通使用者):

$ gpg --auto-key-locate nodefault,wkd --locate-keys torbrowser@torproject.org

建構失敗,因為簽名包的公鑰是未知的。上面的命令將該密鑰安裝到您的 gpg 密鑰環中。

引用自:https://unix.stackexchange.com/questions/650555