skip to Main Content

Enable/Disable ENA support on aws ec2

To enable ENA support, run one of the following commands: aws ec2 modify-instance-attribute --instance-id instance_id --ena-support If you encounter problems when you restart the instance, you can also disable ENA support using one of the following commands: aws ec2 modify-instance-attribute…

Read More

Import Your VM as an EC2/AMI Image

http://docs.aws.amazon.com/vm-import/latest/userguide/import-vm-image.html   After exporting your VM from your virtualization environment, you can import it to Amazon EC2. The import process is the same regardless of the origin of the VM. Tasks Prerequisites Import the VM Check the Status of the…

Read More

How can I check /dev/xvda1?

You can check or run fsck on /dev/xvda1 using the following method on Ubuntu or Debian Linux based cloud server. The fsck command is used check and repair a Linux filesystem Step 1 – Force fsck Type the following command to…

Read More

Add EBS to Ubuntu EC2 Instance

source: http://stackoverflow.com/questions/11535617/add-ebs-to-ubuntu-ec2-instance additional info: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-creating-volume.html Since this is a new volume, you need to format the EBS volume (block device) with a file system between step 1 and step 2. So the entire process with your sample mount point is:…

Read More
Back To Top