⇤ ← Revision 1 as of 2010-01-28 16:26:51
Size: 288
Comment:
|
Size: 1415
Comment: Link to Chris Lamb's checklist; Flesh out more items
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Describe DebianChecklist here. | Chris Lamb has a good [[http://www.chris-lamb.co.uk/2009/06/03/checklist-configuring-debian-system/|Debian installation checklist]], from which I stole most of this list. |
Line 4: | Line 4: |
# Configure sudo, adding my user to the sudo group so I don't get password prompts aptitude install sudo adduser xjjk sudo # Configure locales to prevent harassment about it later aptitude install locales dpkg-reconfigure -plow locales # …or install all locales so they don't need to be configured/reinstalled aptitude install locales-all # Disable installation of recommended packages echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/90recommends |
|
Line 9: | Line 22: |
# Prevent PAM from allowing easily-crackable passwords apt-get install libpam-cracklib # Install essential utilities sudo aptitude install openssh-server \ atool lzma rzip xz-utils \ htop dstat iotop \ manpages manpages-dev \ strace tcpdump lsof \ moreutils \ dnsutils \ chrony \ molly-guard # HDD Temperature/SMART monitoring utilities aptitude install hddtemp smartmontools sed -i 's/^#start_smartd=yes/start_smartd=yes/' /etc/default/smartmontools /etc/init.d/smartmontools start |
Chris Lamb has a good Debian installation checklist, from which I stole most of this list.
1 # Configure sudo, adding my user to the sudo group so I don't get password prompts
2 aptitude install sudo
3 adduser xjjk sudo
4
5 # Configure locales to prevent harassment about it later
6 aptitude install locales
7 dpkg-reconfigure -plow locales
8 # …or install all locales so they don't need to be configured/reinstalled
9 aptitude install locales-all
10
11 # Disable installation of recommended packages
12 echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/90recommends
13
14 # Enable log compression with date postfix'd extension
15 cat /etc/logrotate.conf | sed "s/#compress/compress/" > /etc/logrotate.conf.tmp
16 echo "dateext" >> /etc/logrotate.conf.tmp
17 mv /etc/logrotate.conf.tmp /etc/logrotate.conf
18
19 # Prevent PAM from allowing easily-crackable passwords
20 apt-get install libpam-cracklib
21
22 # Install essential utilities
23 sudo aptitude install
24 openssh-server \
25 atool lzma rzip xz-utils \
26 htop dstat iotop \
27 manpages manpages-dev \
28 strace tcpdump lsof \
29 moreutils \
30 dnsutils \
31 chrony \
32 molly-guard
33
34 # HDD Temperature/SMART monitoring utilities
35 aptitude install hddtemp smartmontools
36 sed -i 's/^#start_smartd=yes/start_smartd=yes/' /etc/default/smartmontools
37 /etc/init.d/smartmontools start