Build Packages / build:windows:nocuda (push) Successful in 17m20s
Build Packages / build:windows:cuda (push) Successful in 19m52s
Build Packages / build:viewer-tgz:cpu (push) Successful in 9m38s
Build Packages / build:viewer-tgz:cuda (push) Successful in 11m18s
Build Packages / build:rugnux-tgz (x86_64) (push) Successful in 9m34s
Build Packages / build:rugnux:aarch64 (cross) (push) Successful in 5m42s
Build Packages / HDF5 consumer tests (DIALS, XDS) (push) Successful in 20m33s
Build Packages / Create release (push) Successful in 33s
Build Packages / build:rugnux:windows (push) Successful in 12m0s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 15m42s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 14m59s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 16m8s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 14m35s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 16m55s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 16m58s
Build Packages / Generate python client (push) Successful in 16s
Build Packages / build:rpm (rocky8) (push) Successful in 15m21s
Build Packages / Build documentation (push) Successful in 54s
Build Packages / build:rpm (rocky9) (push) Successful in 16m23s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 12m2s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 10m6s
Build Packages / Unit tests (push) Successful in 1h10m26s
* Rugnux: basic support for CCD images (marCCD, SMV) and for gzipped miniCBF. * `jfjoch_viewer`: opens the CCD formats, and fixes to the dataset plots. * Documentation updates. Reviewed-on: #81 Co-authored-by: Filip Leonarski <filip.leonarski@psi.ch>
59 lines
3.5 KiB
Markdown
59 lines
3.5 KiB
Markdown
# Linux package repositories
|
|
For convenience, we are providing package repositories, in versions including and excluding CUDA linking.
|
|
We recommend installing the Jungfraujoch viewer from a `nocuda` repository (published in the `slsdet8` flavour only) and the remaining packages from a `cuda12`/`cuda13` repository.
|
|
|
|
The repository name encodes two choices: the [slsDetectorPackage](DETECTORS.md) version the packages
|
|
were built against (`slsdet8` = 8.0.2, `slsdet9` = 9.2.0 — it must match the detector firmware) and
|
|
whether CUDA is linked in. What ends up inside each package, and what it needs on the target
|
|
machine, is described in [Release contents](RELEASE_CONTENTS.md).
|
|
|
|
## RHEL based systems
|
|
|
|
For RHEL systems we provide the following repositories:
|
|
|
|
| RHEL version | slsDetectorPackage | CUDA | Repository file |
|
|
|--------------|--------------------|------|------------------------------------------------------------------------|
|
|
| 8.x | 8.0.2 | 12.x | https://gitea.psi.ch/api/packages/mx/rpm/centos/el8/slsdet8-cuda12.repo |
|
|
| 8.x | 9.2.0 | 12.x | https://gitea.psi.ch/api/packages/mx/rpm/centos/el8/slsdet9-cuda12.repo |
|
|
| 8.x | 8.0.2 | - | https://gitea.psi.ch/api/packages/mx/rpm/centos/el8/slsdet8-nocuda.repo |
|
|
| 9.x | 8.0.2 | 13.x | https://gitea.psi.ch/api/packages/mx/rpm/centos/el9/slsdet8-cuda13.repo |
|
|
| 9.x | 9.2.0 | 13.x | https://gitea.psi.ch/api/packages/mx/rpm/centos/el9/slsdet9-cuda13.repo |
|
|
| 9.x | 8.0.2 | - | https://gitea.psi.ch/api/packages/mx/rpm/centos/el9/slsdet8-nocuda.repo |
|
|
|
|
To install the repository, run:
|
|
|
|
```bash
|
|
dnf config-manager --add-repo https://gitea.psi.ch/api/packages/mx/rpm/centos/el8/slsdet8-cuda12.repo
|
|
```
|
|
RPMs are signed by the Gitea package registry as they are uploaded. If your system cannot verify the
|
|
signature, set `gpgcheck=0` in the repository file or install with `--nogpgcheck`.
|
|
|
|
We provide the following packages in the repository:
|
|
* jfjoch — broker, web frontend, FPGA and detector command-line tools
|
|
* jfjoch-driver-dkms — PCIe kernel-module source, built by DKMS
|
|
* jfjoch-writer — HDF5 writer service
|
|
* jfjoch-viewer — desktop viewer and the XDS plugin
|
|
* Rugnux — [offline analysis CLI](RUGNUX.md), independent of the acquisition stack
|
|
|
|
Note that `rugnux` is named without the `jfjoch-` prefix, matching the program and the release
|
|
archive. Up to 1.0.0-rc.163 it was part of `jfjoch-viewer`; the package declares that move, so
|
|
installing it upgrades an older viewer rather than colliding with it.
|
|
|
|
## Ubuntu based systems
|
|
|
|
For Ubuntu systems, we also provide the following repositories:
|
|
```
|
|
sudo curl https://gitea.psi.ch/api/packages/mx/debian/repository.key -o /etc/apt/keyrings/gitea-mx.asc
|
|
echo "deb [signed-by=/etc/apt/keyrings/gitea-mx.asc] https://gitea.psi.ch/api/packages/mx/debian $distribution $component" | sudo tee -a /etc/apt/sources.list.d/gitea.list
|
|
sudo apt update
|
|
```
|
|
|
|
`$distribution` uses Ubuntu names `jammy` (22.04) and `noble` (24.04). `$component` can be set to either `cuda13` or `nocuda`.
|
|
Only slsDetectorPackage 8.0.2 is built for Ubuntu.
|
|
|
|
The same five packages as above are provided: `jfjoch`, `jfjoch-driver-dkms`, `jfjoch-writer`,
|
|
`jfjoch-viewer` and `rugnux`. Up to 1.0.0-rc.160 the first of them was misnamed `jfjoch-jfjoch`; the current
|
|
package replaces it, so `apt upgrade` handles the rename.
|
|
|
|
Ubuntu packages currently undergo only very limited testing.
|