ToolsInstallation » History » Revision 2
« Previous |
Revision 2/19
(diff)
| Next »
Paul Kocialkowski, 01/21/2014 04:24 PM
Tools Installation¶
This page explains how to install the various tools used with Replicant. It is assumed that you are running a GNU/Linux operating system.
ADB¶
ADB can be installed from the repositories of your GNU/Linux distribution (if available) or from our released tools.
Note: you may need to run ADB as root if your current user doesn't have USB access privileges.
From GNU/Linux distributions repositories¶
Debian¶
apt-get install android-tools-adb
From our released tools¶
1. Download the adb tool, the adb.sig signature and the checksum from ReplicantImages for the latest image
2. Make sure you have added the Replicant release key to your GPG keyring
3. Check the signature of the adb tool:
gpg --armor --verify path/to/adb.sig path/to/adb
4. Make sure the check succeeds, do not run the binary if it doesn't!
5. Check the checksum of the
adb tool:md5sum -c tools.md5
6. Make sure the check succeeds for
adb, do not run the binary if it doesn't!
As adb is built as a 32 bit binary, you will need to install compatibility libraries for 32 bits executables if your computer is running on a 64 bit architecture.
7. Make sure adb can be executed:
chmod a+x adb
Fastboot¶
Fastboot can be installed from the repositories of your GNU/Linux distribution (if available) or from our released tools.
Note: you may need to run fastboot as root if your current user doesn't have USB access privileges.
From GNU/Linux distributions repositories¶
Debian¶
apt-get install android-tools-fastboot
From our released tools¶
1. Download the fastboot tool, the fasboot.sig signature and the checksum from ReplicantImages for the latest image
2. Make sure you have added the Replicant release key to your GPG keyring
3. Check the signature of the fastboot tool:
gpg --armor --verify path/to/fastboot.sig path/to/fastboot
4. Make sure the check succeeds, do not run the binary if it doesn't!
5. Check the checksum of the
fastboot tool:md5sum -c tools.md5
6. Make sure the check succeeds for
fastboot, do not run the binary if it doesn't!
As fastboot is built as a 32 bit binary, you will need to install compatibility libraries for 32 bits executables if your computer is running on a 64 bit architecture.
7. Make sure fastboot can be executed:
chmod a+x fastboot
Heimdall¶
Heimdall can be installed from the repositories of your GNU/Linux distribution (if available), from our released tools or from the developer's website.
Note: you may need to run heimdall as root if your current user doesn't have USB access privileges.
From GNU/Linux distributions repositories¶
Debian¶
apt-get install heimdall-flash
From our released tools¶
1. Download the heimdall tool, the heimdall.sig signature and the checksum from ReplicantImages for the latest image
2. Make sure you have added the Replicant release key to your GPG keyring
3. Check the signature of the heimdall tool:
gpg --armor --verify path/to/heimdall.sig path/to/heimdall
4. Make sure the check succeeds, do not run the binary if it doesn't!
5. Check the checksum of the
heimdall tool:md5sum -c tools.md5
6. Make sure the check succeeds for
heimdall, do not run the binary if it doesn't!
As fastboot is built as a 32 bit binary, you will need to install compatibility libraries for 32 bits executables if your computer is running on a 64 bit architecture.
7. Make sure fastboot can be executed:
chmod a+x heimdall
From the developer's website¶
Instructions to install heimdall can be found on the developer's website: http://glassechidna.com.au/heimdall/
Updated by Paul Kocialkowski almost 12 years ago · 2 revisions