Ignore:
Timestamp:
Nov 22, 2011, 12:45:17 AM (12 years ago)
Author:
achernya
Message:
Merge branches/fc15-dev to trunk
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/server/doc/install-fedora

    r1698 r2066  
    66    lvcreate -n $MACHINE-root --size 50.00G $HOST
    77    lvcreate -n $MACHINE-swap --size 10.00G $HOST
     8    lvcreate -n $MACHINE-cache --size 11.00G $HOST
     9
     10/-------------------------------------------------------------------\
     11    Note: If you need to manually format the the swap and cache
     12    partitions (for example, you are migrating a host from 'migrate'),
     13    these commands should work.  If in doubt, consult the kickstart.
     14
     15        # Use fdisk to generate a DOS partition table, and a single
     16        # partition extending the entire volume.
     17        fdisk /dev/$HOST/$MACHINE-swap
     18        fdisk /dev/$HOST/$MACHINE-cache
     19        # Figure out what kpartx is going to make the devices as
     20        # (e.g. $SWAP_DEV and $CACHE_DEV)
     21        kpartx -l /dev/$HOST/$MACHINE-swap
     22        kpartx -l /dev/$HOST/$MACHINE-cache
     23        # Read out the partition tables
     24        kpartx -a /dev/$HOST/$MACHINE-swap
     25        kpartx -a /dev/$HOST/$MACHINE-cache
     26
     27        # FORMAT!
     28        mkswap $SWAP_DEV
     29        mkfs.ext4 -O ^has_journal -m 0 -N 1000000 $CACHE_DEV
     30
     31        # Remove the devices
     32        kpartx -d /dev/$HOST/$MACHINE-swap
     33        kpartx -d /dev/$HOST/$MACHINE-cache
     34\-------------------------------------------------------------------/
     35
     36Make sure that the console has an entry for this host:
     37
     38    vim /etc/conserver/conserver.cf
     39
     40If it doesn't, add:
     41
     42    console $MACHINE {
     43        master $HOST;
     44        include xen;
     45    }
    846
    947We use Kickstart to to initial Fedora configuration.  Installing a new
Note: See TracChangeset for help on using the changeset viewer.