Messed up etc/fstab on linux instance

0

I accidentally typed "default/noatime" instead of "default,noatime" on my /etc/fstab file and do not know how to fix this since I cannot even connect to the instance.

已提問 1 年前檢視次數 797 次
1 個回答
1

Do you have EC2 snapshots?
One way to do this would be to restore EC2 once a snapshot is available.

Another way is to stop the EC2, detach the root volume, mount it on another EC2, and then modify "/etc/fstab".

The process is as follows.

  • Stop the instance.
  • Detach the target volume by volume.
  • Note down the instance ID of the instance in the same AZ.
  • Attach the volume to the target instance.
  • Check the attached instance.

After attaching the root volume to another EC2, you can confirm that it is attached with the following command.

sudo ls -la /dev/sdf*

Then, create a directory for mounting with the following command.

sudo mkdir /mnt/ebs-check

After creating the directory, mount it.
Device names, etc. may depend on your environment and should be changed as the case may be.

sudo mount /dev/sdf1 /mnt/ebs-check

Once mounted, modify "/etc/fstab".
After the modification is complete, if you can attach the root volume to the original EC2 and start EC2, you should be able to connect.

Please check the following documents for other troubleshooting methods.
https://repost.aws/knowledge-center/ec2-linux-emergency-mode

profile picture
專家
已回答 1 年前
profile picture
專家
已審閱 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南