wiki/creating-ec2-image-from-scratch.md
... ...
@@ -2,6 +2,8 @@
2 2
3 3
I started out with a clean "Amazon Linux AMI 2015.03 (HVM), SSD Volume Type - ami-a10897d6" image from Amazon and added the existing Swap and Home snapshots as new volumes. The root/system volume I left as is, to start with. This requires having access to a user key that can be selected when launching the image.
4 4
5
+Enable the EPEL repository by issuing `yum-config-manager --enable epel/x86_64`.
6
+
5 7
I then did a `yum update` and added the following packages:
6 8
7 9
- httpd
... ...
@@ -9,6 +11,8 @@ I then did a `yum update` and added the following packages:
9 11
- tmux
10 12
- nfs-utils
11 13
- chrony
14
+ - apachetop
15
+ - goaccess
12 16
13 17
Then I created a mount point /home/sailing and copied the following lines from the /etc/fstab file from an existing SL instance:
14 18