Skip to content

Commit

Permalink
Merge pull request #398 from hubblo-org/docs/linux-installation-with-…
Browse files Browse the repository at this point in the history
…debian-package

Use Hubblo Debian packages for Debian/Ubuntu setup
  • Loading branch information
bpetit authored Nov 7, 2024
2 parents f930b65 + 9438b75 commit 40a961b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs_src/tutorials/installation-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ To quickly run scaphandre in your terminal you may use [docker](https://www.dock
docker run -v /sys/class/powercap:/sys/class/powercap -v /proc:/proc -ti hubblo/scaphandre stdout -t 15

## Debian/Ubuntu
On Debian or Ubuntu, you can use the available `.deb` [package](https://github.com/barnumbirr/scaphandre-debian).
On Debian or Ubuntu, you can use the available `.deb` [package for Debian Bullseye](https://github.com/hubblo-org/scaphandre/releases/download/v1.0.0/scaphandre_v1.0.0-deb11_amd64.deb) or the [package for Debian Bookworm](https://github.com/hubblo-org/scaphandre/releases/download/v1.0.0/scaphandre_v1.0.0-deb12_amd64.deb).

VERSION="1.0.0-1" ARCH="amd64" DIST="bookworm" && \
wget https://github.com/barnumbirr/scaphandre-debian/releases/download/v$VERSION/scaphandre_$VERSION\_$ARCH\_$DIST.deb && \
dpkg -i scaphandre_$VERSION\_$ARCH\_$DIST.deb && \
rm scaphandre_$VERSION\_$ARCH\_$DIST.deb
# For Debian Bookworm
VERSION="1.0.0" ARCH="amd64" DIST="deb12" && \
wget https://github.com/hubblo-org/scaphandre/releases/download/v${VERSION}/scaphandre_v${VERSION}-${DIST}_${ARCH}.deb && \
dpkg -i scaphandre_v${VERSION}\-${DIST}\_${ARCH}.deb && \
rm scaphandre_v${VERSION}\-${DIST}\_${ARCH}.deb

## Run the binary
Once you downloaded or built a binary, you'd run:
Expand Down

0 comments on commit 40a961b

Please sign in to comment.