Passbolt on ubuntu 22 installation issues

Hi,

I am trying to install CE on Ubuntu 22.04.5 LTS for POC and getting the below error, followed the steps out lined in troubleshooting with no luck. please help.

$ sha512sum -c passbolt-ce-SHA512SUM.txt && sudo bash ./passbolt-repo-setup.ce.sh || echo “Bad checksum. Aborting” && rm -f passbolt-repo-setup.ce.sh
sha512sum: passbolt-repo-setup.ce.sh: No such file or directory
passbolt-repo-setup.ce.sh: FAILED open or read
sha512sum: WARNING: 1 listed file could not be read
Bad checksum. Aborting

Thanks,
Sridhar

Hello @chvgms,
Welcome to the community :slight_smile:

It looks like when you ran the shasum the file was not there, which caused the error:

sha512sum: passbolt-repo-setup.ce.sh: No such file or directory

Also, we removed the support for Ubuntu 22.04 with passbolt v5 as minimum requirements are now php 8.2, (by default on Ubuntu 22.04 its PHP 8.1)

So I would recommend installing Passbolt on Ubuntu 2404 and ensure that the dep script is present before running the shasum check.

thx for the response.