From e391e81c745844c5038e0db8637abedb36cfa9aa Mon Sep 17 00:00:00 2001 From: Taurean Dyer Date: Wed, 12 Feb 2025 05:48:00 -0800 Subject: [PATCH 1/3] add some clarification for ec2 gotchyas --- source/cloud/aws/ec2.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/cloud/aws/ec2.md b/source/cloud/aws/ec2.md index a6c23f5a..35830c05 100644 --- a/source/cloud/aws/ec2.md +++ b/source/cloud/aws/ec2.md @@ -13,7 +13,7 @@ NVIDIA maintains an [Amazon Machine Image (AMI) that pre-installs NVIDIA drivers 1. Open the [**EC2 Dashboard**](https://console.aws.amazon.com/ec2/home). 1. Select **Launch Instance**. 1. In the AMI selection box search for "nvidia", then switch to the **AWS Marketplace AMIs** tab. -1. Select **NVIDIA GPU-Optimized AMI**, then select **Subscribe on Instance Launch**. +1. Select **NVIDIA GPU-Optimized AMI** and click "Select". Then, in the new popup, select **Subscribe on Instance Launch**. 1. In **Key pair** select your SSH keys (create these first if you haven't already). 1. Under network settings create a security group (or choose an existing) that allows SSH access on port `22` and also allow ports `8888,8786,8787` to access Jupyter and Dask. 1. Select **Launch**. @@ -22,9 +22,11 @@ NVIDIA maintains an [Amazon Machine Image (AMI) that pre-installs NVIDIA drivers Next we need to connect to the instance. -1. Open the [**EC2 Dashboard**](https://console.aws.amazon.com/ec2/home). +1. Open the [**EC2 Dashboard**](https://console.aws.amazon.com/ec2/home). 2. Locate your VM and note the **Public IP Address**. -3. In your terminal run `ssh ubuntu@` +3. In your terminal run `ssh ubuntu@`. + +**Note:** if you use the AWS Console, please use the default `ubuntu` user to ensure the NVIDIA driver installs on the first boot. ## Install RAPIDS From 80c6a1968d83df7cf2eb81b9c2f231c242216bc3 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Wed, 12 Feb 2025 14:16:01 +0000 Subject: [PATCH 2/3] Linting fixes --- source/cloud/aws/ec2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/cloud/aws/ec2.md b/source/cloud/aws/ec2.md index 35830c05..958c2f59 100644 --- a/source/cloud/aws/ec2.md +++ b/source/cloud/aws/ec2.md @@ -13,7 +13,7 @@ NVIDIA maintains an [Amazon Machine Image (AMI) that pre-installs NVIDIA drivers 1. Open the [**EC2 Dashboard**](https://console.aws.amazon.com/ec2/home). 1. Select **Launch Instance**. 1. In the AMI selection box search for "nvidia", then switch to the **AWS Marketplace AMIs** tab. -1. Select **NVIDIA GPU-Optimized AMI** and click "Select". Then, in the new popup, select **Subscribe on Instance Launch**. +1. Select **NVIDIA GPU-Optimized AMI** and click "Select". Then, in the new popup, select **Subscribe on Instance Launch**. 1. In **Key pair** select your SSH keys (create these first if you haven't already). 1. Under network settings create a security group (or choose an existing) that allows SSH access on port `22` and also allow ports `8888,8786,8787` to access Jupyter and Dask. 1. Select **Launch**. @@ -22,7 +22,7 @@ NVIDIA maintains an [Amazon Machine Image (AMI) that pre-installs NVIDIA drivers Next we need to connect to the instance. -1. Open the [**EC2 Dashboard**](https://console.aws.amazon.com/ec2/home). +1. Open the [**EC2 Dashboard**](https://console.aws.amazon.com/ec2/home). 2. Locate your VM and note the **Public IP Address**. 3. In your terminal run `ssh ubuntu@`. From c92f5d87b6b601e48cbe313158b45eecdb68b0d1 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Wed, 12 Feb 2025 14:17:09 +0000 Subject: [PATCH 3/3] Use note admonition --- source/cloud/aws/ec2.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/cloud/aws/ec2.md b/source/cloud/aws/ec2.md index 958c2f59..d13f1bbf 100644 --- a/source/cloud/aws/ec2.md +++ b/source/cloud/aws/ec2.md @@ -26,7 +26,9 @@ Next we need to connect to the instance. 2. Locate your VM and note the **Public IP Address**. 3. In your terminal run `ssh ubuntu@`. -**Note:** if you use the AWS Console, please use the default `ubuntu` user to ensure the NVIDIA driver installs on the first boot. +```{note} +If you use the AWS Console, please use the default `ubuntu` user to ensure the NVIDIA driver installs on the first boot. +``` ## Install RAPIDS