This repository has been archived by the owner on Dec 7, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xanaduinstaller-yad-final
1351 lines (1214 loc) · 45.7 KB
/
xanaduinstaller-yad-final
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env bash
# Made by Sinfallas <sinfallas@yahoo.com>
# Licence: GPL-2
# Based on refractainstaller-8.0.3 by Dean Linkous
LC_ALL=C
if [[ "$EUID" != "0" ]]; then
yad --window-icon=/usr/share/icons/install-icon.png --skip-taskbar --button=Aceptar:1 --fixed --center --text-align=fill --borders=6 --timeout=3 --title=ERROR --text="ERROR: Debes ser root."
exit 0
fi
if ! [[ -d /lib/live/mount/rootfs ]]; then
exit 0
fi
[[ $DISPLAY ]] || { echo "No hay un servidor X corriendo. Saliendo..." ; exit 0 ; }
trap "rm -f /run/$(basename $0).pid; exit" 0 1 2 3 15
echo "$BASHPID" > /run/"$(basename $0)".pid
error_log="/var/log/installer_error.log"
miicono="--window-icon=/usr/share/icons/install-icon.png"
rsync_excludes="/tmp/installer_exclude.list"
home_boot_excludes="/tmp/home_boot_exclude.list"
parti="/tmp/particionador"
xfspath="/target/etc/sysctl.d/12-xfs.conf"
x11path="/target/etc/X11/xorg.conf"
x11opt="/usr/share/x11/xorg.conf.d"
fspath="/target/etc/fstab"
light="/target/etc/lightdm/lightdm.conf"
greeter="/target/etc/lightdm/lightdm-gtk-greeter.conf"
swapfile_blocksize="1024"
swapfile_count="262144"
pmount_fixed="no"
fs_type_boot="ext4"
msgprt='--progress-text=Creando particiones, por favor espere... --title=Particionando'
advertencia='yad --center --skip-taskbar --fixed --text-align=fill --borders=6 --button=Aceptar:0 --button=Salir:1 --title=Advertencia'
errores='yad --center --skip-taskbar --fixed --title=Error --window-icon=error --text-align=fill --borders=6'
progreso='yad --center --fixed --progress --pulsate --auto-close --skip-taskbar'
grubversion=$(dpkg -l | grep -v bin | grep -v doc | awk '$2 ~ "grub-[pc]" {print $2}' | grep -v amd64 | grep -v i386 | grep -v common)
memoria=$(grep "MemTotal" /proc/meminfo | awk '{print $2}')
cpu=$(lscpu | grep "MHz" | awk '{print $3}')
cpu2=${cpu%.*}
miver=$(cat /etc/os-release | grep "VERSION_ID" | cut -d "=" -f2)
mive=${miver#'"'}
miver3=${mive%'"'}
if (( $memoria < 512000 )); then
memoria2="<span color='#ff0000'>$memoria</span>"
else
memoria2="<span color='#00b300'>$memoria</span>"
fi
if (( $cpu2 < 1000 )); then
cpu3="<span color='#ff0000'>$cpu2</span>"
else
cpu3="<span color='#00b300'>$cpu2</span>"
fi
rm -f $parti
rm -f $rsync_excludes
rm -f $home_boot_excludes
exec 2>"$error_log"
function advert () {
$advertencia --text="Esta opción eliminara toda la informacion del disco y no podra revertirse."
if [[ $? != 0 ]]; then
source /usr/bin/xanaduinstaller-yad-final
fi
}
function dialogopart () {
dispositivo=$(fdisk -l | grep "Disco" | awk '{print $2}' | sed 's/.$//g' | yad --center --no-click --list --title="Disco a particionar" --text="Seleccione el disco que desea particionar." --separator="" --column 'Dispositivo' --height 380 --width 150 --button="Aceptar":0)
if [[ -z "$dispositivo" ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text="No selecciono nada. Debe escoger un disco."
if [[ $? = 0 ]]; then
source /usr/bin/xanaduinstaller-yad-final
else
exit 0
fi
fi
for i in $(fdisk -l "$dispositivo" | grep "swap" | awk '{print $1}'); do
swapoff $i
done
for i in $(fdisk -l "$dispositivo" | grep "/dev" | grep -v "Disco" | awk '{print $1}'); do
umount -f $i
done
lvremove -f $(pvdisplay $(echo $dispositivo"*") | grep "VG" | awk '{print $3}' | uniq)
dd if=/dev/zero of=$dispositivo bs=1024k count=1
partprobe $dispositivo
if [[ $(arch) = x86_64 ]] || [[ $(arch) = amd64 ]]; then
if [[ -f /sys/firmware/efi/runtime ]]; then
parted -s $dispositivo -- mklabel gpt
parted -a optimal -s $dispositivo -- mkpart primary fat32 3 260
parted $dispositivo set 1 esp on
mkfs.vfat -n BOOT -F 32 $(fdisk -l $dispositivo | grep "EFI" | awk '{print $1}')
touch /tmp/efi
else
parted -s $dispositivo -- mklabel gpt
parted -a optimal -s $dispositivo -- mkpart non-fs 2 3
parted $dispositivo set 1 bios_grub on
parted -a optimal -s $dispositivo -- mkpart primary ext4 3 260
parted $dispositivo set 2 boot on
mkfs.ext4 -L boot -F $(fdisk -l $dispositivo | grep "EFI" | awk '{print $1}')
fi
else
parted -s $dispositivo -- mklabel msdos
parted -a optimal -s $dispositivo -- mkpart primary ext4 3 260
parted $dispositivo set 1 boot on
mkfs.ext4 -L boot -F $(fdisk -l $dispositivo | grep "Linux" | awk '{print $1}')
fi
parted -a optimal -s $dispositivo -- mkpart primary linux-swap 260 1330
mkswap -L swap -f $(fdisk -l $dispositivo | grep "swap" | awk '{print $1}')
}
function milvm2 () {
parted -a optimal -s $dispositivo -- mkpart extended 1330 100%
parted -a optimal -s $dispositivo -- mkpart logic ext2 1331 100%
logica=$(parted -s $dispositivo -l | grep "1331" | awk '{print $1}')
pvcreate -ffy $(echo $dispositivo"$logica")
vgcreate -fy xanadu $(echo $dispositivo"$logica")
lvcreate -l 100%FREE -n root xanadu
partprobe $dispositivo
mkfs.ext4 -F /dev/mapper/xanadu-root
touch $parti
}
function milvm3 () {
parted -a optimal -s $dispositivo -- mkpart non-fs 1331 100%
parted $dispositivo set 4 lvm on
casilvm=$(fdisk -l $dispositivo | grep "LVM" | awk '{print $1}')
pvcreate -ffy $casilvm
vgcreate -fy xanadu $casilvm
lvcreate -l 100%FREE -n root xanadu
partprobe $dispositivo
mkfs.ext4 -F /dev/mapper/xanadu-root
touch $parti
}
function milvm () {
advert
$advertencia --text="Se recomienda utilizar un sistema de energia de respaldo para utilizar LVM"
if [[ $? != 0 ]]; then
exit 0
fi
dialogopart
if [[ $(parted -s $dispositivo -- print | grep "Partition" | awk '{print $3}') = msdos ]]; then
milvm2 | $progreso $msgprt
else
milvm3 | $progreso $msgprt
fi
}
function miparticion2 () {
parted -a optimal -s $dispositivo -- mkpart primary ext4 1331 100%
partprobe $dispositivo
mkfs.ext4 -L root -F $(fdisk -l $dispositivo | grep "Sistema de ficheros de Linux" | awk '{print $1}')
touch $parti
}
function miparticion () {
advert
dialogopart
miparticion2 | $progreso $msgprt
}
function parauser () {
echo "user ALL=(ALL) ALL" > /target/etc/sudoers.d/live
chroot /target adduser user sambashare
chroot /target chage -M 183 user
chmod -R 0700 /target/home/user/
}
function finalizando_1 () {
rmdir /target/live-build/
rm -f /target/etc/apt/preferences.d/exclude.pref
rm -f /target/etc/apt/preferences
rm -f /target/etc/inittab
rm -rf /target/tmp/*
rm -rf /target/var/tmp/*
rm -rf /target/var/cache/polipo/*
rm -rf /target/root/.local/share/Trash/*
rm -rf /target/home/*/.local/share/Trash/*
rm -rf /target/home/*/.mozilla/firefox/*/*Cache*
find /target/var/log/ -type f -exec rm -f {} \;
sed -i 's_autologin-user=user_#autologin-user=user_g' $light
sed -i 's_autologin-user-timeout=0_#autologin-user-timeout=0_g' $light
sed -i 's_#greeter-hide-users=false_greeter-hide-users=false_g' $light
sed -i 's_#session-cleanup-script=_session-cleanup-script=/usr/bin/fin_g' $light
sed -i 's_show-indicators=~language;~session;~power_show-indicators=~session;~power_g' $greeter
sed -i 's_#show-clock=_show-clock=true_g' $greeter
sed -i 's_#clock-format=_clock-format=%a, %d %b %I:%M_g' $greeter
sed -i 's_umask 022_umask 027_g' /target/etc/init.d/rc
sed -i 's_UMASK 022_UMASK 027_g' /target/etc/login.defs
sed -i 's_/bin/bash_/usr/bin/fish_g' /target/etc/passwd
echo "default-user-image=/usr/share/images/desktop-base/logo1.png" >> $greeter
echo "umask 027" >> /target/etc/profile
echo "auth required pam_succeed_if.so user != root quiet" >> /target/etc/pam.d/lightdm
echo "proc /proc proc defaults,hidepid=2 0 0" >> $fspath
echo "tmpfs /run tmpfs rw,nosuid,async,noexec,nodev,noatime,mode=755 0 0" >> $fspath
echo "tmpfs /tmp tmpfs noatime,async,nosuid,noexec,nodev,rw 0 0" >> $fspath
echo "sshd : ALL" >> /target/etc/hosts.allow
echo 'DPkg::Post-Invoke {"echo Ejecutando prelink, espere...;/etc/cron.daily/prelink";}' > /target/etc/apt/apt.conf
if [[ $install = "simple" ]]; then
parauser
fi
if ! [[ -z $(fdisk -l | grep "swap" | awk '{print $1}') ]]; then
rm -f /target/swapfile
sed -i 's_/swapfile_#/swapfile_g' $fspath
fi
if [[ $(cat /target/etc/hostname) = "xanadu" ]]; then
echo xanadu-$(date | md5sum | cut -c 1-10) > /target/etc/hostname
sed -i 's_xanadu_'$(cat /target/etc/hostname)'_g' /target/etc/hosts
fi
if [[ -n "$(lspci | grep -E 'VGA|Display' | head -n1 | cut -d ':' -f3 | grep -F 'Intel')" ]]; then
echo 'Section "Device"' > $x11path
echo ' Identifier "intel"' >> $x11path
echo ' Driver "intel"' >> $x11path
echo ' BusID "PCI:0:2:0"' >> $x11path
echo ' Option "AccelMethod" "SNA"' >> $x11path
echo ' Option "SwapbuffersWait" "false"' >> $x11path
echo ' Option "Tiling" "true"' >> $x11path
echo ' Option "BackingStore" "True"' >> $x11path
echo ' Option "XvMC" "on"' >> $x11path
echo ' Option "TripleBuffer" "true"' >> $x11path
echo ' Option "DRI" "true"' >> $x11path
echo ' Option "EXAOptimizeMigration" "true"' >> $x11path
echo ' Option "MigrationHeuristic" "greedy"' >> $x11path
echo 'EndSection' >> $x11path
echo 'Section "DRI"' > $x11opt/30-serverflags.conf
echo ' Mode 0660' >> $x11opt/30-serverflags.conf
echo 'EndSection' >> $x11opt/30-serverflags.conf
echo 'Section "Extensions"' >> $x11opt/30-serverflags.conf
echo ' Option "Composite" "Enable"' >> $x11opt/30-serverflags.conf
echo ' Option "RENDER" "Enable"' >> $x11opt/30-serverflags.conf
echo ' Option "DAMAGE" "Enable"' >> $x11opt/30-serverflags.conf
echo 'EndSection' >> $x11opt/30-serverflags.conf
echo 'Section "ServerFlags"' >> $x11opt/30-serverflags.conf
echo ' Option "AllowGLXWithComposite" "true"' >> $x11opt/30-serverflags.conf
echo ' Option "XAANoOffscreenPixmaps" "true"' >> $x11opt/30-serverflags.conf
echo ' Option "AddARGBGLXVisuals" "True"' >> $x11opt/30-serverflags.conf
echo ' Option "RandR" "on"' >> $x11opt/30-serverflags.conf
echo ' Option "RENDER" "on"' >> $x11opt/30-serverflags.conf
echo ' Option "DRI2" "True"' >> $x11opt/30-serverflags.conf
echo ' Option "GlxVisuals" "all"' >> $x11opt/30-serverflags.conf
echo ' Option "AutoAddDevices" "True"' >> $x11opt/30-serverflags.conf
echo ' Option "AutoEnableDevices" "True"' >> $x11opt/30-serverflags.conf
echo ' Option "AllowEmptyInput" "False"' >> $x11opt/30-serverflags.conf
echo 'EndSection' >> $x11opt/30-serverflags.conf
fi
if [[ $fs_type_os = "xfs" ]]; then
echo "fs.xfs.age_buffer_centisecs = 1500" > $xfspath
echo "fs.xfs.error_level = 3" >> $xfspath
echo "fs.xfs.filestream_centisecs = 3000" >> $xfspath
echo "fs.xfs.inherit_noatime = 1" >> $xfspath
echo "fs.xfs.inherit_nodefrag = 1" >> $xfspath
echo "fs.xfs.inherit_nodump = 1" >> $xfspath
echo "fs.xfs.inherit_nosymlinks = 0" >> $xfspath
echo "fs.xfs.inherit_sync = 1" >> $xfspath
echo "fs.xfs.irix_sgid_inherit = 0" >> $xfspath
echo "fs.xfs.irix_symlink_mode = 0" >> $xfspath
echo "fs.xfs.panic_mask = 0" >> $xfspath
echo "fs.xfs.rotorstep = 1" >> $xfspath
echo "fs.xfs.speculative_prealloc_lifetime = 300" >> $xfspath
echo "fs.xfs.stats_clear = 0" >> $xfspath
echo "fs.xfs.xfsbufd_centisecs = 100" >> $xfspath
echo "fs.xfs.xfssyncd_centisecs = 3000" >> $xfspath
fi
if (( $memoria > 4096000 )); then
echo "tmpfs /var/cache/apt/archives tmpfs noatime,async,nodev 0 0" >> $fspath
yad --skip-taskbar --fixed --center --text-align=fill --borders=6 --button=Aceptar:0 --button=Cancelar:1 --title=Finalizando --text="¿Desea activar fail2ban, psad y aide? (No se recomienda si tiene menos de 4 GB de RAM)"
if [[ $? = 0 ]]; then
chroot /target systemctl enable ntp
chroot /target systemctl enable fail2ban
chroot /target systemctl enable psad
chroot /target aideinit -y -f
mv -f -v /target/var/lib/aide/aide.db.new /target/var/lib/aide/aide.db
else
chroot /target systemctl disable ntp
chroot /target systemctl disable fail2ban
chroot /target systemctl disable psad
fi
fi
if [[ $(cat /sys/block/$migrub/queue/rotational) = "0" ]]; then
if ! [[ -z $(hdparm -I $migrub | grep "TRIM supported") ]]; then
echo "#!/usr/bin/env bash" > /target/etc/cron.daily/trim
echo 'echo "*** $(date -R) ***" >> /var/log/trim.log' >> /target/etc/cron.daily/trim
echo "fstrim -v / >> /var/log/trim.log" >> /target/etc/cron.daily/trim
if ! [[ -z $(hdparm -I $home_dev | grep "TRIM supported") ]]; then
echo "fstrim -v /home >> /var/log/trim.log" >> /target/etc/cron.daily/trim
fi
chmod +x /target/etc/cron.daily/trim
fi
elev="elevator=noop"
fi
if ! [[ -z $(lscpu | grep GenuineIntel) ]]; then
i915="i915.powersave=1 i915.i915_enable_fbc=1 i915.modeset=1 i915.i915_enable_rc6=1 i915.lvds_downclock=1 enable_mtrr_cleanup mtrr_spare_reg_nr=1"
fi
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="acpi_osi=Linux swapaccount=1 cgroup_enable=memory security=apparmor apparmor=1 panic=10 quiet '$i915 $elev'"/g' /target/etc/default/grub
chmod 0600 /target/etc/sudoers
chmod 0644 /target/usr/bin/lxpolkit
chroot /target chmod -s /usr/bin/passwd
chroot /target chmod -s /usr/bin/wall
chroot /target chmod -s /bin/su
chroot /target groupadd -r fuse
chroot /target chage -M 365 root
chroot /target yes "" | sensors-detect
chroot /target iucode_tool --scan-system
chroot /target update-initramfs -u
chroot /target update-grub2
chroot /target systemctl enable systemd-readahead-collect
chroot /target systemctl enable systemd-readahead-replay
chroot /target systemctl enable swapspace
chroot /target systemctl enable dnsmasq
chroot /target systemctl enable dnscrypt-proxy
chroot /target systemctl disable clamav-freshclam
chroot /target systemctl disable i2p
chroot /target systemctl disable memlockd
chroot /target systemctl disable polipo
chroot /target systemctl disable privoxy
chroot /target systemctl disable ssh
chroot /target systemctl disable tor
chroot /target apt -y remove xanadu-installer sysvinit xanadu-grubdoctor
}
function loctimezone () {
echo -e "\n\tConfigure la zona horaria.\n"
sleep 2
dpkg-reconfigure tzdata
#dpkg-reconfigure locales
#dpkg-reconfigure keyboard-configuration
}
function check_exit () {
if [[ $? != 0 ]]; then
$errores --button="Continuar":0 --button="Salir ahora":1 --text="Error detectado: $? $error_message
\Vea $error_log para detalles. \n\nEsto puede no ser fatal.. Presione \"Continuar\" para proceder"
if [[ $? != 0 ]]; then
cleanup
exit 0
fi
fi
}
function cleanup () {
echo -e "\n @@@ Limpiando...\n" >> "$error_log"
if $(df | grep -q /target/proc/); then
umount /target/proc/
fi
if $(df | grep -q /target/dev/); then
umount /target/dev/
fi
if $(df | grep -q /target/sys/); then
umount /target/sys/
fi
if $(df | grep -q $boot_dev); then
umount -l $boot_dev
fi
if $(df | grep -q /target_boot); then
umount -l /target_boot/
fi
if $(df | grep -q /target_home); then
umount -l /target_home/
fi
#if $(df | grep -q $home_dev); then
# umount $home_dev
#fi
if $(df | grep -q "\/dev\/mapper\/home_fs"); then
umount /dev/mapper/home_fs
fi
if [[ -h /dev/mapper/home_fs ]]; then
cryptsetup luksClose home_fs
fi
if $(df | grep -q /target); then
umount -l /target/
fi
if $(df | grep -q $install_dev); then
umount $install_dev
fi
if $(df | grep "\/dev\/mapper\/root_fs"); then
umount /dev/mapper/root_fs
fi
if [[ -h /dev/mapper/root_fs ]]; then
cryptsetup luksClose /dev/mapper/root_fs
fi
if [[ -d /target ]]; then
rm -rf /target
fi
if [[ -d /target_home ]]; then
rm -rf /target_home
fi
if [[ -d /target_boot ]]; then
rm -rf /target_boot
fi
rm -rf /target/tmp/*
rm -rf /target/var/tmp/*
rm -rf /target/var/cache/polipo/*
rm -rf /target/root/.local/share/Trash/*
rm -rf /target/home/*/.local/share/Trash/*
rm -rf /target/home/*/.mozilla/firefox/*/*Cache*
}
function preinstall () {
yad $miicono --image=gtk-dialog-info --center --title="Particionamiento" --text-align=fill --borders=6 --button="Particiones Convencionales":0 --button="Utilizar LVM":1 --button="Regresar":2 --button="Salir":3 --text="Seleccione el tipo de particiones que desea utilizar."
ans="$?"
case $ans in
0) miparticion ; check_exit ;;
1) milvm ; check_exit ;;
2) source /usr/bin/xanaduinstaller-yad-final ;;
3) exit 0 ;;
esac
}
function choose_boot () {
boot_dev=$(find /dev -mindepth 1 -maxdepth 1 -name "*[sh]d[a-z][1-9]*" | sort | awk '{print "\n" $0 }' | yad $miicono --center --list --title="particion /boot" --text="Seleccione una particion para /boot." --separator="" --column ' ' --column 'Particiones' --height=400 --width=150 --button="Aceptar":0)
if [[ -z $boot_dev ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text="No selecciono nada. Debe escoger una particion. Que quiere hacer?"
if [[ $? = 0 ]]; then
choose_boot
else
exit 0
fi
fi
}
function fix_hostname () {
new_hostname=$(yad $miicono --center --text-align=fill --borders=6 --entry --title="Cambio de hostname" --text="Hostname erroneo. Intente de nuevo." --entry-text="$HOSTNAME" --width=500 --button="Aceptar":0)
test_hostname
}
function test_hostname () {
if [[ $new_hostname =~ [_]|[@]|[~]|[\!]|[\#]|[=]|[+]|[\&]|[\^]|[\$]|[%]|[\(]|[\)]|[\*]|[\:]|[\;]|[\"]|[\']|[\`]|[,]|[.]|[\<]|[\>]|[\?]|[\{]|[\}]|[\[]|[\]]|[/]|[\|]|[\ ] ]]; then
fix_hostname
elif [[ $new_hostname = -* ]] || [[ $new_hostname = *- ]]; then
fix_hostname
elif [[ -z $new_hostname ]]; then
new_hostname="$HOSTNAME"
fi
}
function select_hostname () {
new_hostname=$(yad $miicono --center --entry --title="Cambio de hostname" --text="Ingrese el nuevo hostname para el sistema." --entry-text="$HOSTNAME" --width=500 --button="Aceptar":0)
#test_hostname
}
cat > $rsync_excludes <<EOF
- /dev/*
- /cdrom/*
- /media/*
- /mnt/*
- /sys/*
- /proc/*
- /boot/grub/grub.cfg
- /boot/grub/menu.lst
- /boot/grub/device.map
- /etc/udev/rules.d/70-persistent-cd.rules
- /etc/udev/rules.d/70-persistent-net.rules
- /etc/fstab
- /etc/mtab
- /etc/apt/preferences.d/exclude.pref
- /etc/apt/preferences
- /home/snapshot/
- /home/*/.gvfs
- /home/*/.cache/*
- /home/*/.local/share/Trash/*
- /home/*/.mozilla/firefox/*/*Cache*
- /lib/live/overlay
- /lib/live/image
- /lib/live/rootfs
- /lib/live/mount
- /lib/live/overlay
- /lib/live/image
- /lib/live/rootfs
- /lib/live/mount
- /live
- /live-build
- /root/.local/share/Trash/*
- /run/*
- /swapfile
- /target
- /tmp/*
- /var/cache/polipo/*
- /var/cache/samba/*
- /var/log/*
- /var/run/*
- /var/spool/*
- /var/tmp/*
EOF
chmod 666 $rsync_excludes
cat > $home_boot_excludes <<EOF
- *.gvfs
- *.Xauthority
- *.ICEauthority
- *.xsession-errors*
EOF
chmod 666 $home_boot_excludes
yad $miicono --center --text-align=fill --borders=6 --title="Instalar Xanadu GNU/Linux $miver3" --button="Instalacion simple":0 --button="Instalacion experta":1 --button="Salir":2 --text="
Esta aplicacion instalara Xanadu GNU/Linux en su equipo.
Cantidad minima de RAM: 512000 kB.
Cantidad recomendada de RAM: 1073740 kB.
Cantidad detectada de RAM: $memoria2 kB.
Velocidad minima del CPU: 1000 MHz.
Velocidad recomendada del CPU: 1500 MHz.
Velocidad detectada del CPU: $cpu3 MHz."
mode="$?"
case $mode in
0) install="simple" ;;
1) install="expert" ;;
2) exit 0 ;;
esac
if [[ $install = "expert" ]]; then
opts=$(yad $miicono --center --list --title="Opciones de instalacion" --text="Marque las opciones que usted quiere para la instalacion.
Si usted no entiende una opcion, probablemente no la necesite." --checklist --column "Marque" --column "Num" --column "Opcion" --width=590 --height=525 --button="Aceptar":0 --button="Salir":1\
FALSE 01 "Cambiar nombre de usuario" \
FALSE 02 "Crear una particion /home separada" \
TRUE 03 "Crear una particion /boot separada" \
FALSE 04 "Cifra la raiz del sistema de archivos (requiere /boot separada)" \
FALSE 05 "Cifra la particion /home (requiere /home separada)" \
FALSE 06 "Escribe data aleatoria a las particiones cifradas (mas seguro)" \
FALSE 07 "Escribe ceros a todas las particiones (para borrar la data previa)" \
FALSE 08 "No instala el bootloader" \
FALSE 09 "No formatea el sistema de archivos" \
FALSE 10 "Usar UUID en /etc/fstab" \
FALSE 11 "Usar etiquetas del sistema de archivos en /etc/fstab" \
FALSE 12 "Cambiar hostname")
fi
if [[ $? = 1 ]]; then
exit 0
fi
if $(echo $opts | grep -q 01); then
change_user="yes"
fi
if $(echo $opts | grep -q 02); then
sep_home="yes"
fi
if $(echo $opts | grep -q 03); then
sep_boot="yes"
fi
if $(echo $opts | grep -q 04); then
encrypt_os="yes"
fi
if $(echo $opts | grep -q 05); then
encrypt_home="yes"
fi
if $(echo $opts | grep -q 06); then
write_random="yes"
fi
if $(echo $opts | grep -q 07); then
write_zero="yes"
fi
if $(echo $opts | grep -q 08); then
bootloader="no"
else
bootloader="yes"
fi
if $(echo $opts | grep -q 09); then
if [[ $encrypt_os = "yes" ]] || [[ $encrypt_home = "yes" ]]; then
no_format=""
else
no_format="yes"
fi
fi
if $(echo $opts | grep -q 10); then
if [[ $encrypt_os = "yes" ]] || [[ $encrypt_home = "yes" ]]; then
uuid_message="--> UUIDs en fstab no funcionan con sistemas cifrados y
no seran usados. Edite el fstab manualmente despues de la instalacion."
else
use_uuid="yes"
fi
fi
if $(echo $opts |grep -q 11); then
if [[ $encrypt_os = "yes" ]] || [[ $encrypt_home = "yes" ]]; then
disklabel_message="--> Disk labels en fstab no funcionan con sistemas cifrados y
no seran usados. Edite el fstab manualmente despues de la instalacion."
elif [[ $use_uuid = "yes" ]]; then
disklabel_message="--> Este script no puede hacer ambas UUIDs y disk labels para fstab.
UUIDs sera usado, y usted puede agregar las etiquetas de disk manualmente, despues de la instalacion."
else
use_labels="yes"
fi
fi
if $(echo $opts | grep -q 12); then
change_hostname="yes"
fi
if [[ $encrypt_os = "yes" ]] || [[ $encrypt_home = "yes" ]]; then
if ! [[ -f /sbin/cryptsetup ]]; then
$errores --button="Proceder sin particiones cifradas":0 --button="Salir":1 --text="Usted necesitas instalar cryptsetup y ejecutar 'sudo modprobe dm-mod' antes de usar el cifrado."
if [[ $? = 0 ]]; then
encrypt_os="no"
encrypt_home="no"
else
exit 0
fi
fi
fi
if [[ $install = "expert" ]]; then
yad $miicono --center --title="Particionamiento" --text-align=fill --borders=6 --button="Ejecutar GParted":0 --button="Ejecutar Cfdisk":1 --button="Saltar este paso":2 --button="Salir":3 --text="Seleccione el metodo que utilizara para crear las particiones. Si usted ya tiene las particiones, puede saltar este paso.
Ejecutar particionador ahora?"
ans="$?"
case $ans in
0) gparted ;;
1) xterm -fa monaco -fs 12 -geometry 90x20+0+0 -hold -e cfdisk ;;
2) ;;
3) exit 0 ;;
esac
else
preinstall
fi
swapon -p 25 -f $(fdisk -l | grep "swap" | awk '{print $1}')
if [[ $sep_boot = "no" ]]; then
if [[ $encrypt_os = "yes" ]]; then
$errores --button="Proceder sin particiones cifradas":0 --button="Salir":1 --text="Usted debe tener una particion /boot sin cifrar si usted quiere bootear un sistema operativo cifrado. Puede proceder sin cifrar la raiz del sistema o puede salir y comenzar de nuevo."
if [[ $? = 0 ]]; then
encrypt_os="no"
else
exit 0
fi
fi
fi
choose_grub () {
yad $miicono --center --text-align=fill --borders=6 --title="Instalacion de GRUB" --text="Seleccione la ubicacion para instalar GRUB. La opcion comun es colocarlo en el MBR del primer disco (/dev/sda).
Seleccione MBR para instalar al MBR de cualquier disco.
Seleccione Particion para instalar a una particion.
Seleccione No Bootloader para proceder sin un bootloader.
Seleccione Exit para salir de este programa.
" --button="MBR":0 --button="Partition":1 --button="Sin Bootloader":2 --button="Salir":3
answer="$?"
if [[ $answer = 0 ]]; then
grub_dev=$(find /dev -mindepth 1 -maxdepth 1 -name "*[sh]d[a-z]" | sort | awk '{print "\n" $0 }' | yad $miicono --center --list --separator="" --title="Bootloader" --text="Selecione la ubicacion para instalar el bootloader.
" --column ' ' --column 'Disco Duro' --height=200)
if [[ -z $grub_dev ]]; then
$errores --button="Si, Estoy seguro.":0 --button="Ir atras":1 --text="Ningun bootloader sera instalado. Esta seguro de continuar?"
if [[ $? = 1 ]]; then
choose_grub
fi
elif ! [[ -b $grub_dev ]]; then
$errores --button="Salir":0 --button="Ir atras":1 --text="Algo esta mal. $grub_dev no es un dispositivo de bloques."
if [[ $? = 0 ]]; then
exit 0
else
choose_grub
fi
fi
elif [[ $answer = 1 ]]; then
grub_partition=$(find /dev -mindepth 1 -maxdepth 1 -name "*[sh]d[a-z][1-9]*" | sort | awk '{print "\n" $0 }' | yad $miicono --center --list --title="Bootloader" --text="Seleccione una particion para el bootloader (GRUB)." --separator="" --column ' ' --column 'Particiones' --height=380 --width=150)
if [[ -z $grub_partition ]]; then
$errores --button="Si, Estoy seguro.":0 --button="Ir atras":1 --text="Ningun bootloader sera instalado. Esta seguro de continuar?"
if [[ $? = 1 ]]; then
choose_grub
fi
elif ! [[ -b $grub_partition ]]; then
$errores --button="Salir":0 --button="Ir atras":1 --text="Algo esta mal. $grub_partition no es un dispositivo de bloques."
if [[ $? = 0 ]]; then
exit 0
else
choose_grub
fi
fi
elif [[ $answer = 2 ]]; then
yad $miicono --center --text-align=fill --borders=6 --title="Bootloader" --text=" Procediendo sin un bootloader.
Necesitara de un procedimiento especial para bootear su sistema." --button="Proceder":0 --button="Salir":1
if [[ $? = 1 ]]; then
exit 0
fi
elif [[ $answer = 3 ]]; then
exit 0
fi
}
if [[ $install = "expert" ]]; then
if [[ $bootloader = "yes" ]]; then
choose_grub
fi
fi
if ! [[ -f "$parti" ]]; then
blkid -c /dev/null | awk '{print $1 $2}' | yad $miicono --timeout 20 --text-info --title="Lista de particiones" --text="Lista de particiones (para referencia) Usted puede necesitar esto mas adelante." --width 820 --height 400 --button="Cerrar":0 & sleep 2
fi
if [[ -f "$parti" ]]; then
boot_dev=$(blkid -c /dev/null | grep -i "boot" | awk '{print $1}' | sed 's/.$//g')
else
if [[ $sep_boot = "yes" ]]; then
choose_boot
fi
fi
choose_root () {
install_dev1=$(find /dev -mindepth 1 -maxdepth 1 -name "*[sh]d[a-z][1-9]*" | sort)
install_dev2=$(find /dev/mapper -mindepth 1 -maxdepth 1 | grep -v control)
install_dev3="$install_dev1 $(echo -e '\n'$install_dev2)"
install_dev4=$(echo "$install_dev3" | yad --center --no-click --list --title="Particion raiz" --text="Seleccione una particion para instalar el sistema operativo." --column 'Particiones' --height 380 --width 150 --button="Aceptar":0)
install_dev=$(echo $install_dev4 | sed 's/.$//g')
if [[ -z $install_dev ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text="No selecciono nada. Debe escoger una particion para la instalacion. Que quiere hacer?"
if [[ $? = 0 ]]; then
choose_root
else
exit 0
fi
# elif ! [[ -b $install_dev ]]; then
# $errores --button="Ir atras":0 --button="Salir":1 --text=" Algo esta mal. Tal vez usted marco mas de una casilla. Usted dijo que quiere instalar el sistema en: $install_dev"
# if [[ $? = 0 ]]; then
# choose_root
# else
# exit 0
# fi
elif [[ $install_dev = $boot_dev ]]; then
$errores --text="Selecciono la misma particion para la raiz y para /boot. Intente de nuevo." --button="Aceptar":0
choose_root
fi
}
if [[ -f "$parti" ]]; then
install_dev=$(blkid -c /dev/null | grep "root" | awk '{print $1}' | sed 's/.$//g')
else
choose_root
fi
migrub=$(echo $boot_dev | sed 's/.$//g')
if [[ $install = "simple" ]]; then
grub_dev=$(echo $migrub)
fi
choose_fs_os () {
fs_type_os=$(yad --center --list --title="Sistema de archivos para la raiz" --text="Que sistema de archivos le gustaria para $install_dev?" \
--separator="" --column "Formato" --height=200 --button="Aceptar":0 \
"xfs" \
"btrfs" \
"ext4")
if [[ -z $fs_type_os ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text="Debe escoger un sistema de archivos para
el sistema operativo"
if [[ $? = 0 ]]; then
choose_fs_os
else
exit 0
fi
fi
}
if [[ $install = "expert" ]]; then
if [[ $no_format = "yes" ]]; then
fs_type_os=$(blkid -s TYPE $install_dev | awk -F"\"" '{ print $2 }')
else
if [[ $(cat /sys/block/$migrub/queue/rotational) = "0" ]]; then
$advertencia --text="Se ha detectado un disco SSD, se recomienda usar ext4 como sistema de archivos"
fi
choose_fs_os
fi
else
if [[ $grubversion = "grub-pc" ]]; then
fs_type_os="ext4"
else
fs_type_os="ext4"
fi
fi
choose_home () {
home_dev=$(find /dev -mindepth 1 -maxdepth 1 -name "*[sh]d[a-z][1-9]*" | sort | awk '{print "\n" $0 }' | yad $miicono --center --list --title="Particion para /home" --text="Seleccione una particion para /home" --separator="" --column ' ' --column 'Particiones' --height=400 --width=150 --button="Aceptar":0)
if [[ -z $home_dev ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text="No selecciono nada. Debe escoger una particion. Que quiere hacer?"
if [[ $? = 0 ]]; then
choose_home
else
exit 0
fi
fi
if [[ -n $home_dev ]]; then
if ! [[ -b $home_dev ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text=" Algo esta mal.
$home_dev no es un dispositivo de bloques. "
if [[ $? = 0 ]]; then
choose_home
else
exit 0
fi
elif
[[ $install_dev = $home_dev ]]; then
$errores --text="Selecciono la misma particion para la raiz y para /home. Si usted no quiere una particion separada para /home, haga clic en ACEPTAR sin seleccionar una." --button="Ir atras":0 --button="Salir":1
if [[ $? = 0 ]]; then
choose_home
else
exit 0
fi
elif
[[ $boot_dev = $home_dev ]]; then
$errores --text="Selecciono la misma particion para /home y para /boot. Intente de nuevo." --button="Ir atras":0 --button="Salir":1
if [[ $? = 0 ]]; then
choose_home
else
exit 0
fi
fi
fi
}
if [[ $sep_home = "yes" ]]; then
choose_home
fi
choose_fs_home () {
if [[ -n $home_dev ]]; then
fs_type_home=$(yad $miicono --center --list --title="Sistema de archivos para /home" --text="Que sistema de archivos le gustaria para $home_dev?" --separator="" --column "Formato" --height=200 --button="Aceptar":0 \
"xfs" \
"btrfs" \
"ext4")
fi
if [[ -z $fs_type_home ]]; then
$errores --button="Ir atras":0 --button="Salir":1 --text="Debe escoger un sistema de archivos para /home"
if [[ $? = 0 ]]; then
choose_fs_home
else
exit 0
fi
fi
}
if [[ -n $home_dev ]]; then
if [[ $no_format = "yes" ]]; then
fs_type_home=$(blkid -s TYPE "$home_dev" | awk -F"\"" '{ print $2 }')
else
choose_fs_home
fi
fi
if [[ $change_hostname = "yes" ]]; then
select_hostname
else
new_hostname="$HOSTNAME"
fi
if [[ $change_user = "yes" ]]; then
user_message="--> El nombre de usuario se cambiara."
fi
if [[ -n $grub_dev ]]; then
grub_dev_message="--> El bootloader se instalara en $grub_dev"
elif [[ -n $grub_partition ]]; then
grub_dev_message="--> El bootloader se instalara en $grub_partition"
else
grub_dev_message="--> El bootloader no sera instalado."
fi
if [[ $encrypt_os = yes ]]; then
os_enc_message=", y sera cifrado."
fi
if [[ -z $home_dev ]]; then
home_dev_message="--> /home no estara en una particion separada."
elif
[[ $no_format = "yes" ]]; then
home_dev_message="--> /home se instalara en $home_dev"
else
home_dev_message="--> /home se instalara en $home_dev y formateado como $fs_type_home"
fi
if [[ -n $home_dev ]] && [[ $encrypt_home = yes ]]; then
home_enc_message=", y sera cifrado."
fi
if [[ -n $boot_dev ]]; then
if [[ $no_format != "yes" ]]; then
boot_dev_message="--> /boot se instalara en $boot_dev y formateado como $fs_type_boot."
else
boot_dev_message="--> /boot se instalara en $boot_dev"
fi
fi
if [[ $encrypt_os = yes ]] || [[ $encrypt_home = yes ]]; then
proceed_message="*** IF YOU PROCEED, YOU WILL NEED TO RESPOND TO SOME QUESTIONS IN THE TERMINAL. Be prepared to create
passphrases for any encrypted partitions (several times each.) When you see the progress bar come up, you can take a break."
fi
if [[ $no_format = "yes" ]]; then
install_dev_message="--> El sistema operativo se instalara en $install_dev, y lo formateara (o lo hizo) manualmente."
else
install_dev_message="--> El sistema operativo se instalara en $install_dev y formateado como $fs_type_os$os_enc_message"
fi
yad $miicono --center --text-align=fill --borders=6 --info --title="Sumario" --button="Proceder con la instalacion.":0 --button="Salir":1 --text="Por favor CIERRE cualquier otra aplicacion en ejecucion.
Aqui hay un sumario de lo que se hara. ESTA ES SU ULTIMA OPORTUNIDAD PARA SALIR antes de proceder con la instalacion.
$grub_dev_message
$install_dev_message$os_enc_message
$home_dev_message$home_enc_message
$boot_dev_message
$user_message
$desktop_message
$console_message
$uuid_message
$disklabel_message
$uuid_message
Hostname: $new_hostname
$proceed_message"
if [[ $? != 0 ]]; then
exit 0
fi
cleanup
if [[ $write_random = "yes" ]]; then
if [[ $encrypt_os = "yes" ]]; then
exec 2>&1
dd if=/dev/urandom of=$install_dev
exec 2>>"$error_log"
fi
fi
if [[ $write_random = "yes" ]]; then
if [[ $encrypt_home = "yes" ]]; then
exec 2>&1
dd if=/dev/urandom of=$home_dev
exec 2>>"$error_log"
fi
fi
if [[ $write_zero = "yes" ]]; then
dd if=/dev/zero of="$install_dev"
if [[ $sep_home = "yes" ]]; then
exec 2>&1
dd if=/dev/zero of=$home_dev
exec 2>>"$error_log"
fi
if [[ $sep_boot = "yes" ]]; then
exec 2>&1
dd if=/dev/zero of=$boot_dev
exec 2>>"$error_log"
fi
fi
mkdir /target ; check_exit
if [[ $encrypt_os = yes ]]; then
cryptsetup luksFormat $install_dev ; check_exit
cryptsetup luksOpen $install_dev root_fs ; check_exit
install_part="/dev/mapper/root_fs"
else
install_part="$install_dev"
fi
if [[ $no_format != "yes" ]]; then
if [[ -f "$parti" ]]; then
echo "1" > /dev/null
else
if [[ $fs_type_os = ext4 ]]; then
mkfs.ext4 -F $install_part ; check_exit
tune2fs -r 10000 $install_part ; check_exit
else
mkfs.$fs_type_os -f $install_part ; check_exit
fi
fi
fi
mount $install_part /target ; check_exit
if [[ -n $home_dev ]]; then
mkdir /target_home ; check_exit
if [[ $encrypt_home = yes ]]; then