Stuck installing NVIDIA GRID drivers

0

I am trying to install the GRID drivers to setup the GPU in a g4dn.xlarge EC2 instance. I am following the instructions written here https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-nvidia-driver.html, and when I run: aws s3 cp --recursive s3://ec2-linux-nvidia-drivers/latest/
I get the folwing error: Enter image description here

Do I need to add an access_key or secret_key? If so where can I find the keys to add? Thanks very much for your help!

Andreu
질문됨 일 년 전300회 조회
1개 답변
0

Yes, the following IAM policy is required to execute that command.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": [
                "s3:GetObject",
                "s3:ListBucket"
            ],
            "Resource": "*"
        }
    ]
}

To execute that command, follow the steps in the following document to create an IAM role for EC2.
https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-service.html#roles-creatingrole-service-console

Follow the procedure in the following document to set up an IAM role on EC2.
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html#attach-iam-role

profile picture
전문가
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠