Linux Chroot-Umgebung aufbauen
Chroot-Umgebungen Copy & Paste fertig, für unterschiedliche Festplatten-Konstellationen.
Kein Raid Version 1
1 2 3 4 5 6 | mount /dev/sda3 /mnt mount /dev/sda1 /mnt/boot mount -t proc none /mnt/proc mount -o bind /dev /mnt/dev mount -o bind /sys /mnt/sys chroot /mnt |
Kein Raid Version 2
1 2 3 4 5 6 | mount /dev/sda4 /mnt mount /dev/sda2 /mnt/boot mount -t proc none /mnt/proc mount -o bind /dev /mnt/dev mount -o bind /sys /mnt/sys chroot /mnt |
Raid 1 Version 1
1 2 3 4 5 6 7 | mdadm -As mount /dev/md1 /mnt mount /dev/md0 /mnt/boot mount -t proc none /mnt/proc mount -o bind /dev /mnt/dev mount -o bind /sys /mnt/sys chroot /mnt |
Raid 1 Version 2
1 2 3 4 5 6 7 | mdadm -As mount /dev/md2 /mnt mount /dev/md0 /mnt/boot mount -t proc none /mnt/proc mount -o bind /dev /mnt/dev mount -o bind /sys /mnt/sys chroot /mnt |
Weitere könnt ihr gerne als Kommentar hinzufügen.
0