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