Changes between Version 21 and Version 22 of InstallationGuidelines/Amazon


Ignore:
Timestamp:
02/01/12 22:07:15 (13 years ago)
Author:
Praneeth Bodduluri
Comment:

Swap file instructions added

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Amazon

    v21 v22  
    5252
    5353* 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{{{
    5456
     57dd if=/dev/zero of=/swapfile1 bs=1024 count=524288
     58
     59mkswap /swapfile1
     60chown root:root /swapfile1
     61chmod 0600 /swapfile1
     62swapon /swapfile1
     63}}}
     64
     65Make this persistent across reboots by adding the following to your /etc/fstab
     66{{{
     67
     68/swapfile1 swap swap defaults 0 0
     69
     70}}}
    5571== Building AMIs for easier deployment ==
    5672This will ease deployment for others.