Changes between Version 21 and Version 22 of InstallationGuidelines/Amazon
- Timestamp:
- 02/01/12 22:07:15 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/Amazon
v21 v22 52 52 53 53 * The disk space on the pre-built AMIs is 1GB - Instructions to grow the disk are given below. 54 * You can add swap from a swap file : 55 {{{ 54 56 57 dd if=/dev/zero of=/swapfile1 bs=1024 count=524288 58 59 mkswap /swapfile1 60 chown root:root /swapfile1 61 chmod 0600 /swapfile1 62 swapon /swapfile1 63 }}} 64 65 Make this persistent across reboots by adding the following to your /etc/fstab 66 {{{ 67 68 /swapfile1 swap swap defaults 0 0 69 70 }}} 55 71 == Building AMIs for easier deployment == 56 72 This will ease deployment for others.