forked from leinardi/JDInstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jdi_lucid.sh
executable file
·295 lines (258 loc) · 9.17 KB
/
jdi_lucid.sh
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
#!/bin/bash
# JDInstall
# TODO:
# *) Scrivere una breve descrizione del programma al posto del commento #JDInstall
# *) Installazione selettiva dei repository esterni e delle applicazioni a essi legate
# *) Prevedere un "dpkg --config -a" in caso di problemi
#
# Changelog:
#
# Versione 1.0910.3 (1 dic 2009)
# * Separazione tra applicazioni presenti o meno nei repo ufficiali di Ubuntu
# * Ordinamento alfabetico dei pacchetti
# * Sostituito Kompare con Meld
# * Sostituito GFTP con Filezilla
# * Aggiunto il repository di GetDeb
#
# Versione 1.0910.2 (7 nov 2009)
# * Abilitati i repository di Dropbox e VirtualBox
# * Aggiunto pwgen all'elenco dei pacchetti
# * Aggiunto Sun Java6 Plugin all'elenco dei pacchetti (abilita il supporto alle applet Java in Firefox)
#
# Versione 1.0910.1 (2 ott 2009)
# * Script aggiornato per Ubuntu 9.10 Lucid Linx
# * Aggiunto Audio Tag Tool all'elenco dei pacchetti
# * Aggiunto Sound Converter all'elenco dei pacchetti
# * Aggiunto Pidgin all'elenco dei pacchetti
# * Aggiunto GThumb all'elenco dei pacchetti
# * Aggiornato lo script per l'utilizzo di add-apt-repository
#
# Versione 1.0.1 (27 lug 2009)
# * Aggiunto il Changelog
# * Aggiunta la variabile DISTRIBUZIONE
# * Aggiunto la variabile VERSIONE
# * Aggiuntoil parsing degli argomenti
# * Aggiunte le opzioni -a -h -v
# * Aggiunto supporto sperimentale ad architettura x86_64
#
DISTRIBUZIONE="lucid"
VERSIONE="JDInstall 1.0910.3 ($DISTRIBUZIONE)"
WXXCODECS="w32codecs"
if [[ `uname -m` == 'amd64' || `uname -m` == 'x86_64' ]]
then
WXXCODECS="w64codecs"
echo "ATTENZIONE: Supporto ad architettura x86_64 sperimentale."
echo "In caso di problemi inviare segnalazioni a <webmaster@jdsblog.it>"
echo "o visitare http://www.jdsblog.it/jdinstaller/"
read -p "Premere un tasto per continuare..."
fi
APPZ_REPO_UFFICIALI="avidemux build-essential bwm-ng cmatrix compizconfig-settings-manager conky deluge-torrent emesene filezilla finch fusion-icon gimp gmail-notify gnome-art gnome-commander gnome-mplayer gparted gthumb gtk-recordmydesktop hardinfo hddtemp htop iotop k3b lm-sensors mc meld mercurial mplayer msttcorefonts mumble nautilus-actions nautilus-image-converter nautilus-open-terminal nfs-common nfs-kernel-server openoffice.org p7zip p7zip-full p7zip-rar padevchooser pidgin powertop pwgen rar sensors-applet sloccount smartmontools soundconverter startupmanager subtitleeditor subversion sun-java6-plugin tagtool tofrodos ubuntu-restricted-extras vim vim-gtk vlc vlc-plugin-pulse zlib1g-dev"
APPZ_ALTRI_REPO="$WXXCODECS libdvdcss2 ubuntu-tweak jdownloader skype google-chrome-beta"
APPZ="$APPZ_REPO_UFFICIALI $APPZ_ALTRI_REPO"
case $TMPDIR in
'')
tmp_dir="/tmp"
;;
*)
tmp_dir=$TMPDIR
;;
esac
while getopts :ahv OPZIONE
do
case $OPZIONE in
a)
echo "Elenco dei pacchetti da installare:"
echo $APPZ
exit 0
;;
h)
echo "Uso: $0 [OPZIONE]"
echo "Se avviato senza opzioni lo script procede con l'installazione."
echo " -a Visualizza l'elenco dei pacchetti da installare"
echo " -h Mostra questo aiuto"
echo " -v Visualizza il numero di versione"
echo ""
echo "Segnalare i bug a <webmaster@jdsblog.it>."
echo "Maggiori info su http://www.jdsblog.it/jdinstaller/"
exit 0
;;
v)
echo $VERSIONE
exit 0
;;
*)
echo "È stata indicata un'opzione illegale."
echo "Utilizzare $0 -h per ulteriori informazioni."
exit 1
;;
esac
done
lsb_release -c | grep -q $DISTRIBUZIONE
if [[ $? -ne 0 ]]
then
echo "Questo script è utilizzabile esclusivamente su Ubuntu 9.10 Lucid Linx"
echo "Info sulla tua distribuzione:"
lsb_release -d -c
exit 1
fi
if [[ $EUID -ne 0 ]]
then
echo "Lo script richiede l'esecuzione con i permessi di root." 1>&2
chmod 777 ./`basename $0`
sudo ./`basename $0`
exit 0
fi
function add_repo {
echo -n "Repository di $1: "
if cat /etc/apt/sources.list /etc/apt/sources.list.d/*.list | grep -q "$2"
then
echo "Già presente"
else
echo "$2" >> /etc/apt/sources.list.d/$1.list
# echo "$2 #$1" >> /etc/apt/sources.list
echo "Aggiunto"
if [[ $# -gt 2 ]]
then
echo -n "Importazione chiave di $1: "
wget -q $3 -O- | sudo apt-key add -
sleep 6
fi
fi
}
function enable_repo {
if cat /etc/apt/sources.list | grep -q "# $2"
then
echo -n "Abilitazione Repository $1: "
if eval $3
then
echo "OK"
else
echo "FALLITA!"
fi
else
echo -n "Repository $1: "
if cat /etc/apt/sources.list | grep -q "$2"
then
echo "Già presente"
else
echo "$2 #$1" >> /etc/apt/sources.list
echo "Aggiunto"
fi
fi
}
REPOLIST="Medibuntu, VLC, Ubuntu Tweak, VirtualBox"
PINGSITE="www.google.com"
PARTNER="deb http://archive.canonical.com/ubuntu lucid partner"
PARTNER_SRC="deb-src http://archive.canonical.com/ubuntu lucid partner"
PARTNER_SED='sed -i -e "s/# deb http:\/\/archive.canonical.com\/ubuntu lucid partner/deb http:\/\/archive.canonical.com\/ubuntu lucid partner/g" /etc/apt/sources.list'
PARTNER_SRC_SED='sed -i -e "s/# deb-src http:\/\/archive.canonical.com\/ubuntu lucid partner/deb-src http:\/\/archive.canonical.com\/ubuntu lucid partner/g" /etc/apt/sources.list'
BACKPORTS="deb http://it.archive.ubuntu.com/ubuntu/ lucid-backports main restricted universe multiverse"
BACKPORTS_SRC="deb-src http://it.archive.ubuntu.com/ubuntu/ lucid-backports main restricted universe multiverse"
BACKPORTS_SED='sed -i -e "s/# deb http:\/\/it.archive.ubuntu.com\/ubuntu\/ lucid-backports main restricted universe multiverse/deb http:\/\/it.archive.ubuntu.com\/ubuntu\/ lucid-backports main restricted universe multiverse/g" /etc/apt/sources.list'
BACKPORTS_SRC_SED='sed -i -e "s/# deb-src http:\/\/it.archive.ubuntu.com\/ubuntu\/ lucid-backports main restricted universe multiverse/deb-src http:\/\/it.archive.ubuntu.com\/ubuntu\/ lucid-backports main restricted universe multiverse/g" /etc/apt/sources.list'
MEDIBUNTU="deb http://packages.medibuntu.org/ $DISTRIBUZIONE free non-free"
MEDIBUNTU_KEY="http://packages.medibuntu.org/medibuntu-key.gpg"
SKYPE="deb http://download.skype.com/linux/repos/debian stable non-free"
DROPBOX="deb http://linux.dropbox.com/ubuntu $DISTRIBUZIONE main"
DROPBOX_SRC="deb-src http://linux.dropbox.com/ubuntu $DISTRIBUZIONE main"
VIRTUALBOX="deb http://download.virtualbox.org/virtualbox/debian $DISTRIBUZIONE non-free"
VIRTUALBOX_KEY="http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc"
#VBOX_USB="none /proc/bus/usb usbfs devgid=125,devmode=664 0 0"
GOOGLE="deb http://dl.google.com/linux/deb/ stable main"
GOOGLE_KEY="https://dl-ssl.google.com/linux/linux_signing_key.pub"
GETDEB="deb http://archive.getdeb.net/ubuntu lucid-getdeb apps"
GETDEB_KEY="http://archive.getdeb.net/getdeb-archive.key"
TVPLAYER="http://launchpad.net/tv-player/stable/1.0.5/+download/tv-player-gtk_1.0.5-all.deb"
echo "Questo script aggiungerà al source.list i seguenti repository per Ubuntu 10.04 \"Lucid Linx\":"echo "$REPOLIST"
echo
echo "Provvederà poi ad installare i seguenti pacchetti:"
echo "$APPZ"
echo
read -p "Continuare [S/n]? " sn
if [[ $sn != 's' ]] && [[ $sn != 'S' ]] && [[ $sn != '' ]]
then
echo "Interrotto."
exit 1
fi
echo
echo -n "Verifica connessione ad internet: "
ping -c1 $PINGSITE > /dev/null
if [ "$?" -ne 0 ]
then
echo "FALLITA"
echo "Il ping di $PINGSITE non è riuscito."
echo "Controllare la connessione ad internet e riprovare"
exit 1
fi
echo "OK"
echo
echo "=== Aggiornamento sorgenti software ==="
echo
sleep 1
apt-get update
echo
echo "=== Aggiornamento pacchetti installati ==="
echo
sleep 1
apt-get upgrade
echo
echo "=== Aggiunta repository ==="
sleep 1
echo -n "Backup del source.list originare: "
if cp /etc/apt/sources.list /etc/apt/sources.list.`date +%Y%m%d-%H%M%S`
then
echo "OK"
fi
echo
enable_repo "Ubuntu Partner" "$PARTNER" "$PARTNER_SED"
enable_repo "Ubuntu Partner (Sorgenti)" "$PARTNER_SRC" "$PARTNER_SRC_SED"
enable_repo "Ubuntu Lucid-Backports" "$BACKPORTS" "$BACKPORTS_SED"
enable_repo "Ubuntu Lucid-Backports (Sorgenti)" "$BACKPORTS_SRC" "$BACKPORTS_SRC_SED"
add-apt-repository ppa:tualatrix/ppa #Ubuntu-Tweak
add-apt-repository ppa:jd-team/jdownloader #JDownloader
add-apt-repository ppa:n-muench/vlc #VLC
#add-apt-repository ppa:ubuntu-x-swat/x-updates #X-Updates
add-apt-repository ppa:slicer/ppa #Mumble
add-apt-repository ppa:ubuntu-desktop/ppa #Ubuntu Desktop Team
#add-apt-repository ppa:subdownloader-developers/ppa #SubDownloader
#add-apt-repository ppa:pkg-games/ppa #pkg-games
#add-apt-repository ppa:deluge-team #Deluge"
#add-apt-repository ppa:openoffice-pkgs #OpenOffice.org
add_repo "google" "$GOOGLE" "$GOOGLE_KEY_KEY"
add_repo "medibuntu" "$MEDIBUNTU" "$MEDIBUNTU_KEY"
add_repo "virtualbox" "$VIRTUALBOX" "$VIRTUALBOX_KEY"
#add_repo "dropbox" "$DROPBOX"
#add_repo "getdeb" "$GETDEB" "$GETDEB_KEY"
#add_repo "skype" "$SKYPE"
echo "=== Repository aggiunti ==="
echo
sleep 2
echo "L'esecuzione proseguirà con l'installazione dei seguenti paccehtti:"
echo "$APPZ"
echo
read -p "Continuare [S/n]? " sn
if [[ $sn != 's' ]] && [[ $sn != 'S' ]] && [[ $sn != '' ]]
then
echo "Interrotto."
exit 1
fi
echo
echo "=== Aggiornamento sorgenti software ==="
echo
sleep 1
apt-get update
echo
echo "=== Aggiornamento pacchetti installati ==="
echo
sleep 1
apt-get upgrade
echo
echo "=== Installazione pacchetti ==="
echo
sleep 1
apt-get install $APPZ
apt-get remove postfix
wget -P $tmp_dir $TVPLAYER
dpkg -i $tmp_dir/`basename $TVPLAYER`
rm $tmp_dir/`basename $TVPLAYER`
exit 0