]> git.donarmstrong.com Git - neurodebian.git/blob - vm/d-i/wheezy/initial_setup
bdddf3e9b4f2e3fdeab3b6f51ae8416800c514dc
[neurodebian.git] / vm / d-i / wheezy / initial_setup
1 #!/bin/bash
2
3 # play safe
4 set -e
5 set -u
6
7 # Standard Debian install
8
9 # prepare on hydra and use debproxy for speed
10
11 # have dedicated hard-drives for swap and home
12
13 # expert install
14
15 # hostname: neurodebian
16 # domain: ''
17
18 # Needs to be assured since it got reset to debian
19 hostname neurodebian  # this is not a permanent change
20 echo "neurodebian" >| /etc/hostname  # make it permanent
21 sed -i -e 's/^127\.0\.1\.1.*/127.0.1.1\tneurodebian/g' /etc/hosts
22
23 # all file in one partition
24
25 # root: not there
26 # user: brain
27 # pwd: neurodebian
28
29
30 # Do a minimal install
31 # --------------------
32
33 # All files in one partition/
34 # just base system, run selection, but no tasks (not even 'Standard system')
35
36 # set root password to 'neurodebian' too
37 #echo "Set root passwd:"
38 #passwd root
39
40 apt-get install --no-install-recommends -y etckeeper
41
42 # setup etckeeper
43 git config --global user.name NeuroDebian
44 git config --global user.email nd@localhost
45
46 # install new stuff
47 # -----------------
48
49 # Add sources.list for backports and neurodebian
50 wget -O /etc/apt/sources.list.d/neuro.debian.net.list http://neuro.debian.net/lists/wheezy.us-nh
51
52 ## No backports yet
53 ## echo "deb http://backports.debian.org/debian-backports wheezy-backports main contrib non-free" > /etc/apt/sources.list.d/backports.debian.org.list
54 cat << EOT > /etc/apt/preferences.d/backports.debian.org.pref
55 Package: *
56 Pin: release a=wheezy-backports
57 Pin-Priority: 200
58 EOT
59
60 apt-get update -y
61 # Backports' Release files signed with both ftpmaster and old backports keys
62 # That causes APT to spit out a warning, but to not confuse users, lets simply
63 # obtain that key if possible
64 gpg --keyserver hkp://subkeys.pgp.net --recv-keys 16BA136C && \
65         gpg --export 16BA136C | apt-key add - || :
66
67 apt-get install -y --allow-unauthenticated neurodebian-keyring
68 apt-get update -y
69
70 # to cheat the VM check
71 touch /dev/vboxguest
72
73 # Assure that corresponding linux headers are installed since otherwise they
74 # might not be.  There is also a dichotomy between target 686 and installer
75 # using 486 build of the kernel.  It requires manual build/installation
76 # of guest additions for 686 at this point. Hence all the ugly logic below
77 cunamer=`uname -r`
78 cdarch=${cunamer##*-}
79 # We carry 686 only
80 [ $cdarch = '486' ] && darch='686' || darch=$cdarch
81 apt-get install -y linux-headers-2.6-$cdarch
82
83 ## # Forcefully install guest additions from backports so we are
84 ## # compatible with VirtualBox 4.x series
85 ## apt-get install -y -t wheezy-backports virtualbox-ose-guest-dkms \
86 ##      virtualbox-ose-guest-utils  virtualbox-ose-guest-x11 \
87 ##      >| /var/log/initial_setup-dkms.log 2>&1
88
89 # to get all the rest stuff in recommends
90 apt-get install -y dkms neurodebian-guest-additions
91
92 if [ "$darch" != "$cdarch" ] ; then
93     # Because DKMS builds for currently running kernel, which during
94     # installation might be a more generic 486, lets force building for 686
95         # and also install necessary headers (will be purged later on anyways)
96         apt-get install -y linux-headers-2.6-$darch
97
98         unamer=${cunamer//$cdarch/$darch}
99         # First collect information about installed vb additions
100         vbg=( `dkms status | grep virtualbox | head -n 1 | tr ',' ' '` )
101         echo "I: forcing build and install of guest additions for 686"
102         dkms build -m ${vbg[0]} -v ${vbg[1]} -a i686 -k $unamer \
103                 >| /var/log/initial_setup-dkms-686-build.log 2>&1
104         dkms install -m ${vbg[0]} -v ${vbg[1]} -a i686 -k $unamer \
105                 >| /var/log/initial_setup-dkms-686-install.log 2>&1
106 fi
107
108 # Add brain use into vboxsf group so he gets access to shared folders
109 # by default
110 adduser brain vboxsf
111
112 # assure at the end that we got right modules build in the right location
113 find /lib/modules/*$darch -iname vboxsf.ko | grep -q .
114
115 apt-get install --no-install-recommends -y \
116  gnome-core mc evince bash-completion ntpdate file-roller \
117  gnome-themes eog vim reportbug \
118  software-center gdebi gedit-plugins gnome-media synaptic menu less libxp6
119
120 # Clean-up installed development files which got pulled in for
121 # VM guest additions (to build kernel modules via DKMS)
122 apt-get purge -y libc6-dev
123 dpkg -l | awk '/^ii.*[ \t]linux-headers/{print $2;}' | xargs -r apt-get purge -y
124
125 # Gnome optional pulled by gnome-core:
126 apt-get purge -y gnome-core evolution-common evolution libevolution
127
128 # And utter cleanup
129 apt-get -y autoremove
130
131 # intermediate cleanup to prevent virtual harddrive from fragmenting too much
132 find /var/cache/apt/archives/ -name '*.deb' -delete
133
134 # cleanup unwanted stuff
135 # video drivers (all but vesa)
136 apt-get purge -y --force-yes $(apt-cache search --names-only --installed xserver-xorg-video | grep xserver-xorg-video | cut -d ' ' -f 1,1) xserver-xorg-video-vesa+
137 apt-get purge -y brasero
138
139 # and whatever is obsolete
140 apt-get autoremove --purge -y
141
142 # custom config
143 # use NeuroDebian website as default homepage
144 sed -i -e 's,http://www.debian.org,http://neuro.debian.net,g' /etc/chromium*/master_preferences
145
146 # reduce grub timeout to speed up boot of VM
147 sed -i -e 's/GRUB_TIMEOUT=5/GRUB_TIMEOUT=1/g' /etc/default/grub
148 update-grub
149
150 # finally configure geomirror for APT and disable deb-src lists
151 sed -i -e "s/10.0.0.1:9999/$(dpkg --print-architecture)-geomirror.debian.net/" \
152     -e "s/^deb-src/#deb-src/" /etc/apt/sources.list
153
154 etckeeper commit "Initial VM setup done"
155
156 # Create a link to automatically mounted Shared folder
157 # Created by the Welcome Wizard
158 #sudo -u brain ln -s /mnt/host /home/brain/