Skip to content

How to Use the Packages Server

This document explains how to access and download packages from the internal Packages Server hosted at:

🔗 URL: https://qcpkg-qcint.quintessence.de

Hostname - qcpkg-qcint


Authentication

To access and download files, you need a valid username and password.

You can request credentials from your system administrator or DevOps team.


To save package link, you need connect to webserver https://qcpkg-qcint.quintessence.de

img.png

A complete list of all packages will be displayed to you.

Find the required package in the list, right-click on it and select "Copy Link":

CleanShot 2025-05-14 at 12.28.43.gif


📥 Downloading a Package

Use the following curl -L -OJ -u <username>:<password> command to download a package from the server on the customer side:

curl -L -OJ -u <username>:<password> https://qcpkg-qcint.quintessence.de/<file-path>
For "File path" use the previously copied link from packages webserver

Example:

curl -L -OJ -u qcuser:qcpassword https://qcpkg-qcint.quintessence.de/asgard-10.76.3-SNAPSHOT-Vangelis-custom-a3.tar.gz
img_3.png

  • -L: Follows redirects.
  • -O: Saves the file with the same name as on the server.
  • -J: Uses the server-specified filename (from Content-Disposition header).
  • -u: Provides the basic authentication credentials.

Changelog

Date Author Message
2026-02-26 aresnikowa qc-0: How to reuse content
2026-02-25 aresnikowa Merge remote-tracking branch 'origin/master'