Linux/Tipps/Gentoo/Installation: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Linux/Tipps/Gentoo/Installation (Quelltext anzeigen)
Version vom 20. Januar 2008, 15:33 Uhr
, 20. Januar 2008→Bluetooth
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
Zeile 514: | Zeile 514: | ||
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE | iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE | ||
dund --listen | dund --listen | ||
==chroot== | |||
Mit '''chroot''' kann man die Shell in eine andere Installation (z.B. auf einer anderen Platte) bringen und somit simulieren, dass man mit der anderen Installation gebootet hätte. | |||
Optional Devices und tmp der aktuellen Installation binden: | |||
mount --bind /dev/ <anderes Root-Verzeichnis>/dev/ | |||
mount --bind /tmp/ <anderes Root-Verzeichnis>/tmp/ | |||
Dann: | |||
chroot <anderes Root-Verzeichnis> /bin/bash | |||
Optional alle Env-Variablen der aktuellen Installation löschen: | |||
unset `env | cut -d= -f1` | |||
Dann: | |||
/usr/sbin/env-update | |||
source /etc/profile | |||
Optional (wenn vorher alle Env-Variablen gelöscht wurden): | |||
export HOME=/root | |||
export TERM=xterm | |||
Optional proc, sysfs und usbfs mounten: | |||
mount -t proc proc /proc | |||
mount -t sysfs sys /sys | |||
mount -t usbfs usbfs /proc/bus/usb | |||
==Notebook mit Centrino-Chipsatz== | ==Notebook mit Centrino-Chipsatz== |