Difference between revisions of "How-to verify GPG key of official .ISO images"
Views
Actions
Namespaces
Variants
Tools
How-to verify GPG key of official .ISO images (view source)
Revision as of 00:09, 13 May 2019
, 5 years agoRemove old download link, instead reference the "Download Manjaro" page
imported>Excalibur1234 |
imported>Dalto (Remove old download link, instead reference the "Download Manjaro" page) |
||
Line 1: | Line 1: | ||
'''1.''' | '''1.''' Download the an ISO file and corresponding .sig file from official sources(see Download Manjaro below) | ||
'''2 | '''2.''' Install GPG: | ||
sudo pacman -S gnupg wget | sudo pacman -S gnupg wget | ||
''' | '''3.''' Next, you have 2 possible ways to import Manjaro's keys. Choose one of them: | ||
3.1 Download all keys from the Manjaro Developers from GitHub: | |||
wget github.com/manjaro/packages-core/raw/master/manjaro-keyring/manjaro.gpg | wget github.com/manjaro/packages-core/raw/master/manjaro-keyring/manjaro.gpg | ||
Next, import all the keys in the downloaded .GPG file into your gnupg keyring: | Next, import all the keys in the downloaded .GPG file into your gnupg keyring: | ||
gpg --import manjaro.gpg | gpg --import manjaro.gpg | ||
3.2 If you do not trust GitHub, import Philip Müller's GPG key to your system (afterwards, select the key by entering its number and pressing ENTER): | |||
gpg --keyserver hkp://pool.sks-keyservers.net --search-keys 11C7F07E | gpg --keyserver hkp://pool.sks-keyservers.net --search-keys 11C7F07E | ||
''' | '''4.''' Finally, verify if the .ISO image file was built by one of Manjaro's Developers or Philip Müller: | ||
gpg --verify manjaro-xfce-16.06-pre2-x86_64.iso.sig | gpg --verify manjaro-xfce-16.06-pre2-x86_64.iso.sig | ||
Compare the key, which was used to sign the .ISO file to the key | Compare the key, which was used to sign the .ISO file to the key | ||
Check, whether the .ISO was verified by Philip Müller's key ("11C7F07E") or another Manjaro Developer's key, which you have imported to your system. | Check, whether the .ISO was verified by Philip Müller's key ("11C7F07E") or another Manjaro Developer's key, which you have imported to your system. | ||
If this is the case, you can be sure that your . | If this is the case, you can be sure that your .iso file was built by Philip Müller or another Manjaro Developer. | ||