Reputation: 79
I'm trying to figure out what size instance I need for my webapp, but am confused by this:
A t2.micro only has 1 gig of memory, but yet this looks like I have 8.
There's no swap usage so how much memory does my instance actually have?
Thanks.
Upvotes: 3
Views: 2291
Reputation: 11496
I think you got the answer, but to confirm that its a disk try this command
df -h
you will see that Filesystem Size Used Avail Use% Mounted on
To confirm your memory try this command.
free -h
Upvotes: 5
Reputation: 4710
what you see in the screenshot is disk size, the EBS storage, not the RAM the default disk size is 8 GB and is mounted under / path
Upvotes: 4