Show volumes attached to C9 on editor view

0

Hi,

I want to add space to my C9 EC2 machine by adding a new volume instead of expanding the current volume.

Today I can toggle the option "Show home in favorites" to browse the files on the home root volume, but after I attach the new volume, can't find the way to browse the content from the C9 file tree browser. ( I can access it from the command line).

Is there a way to do this or I would need to keep adding space to my root volume instead?.

질문됨 2년 전246회 조회
1개 답변
0

You will need to add to the existing volume. Here are the commands to make it happen.

## Assume a role with permissions

SIZE=50
INSTANCEID=$(curl http://169.254.169.254/latest/meta-data/instance-id)
REGION=$(curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone | sed 's/\(.*\)[a-z]/\1/')
VOLUMEID=$(aws ec2 describe-instances --instance-id $INSTANCEID --query "Reservations[0].Instances[0].BlockDeviceMappings[0].Ebs.VolumeId" --output text --region $REGION)

aws ec2 modify-volume --volume-id $VOLUMEID --size $SIZE --region $REGION

Wait until finished, check with this:

aws ec2 describe-volumes-modifications --region $REGION --volume-id $VOLUMEID

After finished

lsblk
sudo growpart /dev/nvme0n1 1
df -h
sudo xfs_growfs /dev/nvme0n1p1
df -h

profile pictureAWS
전문가
kentrad
답변함 2년 전
  • Thanks for your answer! The volumen is already working and accessible from the command line, the issue is with the C9 editor, can't point to browse files on the attached volume

  • Yes, if you need more space and you want to see it from C9, you will need to expand the root volume.

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

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

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

관련 콘텐츠