]> git.deb.at Git - debienna.git/blob - Workshop/overkill/dokumentation/Tag1/index.mdwn
ADD Sunday closed statement to shops/drugstores
[debienna.git] / Workshop / overkill / dokumentation / Tag1 / index.mdwn
1
2 [[!toc ]]
3
4 [[Workshop]]
5 # Tag 1. Basissytem
6
7
8 ## raid device generation
9
10 **Fdisk-Partitionierung **
11
12 Erstellen der Partitionen 1-3 für SWAP, ROOT und Datenpartition
13
14 Nicht vergessen den Partition Type auf 'Linux Raid Auto' zu setzen (fdisk -> type [t] -> Typ 'fd')
15
16 **Erstellen der Device-Nodes für Raid-Devices**
17
18 mknod /dev/md1 b 9 1
19
20 mknod /dev/md2 b 9 2
21
22 mknod /dev/md3 b 9 3
23
24 **Zusammenstellen der Devices **
25
26 mdadm --create /dev/md1 --level=1 --raid-devices=2 /dev/hda1 /dev/hda1
27
28 (und für md2 und md3 ditto - substitute corresponding)
29
30 **Erzeugen der Dateisysteme **
31
32 mkswap /dev/md1 mkfs.ext3 /dev/md2
33
34 **Erzeugen eines logischen Datenträgers (LVM in der Datenpartition /dev/md3) **
35
36 [TODO]
37
38
39 ## install history
40
41 * 1  aptitude install grub
42 * 2  aptitude install debian-archive-keyring
43 * 3  apt-key update
44 * 4  aptitude update
45 * 5  aptitude install locales
46 * 9  dpkg-reconfigure -plow locales
47 * 11  dpkg-reconfigure -plow debconf
48 * 13  apt-cache search linux
49 * 14  aptitude install grep less
50 * 15  apt-cache search linux | grep ^linux
51 * 16  . /etc/bash_completion
52 * 17  aptitude install linux-image-686
53 * 18  aptitude install kernel-package
54 * 19  vi /etc/kernel-img.conf
55 * 20  man kernel-img.conf
56 * 21  vi /etc/kernel-img.conf
57 * 22  aptitude install linux-image-686
58 * 23  update-grub
59 * 24  grub-install
60 * 25  grub-install /dev/hda