-
Notifications
You must be signed in to change notification settings - Fork 1
/
debserver7
executable file
·498 lines (452 loc) · 19 KB
/
debserver7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
#!/bin/bash
# debserver7 - a bunch of functions used in the other scripts
#
# DEBServer7 - Debian Install Server Scripts
# A set of scripts to automate installation of Servers on Debian
# Copyright (c) 2016 Frédéric LIETART - [email protected]
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Syntaxe: # su - -c "./debserver8.sh"
# Syntaxe: or # sudo ./debserver8.sh
# VERSION="7.0-20160906"
#=============================================================================
# Liste des applications à installer: A adapter a vos besoins
# Voir plus bas les applications necessitant un depot specifique
LISTE="ntp htop tree most ccze iftop molly-guard manpages-fr manpages-fr-extra tmux bash-completion wget"
#=============================================================================
#=============================================================================
# Test que le script est lance en root
#=============================================================================
if [ $EUID -ne 0 ]; then
echo "Le script doit être lancé en root: # sudo $0" 1>&2
exit 1
fi
#=============================================================================
#=============================================================================
# Test si version de Debian OK
#=============================================================================
if [ "$(cut -d. -f1 /etc/debian_version)" == "7" ]; then
echo "Version compatible, début de l'installation"
else
echo "Script non compatible avec votre version de Debian" 1>&2
exit 1
fi
#=============================================================================
#=============================================================================
# Mise a jour de la liste des depots
#=============================================================================
echo "
deb http://httpredir.debian.org/debian wheezy main contrib non-free
#deb-src http://httpredir.debian.org/debian wheezy main contrib non-free
deb http://httpredir.debian.org/debian wheezy-updates main contrib non-free
#deb-src http://httpredir.debian.org/debian wheezy-updates main contrib non-free
deb http://security.debian.org/ wheezy/updates main contrib non-free
#deb-src http://security.debian.org/ wheezy/updates main contrib non-free
###Third Parties Repos
## Deb-multimedia.org
#deb http://www.deb-multimedia.org wheezy main non-free
## Debian Backports
#deb http://httpredir.debian.org/debian wheezy-backports main
## HWRaid
# wget -O - http://hwraid.le-vert.net/debian/hwraid.le-vert.net.gpg.key | sudo apt-key add -
#deb http://hwraid.le-vert.net/debian wheezy main" > /etc/apt/sources.list
#=============================================================================
#=============================================================================
# Update
#=============================================================================
echo -e "\033[34m========================================================================================================\033[0m"
echo "Mise a jour de la liste des depots"
echo -e "\033[34m========================================================================================================\033[0m"
apt-get update
clear
#=============================================================================
#=============================================================================
# Upgrade
#=============================================================================
echo -e "\033[34m========================================================================================================\033[0m"
echo "Mise a jour du systeme"
echo -e "\033[34m========================================================================================================\033[0m"
apt-get upgrade
clear
#=============================================================================
#=============================================================================
# Installation
#=============================================================================
echo -e "\033[34m========================================================================================================\033[0m"
echo "Installation des logiciels suivants: $LISTE"
echo -e "\033[34m========================================================================================================\033[0m"
apt-get -y install $LISTE
#=============================================================================
#=============================================================================
# Configuration bashrc
#=============================================================================
cat > "$HOME"/.bashrc << EOL
#-------------------
# Alias
#-------------------
# la couleur pour chaque type de fichier, les répertoires s'affichent en premier
alias ls='ls -h --color --group-directories-first'
# affiche les fichiers cachés
alias lsa='ls -A'
# affiche en mode liste détail
alias ll='ls -ls'
# affiche en mode liste détail + fichiers cachés
alias lla='ls -Al'
# tri par extension
alias lx='ls -lXB'
# tri par taille, le plus lourd à la fin
alias lk='ls -lSr'
# tri par date de modification, la plus récente à la fin
alias lc='ls -ltcr'
# tri par date d’accès, la plus récente à la fin
alias lu='ls -ltur'
# tri par date, la plus récente à la fin
alias lt='ls -ltr'
# Pipe a travers 'more'
alias lm='ls -al | more'
# ls récurssif
alias lr='ls -lR'
# affciche sous forme d'arborescence, nécessite le paquet tree
alias tree='tree -Csu'
# affiche les dernière d'un fichier log (par exemple) en live
alias voirlog='tail -f'
# commande df avec l'option -human
alias df='df -kTh'
# commande du avec l'option -human
alias du='du -kh'
# commande du avec l'option -human, au niveau du répertoire courant
alias duc='du -kh --max-depth=1'
# commande free avec l'option affichage en Mo
alias free='free -m'
# nécessite le paquet "htop", un top amélioré et en couleur
alias top='htop'
# faire une recherche dans l'historique de commande
alias shistory='history | grep'
# raccourci history
alias h='history'
# Ajout log en couleurs
ctail() { tail -f \$1 | ccze -A; }
cless() { ccze -A < \$1 | less -R; }
#set a fancy prompt (non-color, unless we know we want color)
PS1="\\\[\\\033[01;31m\\\][\\\u@\\\h\\\[\\\033[00m\\\]:\\\[\\\033[01;34m\\\]\\\w]\\\[\\\033[00m\\\]\\\$ "
# activation date_heure dans la commande history
export HISTTIMEFORMAT="%Y/%m/%d_%T : "
# les pages de man en couleur, necessite le paquet most
export PAGER=most
# enable bash completion in interactive shells
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
EOL
clear
#=============================================================================
#=============================================================================
# Email admin
#=============================================================================
echo -ne "\033[32;1mAdresse mail pour les rapports de securite: \033[0m"
read -r MAIL
#=============================================================================
#=============================================================================
# Reconfigure locales !
#=============================================================================
echo -ne "\033[32;1mVoulez-vous reconfigurer locales (y/N): \033[0m"
read -r LOCALES
: "${LOCALES:="N"}"
if [[ ${LOCALES} == [Yy] ]]; then
dpkg-reconfigure locales
fi
#=============================================================================
#=============================================================================
# Install beep
#=============================================================================
echo -ne "\033[32;1mVoulez-vous mettre en place un bip au démarrage/extinction de la machine (y/N): \033[0m"
read -r BEEP
: "${BEEP:="N"}"
if [[ ${BEEP} == [Yy] ]]; then
apt-get install -y beep
cat > /etc/init.d/beep << EOL
#!/bin/sh
### BEGIN INIT INFO
# Provides: beep
# Required-Start: $all
# Required-Stop: $all
# Should-Start:
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Beeps after system start or before shutdown
### END INIT INFO
case "$1" in
start|"")
/usr/bin/beep -l 125 -f 500 &&
/usr/bin/beep -l 125 -f 1000 &&
/usr/bin/beep -l 125 -f 2000 &&
/usr/bin/beep -l 125 -f 3000 &&
/usr/bin/beep -l 125 -f 4000 &&
/usr/bin/beep -l 125 -f 5000
;;
stop)
/usr/bin/beep -l 125 -f 5000 &&
/usr/bin/beep -l 125 -f 4000 &&
/usr/bin/beep -l 125 -f 3000 &&
/usr/bin/beep -l 125 -f 2000 &&
/usr/bin/beep -l 125 -f 1000 &&
/usr/bin/beep -l 125 -f 500
;;
*)
echo "Usage: beep [start|stop]" >&2
exit 3
;;
esac
EOL
chmod +x /etc/init.d/beep && update-rc.d beep defaults
fi
#=============================================================================
#=============================================================================
# Désactiver les paquets recommandés !
#=============================================================================
echo -ne "\033[31;1mATTENTION : Voulez-vous désactiver l'installation de paquets recommandés (y/N): \033[0m"
read -r NORECOMMENDS
: "${NORECOMMENDS:="N"}"
if [[ ${NORECOMMENDS} == [Yy] ]]; then
echo "APT::Install-Recommends \"0\";
APT::Install-Suggests \"0\"; " > /etc/apt/apt.conf
fi
#=============================================================================
clear
#=============================================================================
# Config reseau
#=============================================================================
echo "
# The primary network interface
#allow-hotplug eth0
#iface eth0 inet static
# address 192.168.x.1
# netmask 255.255.255.0
# network 192.168.x.0
# broadcast 192.168.x.255
# gateway 192.168.x.254
# dns-nameservers 192.168.x.1 x.x.x.x
# dns-search domain.com
## Multi-IP ##
#auto eth0:0
#iface eth0:0 inet static
# address 192.168.x.41
# netmask 255.255.255.0
# network 192.168.x.0
# broadcast 192.168.x.255
# gateway 192.168.x.254
# dns-nameservers 192.168.x.1 x.x.x.x
# dns-search domain.com
##
## Bonding ##
## apt-get install ifenslave-2.6
#iface bond0 inet static
# address 192.168.x.1
# netmask 255.255.255.0
# network 192.168.x.0
# broadcast 192.168.x.255
# gateway 192.168.x.254
# dns-nameservers 192.168.x.1 x.x.x.x
# dns-search domain.com
# bond-slaves eth0 eth1
# bond-mode 1
# bond-miimon 100
# bond-primary eth0 eth1
##
## VLAN ##
# modprobe 8021q && apt-get install vlan
#iface vlanXX inet static
# address 10.30.10.12
# netmask 255.255.0.0
# network 10.30.0.0
# broadcast 10.30.255.255
# vlan-raw-device eth0
##
" > /etc/network/interfaces.exemple
echo -e "\033[34m========================================================================================================\033[0m"
echo -e "Ajout d'exemple de configuration dans /etc/network/interfaces.exemple"
echo -e "\033[34m========================================================================================================\033[0m"
sleep 5
clear
#=============================================================================
#=============================================================================
# Install apt-listbugs
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer apt-listbugs (y/N): \033[0m"
read -r APTLISTBUGS
: "${APTLISTBUGS:="N"}"
if [[ ${APTLISTBUGS} == [Yy] ]]; then
apt-get install -y apt-listbugs
fi
#=============================================================================
#=============================================================================
# Install smartmontools
echo -ne "\033[32;1mVoulez-vous installer smartmontools (y/N): \033[0m"
read -r SMART
: "${SMART:="N"}"
if [[ ${SMART} == [Yy] ]]; then
apt-get install -y smartmontools
fi
#=============================================================================
#=============================================================================
# Install hdparm
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer hdparm (y/N): \033[0m"
read -r HDPARM
: "${HDPARM:="N"}"
if [[ ${HDPARM} == [Yy] ]]; then
apt-get install -y hdparm
fi
#=============================================================================
#=============================================================================
# Install lm-sensors
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer lm-sensors (y/N): \033[0m"
read -r LMSENSORS
: "${LMSENSORS:="N"}"
if [[ ${LMSENSORS} == [Yy] ]]; then
apt-get install -y lm-sensors
fi
#=============================================================================
#=============================================================================
# Configuration cron-apt
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer cron-apt (y/N): \033[0m"
read -r CRONAPT
: "${CRONAPT:="N"}"
if [[ ${CRONAPT} == [Yy] ]]; then
apt-get -y install -y cron-apt
echo "
APTCOMMAND=/usr/bin/apt-get
MAILTO=\"$MAIL\"
MAILON=\"upgrade\"" > /etc/cron-apt/config
echo -ne "\033[32;1mVoulez-vous installer les mises à jours automatiquements (Y/n): \033[0m"
read -r CRONAPTAUTO
: "${CRONAPTAUTO:="Y"}"
if [[ ${CRONAPTAUTO} == [Yy] ]]; then
echo "dist-upgrade -y -o APT::Get::Show-Upgraded=true" > /etc/cron-apt/action.d/5-install
fi
fi
#=============================================================================
#=============================================================================
# Configuration Proxy APT
#=============================================================================
echo -ne "\033[32;1mVoulez-vous vous raccorder à un proxy APT (y/N): \033[0m"
read -r PROXY
: "${PROXY:="N"}"
if [[ ${PROXY} == [Yy] ]]; then
echo -e "IP et port du proxy (example : 192.168.1.1:9999) ?"
read -r IPPROXY
echo "Acquire::http::Proxy \"http://${IPPROXY}\";" > /etc/apt/apt.conf.d/01proxy
fi
#=============================================================================
#=============================================================================
# Install Webmin
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer Webmin (y/N): \033[0m"
read -r WEBMIN
: "${WEBMIN:="N"}"
if [[ ${WEBMIN} == [Yy] ]]; then
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.801_all.deb &&
dpkg --install webmin_1.801_all.deb ||
apt-get install -fy &&
rm webmin_1.801_all.deb
fi
#=============================================================================
#=============================================================================
# Install Avahi
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer Avahi Daemon (y/N): \033[0m"
read -r AVAHI
: "${AVAHI:="N"}"
if [[ ${AVAHI} == [Yy] ]]; then
apt-get install -y avahi-daemon
echo -e "\033[34m========================================================================================================\033[0m"
echo -e "Veuillez vérifier le fichier /etc/nsswitch.conf"
echo -e "hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 mdns"
echo -e "\033[34m========================================================================================================\033[0m"
sleep 5
fi
#=============================================================================
#=============================================================================
# Install Glances
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer Glances (via pip) (y/N): \033[0m"
read -r GLANCES
: "${GLANCES:="N"}"
if [[ ${GLANCES} == [Yy] ]]; then
wget -O- http://bit.ly/glances | /bin/bash
fi
#=============================================================================
#=============================================================================
# Install cheat (via pip) https://github.com/chrisallenlane/cheat
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer cheat (via pip) (y/N): \033[0m"
read -r CHEAT
: "${CHEAT:="N"}"
if [[ ${CHEAT} == [Yy] ]]; then
apt-get install -y python-pip
pip install cheat
fi
#=============================================================================
#=============================================================================
# Install UFW
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer UFW (y/N): \033[0m"
read -r UFW
: "${UFW:="N"}"
if [[ ${UFW} == [Yy] ]]; then
apt-get install -y ufw
ufw allow ssh
ufw logging on
ufw enable
fi
#=============================================================================
#=============================================================================
# Install fail2ban & rkhunter
#=============================================================================
echo -ne "\033[32;1mVoulez-vous installer des systèmes anti-malwares/bruteforce (y/N): \033[0m"
read -r FAIL2BAN
: "${FAIL2BAN:="N"}"
if [[ ${FAIL2BAN} == [Yy] ]]; then
apt-get install -y fail2ban rkhunter
dpkg-reconfigure rkhunter
fi
#=============================================================================
#=============================================================================
# Install Issue personnalisé
#=============================================================================
#echo -ne "\033[32;1mVoulez-vous une bannière de connexion personnalisée (y/N): \033[0m"
#read -r ISSUE
#: "${ISSUE:="N"}"
#if [[ ${ISSUE} == [Yy] ]]; then
# wget http://dl.thelinuxfr.org/contribs/issue && mv issue /etc/issue
#fi
#=============================================================================
#=============================================================================
# END
#=============================================================================
clear
echo -e "\033[34m========================================================================================================\033[0m"
echo "Liste d'applications utiles installées"
echo "$LISTE"
echo "Pensez à aller dans /etc/default pour configurer les daemons smartmontools hdparm"
echo ""
echo "Notes de publication : https://www.debian.org/releases/wheezy/releasenotes"
echo "Manuel d'installation : https://www.debian.org/releases/wheezy/installmanual"
echo ""
echo "Le cahier de l'administrateur Debian : https://debian-handbook.info/browse/fr-FR/wheezy/"
echo -e "\033[34m========================================================================================================\033[0m"
#=============================================================================