Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Your system seems to be missing critical device files in /dev ! Although you may be running udev or devfs, the root partition is missing these required files ! To rectify this situation, please do the following: mkdir /mnt/fixit mount --bind / /mnt/fixit cp -a /dev/* /mnt/fixit/dev umount /mnt/fixit rmdir /mnt/fixit You may refer to these instructions at /etc/issue. If you previously had an issue file, it has been backed up at /etc/issues.devfix. Once you've fixed your system, you will have to restore your old issue file in order to get rid of this warning. |
Zitat
1.
Seit dem ich mein Gentoo aus meinem stage 4 Installiert hab spinnt udev rum und erstellt /dev nicht mehr richtig (offenbar)
Zitat
allerdings mittels kdm aus der Konsole gestartet werden, funktioniert ist aber ebenso unschön wie der Fehler oben, hat jemand eine Idee was da schief gelaufen sein könnte?
Zitat
naja wenn schon dransteht, wie man es fixt, dann mach' es einfach !
btw: du hast beim erstellen deines systems (beim backup anlegen genauer) zu viele geräte mitkopiert. es gehören entweder nur null und console rein, oder garnix.
Zitat
installiere dir kdm, wirf xdm weg. und irgendwo in der conf.d/rc kann man ihm sagen, dass kde gestartet werden soll. dann probierst du zuerst als user das kommando startx . wenn das gut geht, probiertst du als root /etc/init.d/xdm restart
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 |
einloggen (als root) mkdir /mnt/fixit mount --bind / /mnt/fixit cp -a /dev/* /mnt/fixit/dev umount /mnt/fixit rmdir /mnt/fixit mv /etc/issue.devfix /etc/issue reboot |
Zitat
Original von akirahinoshiro
Hab ich xdm aus der world file entfernt und emerge depclean und als es immer noch nicht besser war auch ein emerge xdm --unmerge. Xdm ist auch nicht mehr installiert. /etc/init.d/xdm restart funktioniert, es sagt mir kdm wird eingerichtet aber es passiert nichts. Wenn ich dann kdm als root starte startet Gentoo Kdm, dann kann ich auch per /etc/init.d/xdm restart kdm neustarten.
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Carminox« (06.09.2006, 19:46)
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# /etc/rc.conf: Global startup script configuration settings # UNICODE specifies whether you want to have UNICODE support in the console. # If you set to yes, please make sure to set a UNICODE aware CONSOLEFONT and # KEYMAP in the /etc/conf.d/consolefont and /etc/conf.d/keymaps config files. UNICODE="no" # Set EDITOR to your preferred editor. # You may use something other than what is listed here. EDITOR="/bin/nano" #EDITOR="/usr/bin/vim" #EDITOR="/usr/bin/emacs" # What display manager do you use ? [ xdm | gdm | kdm | entrance ] DISPLAYMANAGER="kdm" # XSESSION is a new variable to control what window manager to start # default with X if run with xdm, startx or xinit. The default behavior # is to look in /etc/X11/Sessions/ and run the script in matching the # value that XSESSION is set to. The support scripts are smart enough to # look in all bin directories if it cant find a match in /etc/X11/Sessions/, # so setting it to "enlightenment" can also work. This is basically used # as a way for the system admin to configure a default system wide WM, # allthough it will work if the user export XSESSION in his .bash_profile, etc. # # NOTE: 1) this behaviour is overridden when a ~/.xinitrc exists, and startx # is called. # 2) even if ~/.xsession exists, if XSESSION can be resolved, it will # be executed rather than ~/.xsession, else KDM breaks ... # # Defaults depending on what you install currently include: # # Gnome - will start gnome-session # kde-<version> - will start startkde (ex: kde-3.0.2) # Xsession - will start a terminal and a few other nice apps XSESSION="icewm" |