Changes between Version 20 and Version 21 of install_debian


Ignore:
Timestamp:
Oct 3, 2007, 4:31:19 PM (18 years ago)
Author:
Daniel Kahn Gillmor
Comment:

got rid of ntpdate, since it's deprecated, and went with standard "ntp" package. Also added that ChallengeResponseAuthentication should be "no"

Legend:

Unmodified
Added
Removed
Modified
  • install_debian

    v20 v21  
    7272 * Choose "Congifure LVM"
    7373
    74  * Create a volume group called vg_nameofserver0
    75 
    76  * Create logical volumes in this volume group based on your needs. A dom0 will only need a 1GB root partition. A "normal" server might need a 1 GB root, 3GB /usr, 5 GB /var and 512 MB swap.
     74 * Create a volume group called `vg_`''nameofserver''`0`
     75
     76 * Create logical volumes in this volume group based on your needs. A `dom0` will only need a 1GB root partition. A "normal" server might need a 1 GB root, 3GB `/usr`, 5 GB `/var` and 512 MB swap.
    7777
    7878 * After returning to the main disk config menu, click on each logical volume that you create and specify how it should be formatted and mounted.
     
    103103
    104104{{{
    105 # aptitude install ssh ntpdate ntp-server less emacs21-nox cron-apt iproute
     105# aptitude install ssh ntp less emacs21-nox cron-apt iproute
    106106}}}
    107107
     
    117117}}}
    118118
    119  * Configure ssh to only accept connections with auth keys (unless this is a server that should be accessible by members). Edit /etc/ssh/sshd_config and uncomment/change this line:
     119 * Configure ssh to only accept connections with auth keys (unless this is a server that should be accessible by members). Edit /etc/ssh/sshd_config and uncomment/change these lines:
    120120
    121121{{{
    122122PasswordAuthentication no
     123ChallengeResponseAuthentication no
    123124}}}
    124125
     
    181182}}}
    182183
    183  * Add the following lines after the timeout line in /boot/grub/menu.1st
     184 * Add the following lines after the timeout line in `/boot/grub/menu.1st`
    184185
    185186{{{
     
    191192
    192193{{{
    193 # kopt=root=/dev/md0 ro
     194# kopt=root=/dev/mapper/vg_servername0-root ro
    194195}}}
    195196
     
    197198
    198199{{{
    199 # kopt=root=/dev/md0 ro console=ttyS0,115200n8
    200 }}}
    201 
    202  Refresh grub:
    203 
    204 {{{
    205 $ update-grub
    206 }}}
    207 
     200# kopt=root=/dev/mapper/vg_servername0-root ro console=ttyS0,115200n8
     201}}}
     202
     203 Refresh grub's config file:
     204
     205{{{
     206# update-grub
     207}}}
     208