Overview
This is a repackaged open source software product wherein additional charges apply for technical support with a 24-hour response time. NVIDIA CUDA 13.2, built on a minimal Rocky Linux 9 installation, is included in this AMI, repackaged by Easycloud. It provides a complete, framework-neutral GPU compute base in which the driver, the CUDA Toolkit, the container runtime, and the multi-node fabric libraries are already assembled and verified together on a GPU instance, deliberately engineered to let you start compiling and running accelerated workloads immediately instead of spending hours reconciling kernel modules, toolkit versions, and container runtime configuration.
Core Features & Integrations
-
Rocky Linux 9 Foundation: Provides a robust, enterprise-grade underlying OS with deep structural alignment to RHEL, ensuring high security and seamless ecosystem compatibility with AlmaLinux, CentOS Stream, and traditional CentOS deployments.
-
NVIDIA CUDA 13.2 with Driver 595.71.05 (GPU Compute Base): The full CUDA Toolkit 13.2 is installed at /usr/local/cuda-13.2 with nvcc and the complete GPU math, communication, and profiling libraries on PATH, so CUDA C++ code and custom kernel extensions compile out of the box. The image pairs it with the NVIDIA open kernel module driver built through DKMS, NCCL 2.29.7 and gdrcopy 2.5.2 for high-bandwidth GPU communication, Docker CE 29.6.1 with the NVIDIA Container Toolkit 1.19.1 for GPU-enabled containers, the AWS EFA stack with libfabric, Open MPI 5, and the NCCL OFI plugin preinstalled and ready on EFA-capable instance types, plus DCGM 4.6 and Fabric Manager for telemetry and NVSwitch-class hardware. A Python 3.12 data stack (JupyterLab, NumPy, pandas, SciPy, matplotlib, boto3) and AWS CLI v2 are included, while cuDNN and the deep learning frameworks are intentionally left out.
Key Benefits
-
Framework-Neutral GPU Foundation with a Complete Toolchain: Unlike prebuilt framework images that commit you to one version of one library, this AMI ships the layer underneath them - driver, toolkit, container runtime, and fabric stack - and stops there. You choose the framework, the version, and the packaging, whether that means a pip installed training stack, a custom compiled CUDA extension, or a fleet of GPU containers, without first uninstalling somebody else's opinionated defaults or untangling a driver and toolkit mismatch.
-
The Optimal AI Inference and Orchestration Foundation: By starting with a bloat-free Rocky Linux 9 installation, maximum GPU, CPU, and memory are dedicated entirely to your accelerated workloads. This makes it the perfect, conflict-free foundation for AI and HPC stacks built on CUDA, PyTorch, TensorFlow, Hugging Face models, Python, Docker, and Kubernetes. It seamlessly integrates with model serving and orchestration layers (Ollama, Open WebUI, LibreChat, Dify, Langflow, Flowise, MLflow), and serves as a rock-solid backbone for RAG pipelines, vector search, and large-scale data processing built on RAGFlow, Milvus, Chroma, PostgreSQL, Apache Spark, MinIO, Grafana, and Prometheus, ensuring your GPU infrastructure scales without limits.
-
Production Ready & Expert Support: Secured with the latest OS patches. It delivers a highly stable environment, fully supported by comprehensive documentation and fast technical assistance (guaranteed 24-hour response time) to ensure your infrastructure runs smoothly without costly downtime.
Highlights
- Rocky Linux 9 (Minimal Installation),updated to the latest version.
- Professional installation following best practices.
- Expert Support: Backed by comprehensive documentation and fast, professional technical assistance.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
- ...
Dimension | Cost/hour |
|---|---|
g5.xlarge Recommended | $0.19 |
t2.micro | $0.03 |
t3.micro | $0.03 |
t2.nano | $0.03 |
t3.nano | $0.00 |
t3a.nano | $0.03 |
t1.micro | $0.03 |
t3a.micro | $0.03 |
m1.small | $0.04 |
t2.small | $0.04 |
Vendor refund policy
No refunds. Cancel anytime.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Latest Updates
Additional details
Usage instructions
Connection Methods
Once launched, SSH into the instance. The default username is 'rocky'. You can switch to the root user environment by running: sudo su -
This product requires SSH; there is no web console or web UI. There are no default credentials - access is via your own EC2 key pair as user 'rocky'.
Requires a GPU instance type (g4dn / g5 / g6 / p3 / p4 / p5 and similar). Non-GPU instance types will not work.
Install Information
-
OS: Rocky Linux 9 (x86_64)
-
NVIDIA Driver: 595.71.05 (open kernel module, DKMS)
-
CUDA Toolkit: 13.2 installed at /usr/local/cuda-13.2, with /usr/local/cuda pointing to it
-
GPU Communication: NCCL 2.29 (with headers) and gdrcopy 2.5
-
Containers: Docker CE 29 with containerd 2.2 (buildx, compose) and NVIDIA Container Toolkit 1.19
-
Fabric and MPI: EFA 3.1.0 with libfabric-aws 2.4.0, Open MPI 5.0.9, and the NCCL OFI plugin 1.20 - preinstalled and ready on EFA-capable instance types
-
GPU Management: DCGM 4.6 and NVIDIA Fabric Manager (both installed, started on demand)
-
Python: 3.12 with JupyterLab, IPython, NumPy, pandas, SciPy, matplotlib, boto3; plus AWS CLI v2
-
Environment: CUDA paths are set system-wide via /etc/profile.d/cuda.sh and /etc/ld.so.conf.d/cuda.conf
-
Not included by design: cuDNN, PyTorch, and TensorFlow. This is a base layer - you install the framework stack you need.
-
No internet access is required to run this product - everything above is preinstalled. Outbound access is only needed if you pull container images or pip install frameworks yourself.
Usage Instructions
-
Launch on a GPU instance type. Recommended: g5.xlarge (A10G, 24 GB GPU memory); the image was verified on g4dn.xlarge. Non-GPU instance types will not work.
-
Allow about 4 minutes on first boot before the GPU is ready (measured 234 seconds from launch to the first successful nvidia-smi on g4dn.xlarge). This first-boot wait is normal, not a fault.
-
SSH in as 'rocky' and run the first command to confirm the GPU and driver: nvidia-smi
-
Verify GPU access from a container: docker run --rm --gpus all <image> nvidia-smi Replace <image> with an actual image, for example ubuntu:24.04. The 'rocky' user is in the docker group, so sudo is not required.
-
Compile CUDA code. nvcc is already on PATH: nvcc --version, then build with: nvcc -o myapp myapp.cu Build systems expecting CUDA_HOME resolve through /usr/local/cuda.
-
Install your own framework stack, for example: python3 -m venv ~/venv && source ~/venv/bin/activate && pip install torch Match the build to CUDA 13.x when the project offers CUDA-specific wheels.
-
Start JupyterLab on demand when you want a notebook interface: jupyter lab --ip=0.0.0.0 It is installed but not started automatically. If you use it, open its port in your Security Group and restrict it to trusted IP addresses.
-
Manage services with systemctl start/stop/restart/status. Docker and nvidia-persistenced are enabled and start at boot. GPU monitoring and Fabric Manager are installed but disabled by default: sudo systemctl start nvidia-dcgm && dcgmi discovery -l, and enable nvidia-fabricmanager on NVSwitch-equipped multi-GPU instance types.
-
The CUDA, Docker, and NVIDIA Container Toolkit repositories are shipped disabled so a routine dnf update cannot break the driver and DKMS pairing. To upgrade those components, re-enable the relevant repository explicitly with dnf --enablerepo. EPEL remains enabled.
Firewall Configuration
-
SSH (Port 22): Required - restrict to trusted IPs. This product requires SSH; there is no web console or web UI.
-
No application ports are opened by default. If you later start JupyterLab yourself, open its port and restrict it to trusted IPs as well.
-
Security Recommendation: For production environments, strictly limit access to these ports to trusted IP addresses only via cloud Security Groups or the local firewall.
Support
Vendor support
Should you encounter any issues while using the system, please do not hesitate to contact us via email at: support@easyclouds.io ,Thank you!
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.