Installing the latest GPG: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
| Line 3: | Line 3: | ||
== Downloads == | == Downloads == | ||
'' do this first, then we'll build '' | '' do this first, then we'll build '' | ||
* Create the install directory, inserting the desired parent directory for the build directory for PARENT_DIR: | |||
cd PARENT_DIR && mkdir gpg_build | |||
* Get the latest stable version of gpg [https://www.gnupg.org/download/ here] | * Get the latest stable version of gpg [https://www.gnupg.org/download/ here] | ||
wget https://www.gnupg.org/download | |||
== Verify == | == Verify == | ||
| Line 10: | Line 14: | ||
* verify the integrity by issuing this command | * verify the integrity by issuing this command | ||
sha1sum gnupg-2.0.27.tar.bz2 | sha1sum gnupg-2.0.27.tar.bz2 | ||
(substitute the name of the file you downloaded for gnupg-2.0.27/tar.bz2 above), and checking the result against the list of checksums [https://www.gnupg.org/download/integrity_check.html here] | (substitute the name of the file you downloaded for gnupg-2.0.27/tar.bz2 above), and checking the result against the list of checksums [https://www.gnupg.org/download/integrity_check.html here]. If this does not go perfectly, figure out what happened and fix it; '''do not just carry on'''. | ||
== Expand and Build == | |||
* To expand the archive, do | |||
tar xjvf gnupg-2.0.27.tar.bz2 | |||
Revision as of 04:58, 16 November 2015
The package provided with your favorite GNU/Linux distro., or in MacPorts, may not be the latest. This matters, so get the latest one directly! The instructions for doing so are provided here.
Downloads
do this first, then we'll build
- Create the install directory, inserting the desired parent directory for the build directory for PARENT_DIR:
cd PARENT_DIR && mkdir gpg_build
- Get the latest stable version of gpg here
wget https://www.gnupg.org/download
Verify
- verify the integrity by issuing this command
sha1sum gnupg-2.0.27.tar.bz2
(substitute the name of the file you downloaded for gnupg-2.0.27/tar.bz2 above), and checking the result against the list of checksums here. If this does not go perfectly, figure out what happened and fix it; do not just carry on.
Expand and Build
- To expand the archive, do
tar xjvf gnupg-2.0.27.tar.bz2