Mike Lim
Mike Lim
You can refer to [How do I install NVIDIA GPU driver, CUDA toolkit and optionally NVIDIA Container Toolkit on Amazon Linux 2023 (AL2023)?](https://repost.aws/articles/ARwfQMxiC-QMOgWykD9mco1w/how-do-i-install-nvidia-gpu-driver-cuda-toolkit-and-optionally-nvidia-container-toolkit-on-amazon-linux-2023-al2023) for user data script.
Thanks for sharing your use case. Included the link in case others wants to build their instances first while waiting.
above changes works with all versions of certbot. suggest we include in official documentation
Yes. That was what I ended with as well ``` { "Version": "2012-10-17", "Statement": [ { "Action": [ "route53:ListHostedZones", "route53:GetChange" ], "Resource": "*", "Effect": "Allow" }, { "Condition": { "ForAllValues:StringLike":...
If you install your NVIDIA driver from NVIDIA repository or Amazon Linux [nvidia-release](https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.7.20250331.html), gds is available. To add AL2023 NVIDIA repository ``` sudo dnf install -y nvidia-release ``` To verify...
Install php-redis including serializer and compression support in my [LAMP stack CloudFormation userdata](https://github.com/aws-samples/ec2-lamp-server/blob/main/AmazonLinux-2023-LAMP-server.yaml) as follows ``` dnf install -q -y php-cli php-fpm php-devel php-pear gcc pear update-channels pecl update-channels /usr/bin/yes...
igbinary, msgpack and redis6 extensions are now available in [version 2023.8.20250818](https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.8.20250818.html#amis-2023.8.20250818.Core-New-Packages) for PHP 8.1, 8.2, 8.3 and 8.4 To install for PHP 8.3 ``` sudo dnf install -y php8.3-pecl-{igbinary,msgpack,redis6} ```...