Installing on Container OS from a Raw Package Repository
Container OS systems don't have a native package installer, so for these kinds of systems you use the wget or curl command to download the raw package wget repository files and then install the agent using the usual Unix / Linux commands. This process works on any system where you want to install from a raw or plain file, such as *.zip, *.tar, *.tgz, and so forth.
Before you install the agent, run the adcheck
utility to make sure that your environment is ready.
In the following code examples, be aware of the following formatting:
-
$ at the beginning of a line indicates a non-privileged user, so some commands will need
sudo
. -
# at the beginning of a line indicates a privileged user, such as
root
, sosudo
isn't needed. -
\ at the end of a line indicates a line break for documentation formatting purposes only; you don't need the line break if you run the command in one line.
To download the raw package repository installation files:
-
Browse the package index to determine which file you want to download. You can view the package index in HTML or JSON:
-
HTML version is at
https://repo.delinea.com/URLTOKEN/wget/raw/
-
JSON version is at
https://repo.delinea.com/URLTOKEN/wget/raw/index.json
Note: Enter your repository URL token in place of
URLTOKEN
.
-
-
Download the desired file using either
curl
orwget
.curl example:
Copy# curl -1 -O \
'https://repo.delinea.com/URLTOKEN/wget/raw/versions/Latest/delinea-server-suite-latest-cos-x86_64.tgz'wget example:
Copy# wget 'https://repo.delinea.com/URLTOKEN/wget/raw/versions/Latest/delinea-server-suite-latest-cos-x86_64.tgz'
You can now go ahead and install Server Suite. For details, see Installing Agents on Computers to be Managed