In anderem Runlevel starten In der /boot/grub/menu.lst kann man leicht bestimmen, in welchem Runlevel gestartet werden soll. In der Zeile # altoptions=(recovery mode) single kann man am Ende einfach das jeweilige Runlevel als Zahl einfgen [3], z.B. # altoptions=(recovery mode) single 3 Wenn man dann den Booteintrag w�lt, wird nicht das Standard Runlevel 2 gestartet, sondern das Runlevel 3.Es werden also nicht wie blich die Skripte aus /etc/rc2.d/ ausgefhrt, sondern aus dem Verzeichnis /etc/rc3.d/. Das gleiche geht geht auch mit den Runleveln 4 und 5. Sind die �derungen erfolgreich abgespeichert, so muss in einem Terminal [4] anschlie�nd der Befehl I found how to do it, I modified /etc/event.d/rc-default. I needed a runlevel 3 to boot into freevo (default ubuntu is 2, single is 1) and didn't need al the other services, I added an extra kernel line in /boot/grub/menu.list with at the end "freevo" and then midified rc-default from : Code: ............ script runlevel --reboot || true if grep -q -w -- "-s\|single\|S" /proc/cmdline; then telinit S elif [ -r /etc/inittab ]; then RL="$(sed -n -e "/^id:[0-9]*:initdefault:/{s/^id://;s/:.*//;p}" /etc/inittab || true)" ............ to : Code: ............ script runlevel --reboot || true if grep -q -w -- "-s\|single\|S" /proc/cmdline; then telinit S elif grep -q -w -- "-s\|freevo\|S" /proc/cmdline; then telinit 3 elif [ -r /etc/inittab ]; then RL="$(sed -n -e "/^id:[0-9]*:initdefault:/{s/^id://;s/:.*//;p}" /etc/inittab || true)" ............