[58828de] | 1 | #!/bin/bash |
---|
| 2 | ################################################################ |
---|
| 3 | ##################### SOFTWARE ##################### |
---|
| 4 | ################################################################ |
---|
| 5 | export LANGUAGE=C |
---|
| 6 | export LC_ALL=C |
---|
| 7 | export LANG=C |
---|
| 8 | |
---|
| 9 | |
---|
| 10 | dpkg-divert --local --rename --add /sbin/initctl |
---|
| 11 | ln -s /bin/true /sbin/initctl |
---|
| 12 | |
---|
| 13 | apt-get clean |
---|
| 14 | apt-get -y update |
---|
| 15 | |
---|
| 16 | |
---|
| 17 | # software system |
---|
| 18 | apt-get -y --force-yes install linux-image-${OSRELEASE} linux-headers-${OSRELEASE} linux-image-$RELEASE wget dialog man-db htop fbset gdebi-core busybox-static |
---|
| 19 | |
---|
| 20 | apt-get -y --force-yes install console-data locales |
---|
| 21 | |
---|
| 22 | # sofware networking |
---|
| 23 | apt-get -y --force-yes install netpipes nfs-common sshfs smbfs smbclient davfs2 unionfs-fuse open-iscsi nmap tcpdump arping dnsutils |
---|
| 24 | |
---|
| 25 | apt-get clean |
---|
| 26 | # software services |
---|
[c175a93] | 27 | apt-get -y --force-yes install openssh-server bittornado trickle iptraf screen schroot grub lighttpd |
---|
[58828de] | 28 | |
---|
| 29 | # software disk and filesystem |
---|
| 30 | apt-get -y --force-yes install drbl-ntfsprogs ntfsprogs parted ntfs-3g dosfstools |
---|
| 31 | apt-get -y --force-yes install dmraid dmsetup lvm2 e2fsprogs jfsutils reiserfsprogs xfsprogs unionfs-fuse mhddfs squashfs-tools |
---|
| 32 | apt-get -y --force-yes install btrfs-tools hfsplus hfsprogs hfsutils nilfs-tools reiser4progs ufsutils |
---|
| 33 | |
---|
| 34 | # software cloning |
---|
| 35 | apt-get -y --force-yes install drbl-partimage fsarchiver pv kexec-tools |
---|
| 36 | apt-get -y --force-yes install mbuffer |
---|
| 37 | |
---|
[c175a93] | 38 | #monitor |
---|
[3687b6b] | 39 | apt-get install bwbar bmon iftop ifstat dstat hdparm sdparm blktool testdisk ssmping mii-diag |
---|
[58828de] | 40 | |
---|
| 41 | ## software postconf |
---|
[7ef8186] | 42 | apt-get -y --force-yes install drbl-chntpw chntpw ethtool lshw gawk subversion |
---|
[58828de] | 43 | |
---|
| 44 | # software compressor |
---|
| 45 | apt-get -y --force-yes install lzma zip unzip gzip lzop drbl-lzop pigz pbzip2 lbzip2 rzip p7zip-full unzip |
---|
| 46 | |
---|
[c175a93] | 47 | #plymouth |
---|
| 48 | apt-get install plymouth plymouth-theme-script |
---|
| 49 | |
---|
| 50 | #compatibilidad og2 |
---|
| 51 | apt-get install python-openssl python |
---|
| 52 | |
---|
| 53 | |
---|
| 54 | |
---|
[58828de] | 55 | apt-get -y --force-yes remove busybox |
---|
| 56 | apt-get -y --force-yes install busybox-static bash-static |
---|
| 57 | apt-get clean |
---|
| 58 | #apt-get -y --force-yes xorg-dev xorg lxde roxterm |
---|
| 59 | # |
---|
| 60 | #################################################################### |
---|
| 61 | ###################### Reconfigurando paquetes ###################### |
---|
| 62 | ################################################################### |
---|
| 63 | |
---|
| 64 | |
---|
| 65 | #dpkg-reconfigure console-data |
---|
| 66 | #dpkg-reconfigure console-setup |
---|
| 67 | #dpkg-reconfigure locales |
---|
| 68 | apt-get clean |
---|
| 69 | ##TODO################# Borrar algunos binarios del mkinitramfs |
---|
| 70 | |
---|
| 71 | |
---|