--- title: "Install TrustEdge on Linux" source_url: https://dev.digicert.com/trustedge/install-and-configure/install-trustedge-on-linux.html --- > **Warning** > > Make sure your device meets the [system requirements](https://dev.digicert.com/md/trustedge/system-requirements.md) needed to install and run TrustEdge. TrustEdge can be downloaded from the [GitHub repository](https://github.com/digicert/trustedge) as a Debian package (.deb) for installing on Debian, Ubuntu, or Raspberry Pi OS. Follow these steps to download, install, and verify TrustEdge on a Linux system. 1. [Download](https://github.com/digicert/trustedge/releases/) for your architecture (ARM32, ARM64, or x64) to your device. > **Important** > > If using a virtual machine, make sure the downloaded package can be accessed by the virtual machine. 2. On the device, navigate to the directory where you downloaded TrustEdge and install it using the following command: ```bash sudo dpkg -i trustedge_.deb ``` 3. If this is the first time installing TrustEdge on the device, the Master Service Agreement (MSA) will be displayed in the terminal. 1. When you finish reading the EULA, press **q** to exit the agreement. 2. Enter **yes** to accept the MSA and continue with the installation. > **Tip** > > To automate the installation and bypass the Master Service Agreement (MSA) prompt, set the environment variable **DIGICERT_EULA_ACCEPT** to **yes** during installation: > > ```bash > sudo DIGICERT_EULA_ACCEPT=yes dpkg -i trustedge_.deb > ``` > > By running the above command, you acknowledge that you have read and agree to the terms of the [Master Service Agreement](https://github.com/digicert/trustedge/blob/master/LICENSE.md). 4. Verify the installation of TrustEdge: ```bash dpkg -s trustedge ``` 5. Add your user to the `trustedge` user group: ``` sudo adduser trustedge ``` > **Info** > > The above command adds the specified user to the `trustedge` user group, providing the necessary permissions to use [command-line tools](https://dev.digicert.com/md/trustedge/cli-reference.md) effectively. ## What's next? - [Configure TrustEdge](https://dev.digicert.com/md/trustedge/install-and-configure/configure-trustedge.md) - [Manage the keystore](https://dev.digicert.com/md/trustedge/install-and-configure/manage-the-keystore.md) - [Create a Certificate Signing Request (CSR)](https://dev.digicert.com/md/trustedge/tutorials/create-a-certificate-signing-request-csr.md)