G DATA 365 | MXDR

Instructions for installing the G DATA 365 | MXDR agent on Linux

You can install the G DATA Agent for Linux in a few simple steps.

1

First, switch to the root user.

su -

2

Depending on whether you have a Debian system or are performing the installation with RPM, the installation commands differ slightly.

3.a

.deb file (Debian based systems):
SETUPID=<setupid> apt install ./gdata-agent-amd64.deb

In some cases, when installing the G DATA Agent for Linux on Debian-based systems, you may receive the following message:

N: Download is performed unsandboxed as root as file […​] couldn’t be accessed by user '_apt'.

The “N” stands for Notice. You probably downloaded the file as root, and other users were not granted access rights to the file.

APT attempts to perform the installations in a sandbox using the user "_apt". However, if this user does not have access to the file, the specified alert is displayed and the installation is performed by root instead.

The agent is therefore installed normally, this is not an error, just a Notification.

You can easily bypass the alert by granting read permissions to other users (Other) before executing the file:

sudo chmod 644 ./gdata-agent-amd64.deb

or you can just utilize dpkg instead of apt to install the package:

sudo dpkg -i ./gdata-agent-amd64.deb

3.b

.rpm file:
SETUPID=<setupid> rpm -i ./gdata-agent-x86_64.rpm

4

Optionally, if required, the proxy settings such as PROXYPACURL, PROXYURL, PROXYUSERNAME and PROXYPASSWORD can be appended to the installation call as parameters. For more information, see the agent configuration page.

Installation example for Debian based systems:

SETUPID=<setupid> PROXYURL=<myProxyURL> PROXYUSERNAME=<myUsername> PROXYPASSWORD=<myPassword> apt install ./gdata-agent-amd64.deb

Installation example for RPM:

SETUPID=<setupid> PROXYURL=<myProxyURL> PROXYUSERNAME=<myUsername> PROXYPASSWORD=<myPassword> rpm -i ./gdata-agent-x86_64.rpm

5

The installation is now complete. You can customize the G DATA Agent to, for example, set proxy settings. How to do this is explained in here.

Error handling

If the installation on a debian based Linux, the package is still installed but in the state "half configured". You can verify this with the following command.

dpkg --status gdata-agent

This lists several attributes of the agent installation, similar to this:

Package: gdata-agent
Status: install ok half-configured
Maintainer: G DATA CyberDefense AG
Architecture: amd64
Version: 2025.0715.1314
Depends: libc6 (>= 2.28)
Description: G DATA Agent for Linux by G DATA CyberDefense AG (365@gdata.de)

In case under "Status" is noted "install ok half-configured" (as in the example), it is best to uninstall the package end retry the installation process.