Linux/Tipps: Unterschied zwischen den Versionen
< Linux
Thomas (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Thomas (Diskussion | Beiträge) |
||
Zeile 26: | Zeile 26: | ||
Editieren: | Editieren: | ||
/etc/udev/rules.d/30-net_persistent_names.rules | /etc/udev/rules.d/30-net_persistent_names.rules | ||
=====WLAN verbindet sich nicht nach dem Booten===== | |||
Bei mir wird die ESSID nicht automatisch gesetzt, obwohl alles konfiguriert ist. Also setze ich die ESSID in '''/etc/init.d/boot.local''': | |||
iwconfig eth1 essid <id> | |||
====Weitere Tipps==== | ====Weitere Tipps==== |
Version vom 27. Dezember 2006, 16:27 Uhr
Console Screenblanker ausschalten
setterm -blank 0 setterm -powersave off
Boot-CD für BIOS-Flash
First or all, download this FreeDOS fdboot.img.bz2 compressed boot floppy image. Assuming you have your flash utility FLASH.EXE and BIOS image BIOS.IMG in your current directory, just execute these commands :
bunzip2 -c fdboot.img.bz2 > fdboot.img mount -o loop -t msdos fdboot.img /mnt/floppy cp -a FLASH.EXE BIOS.IMG /mnt/floppy/ umount /mnt/floppy mkdir -p cdrom/boot mv fdboot.img cdrom/boot/boot.img mkisofs -r -b boot/boot.img -c boot/boot.catalog -o bootcd.iso cdrom/ cdrecord blank=fast cdrecord -dao -eject -v bootcd.iso
Quelle: http://freshrpms.net/docs/bios-flash/
Suse 10.2
ASUS Notebook, Suspend-to-RAM
/etc/pm/config:
S2RAM_OPTS="-f -a 1"
Reihenfolge der Netzwerkgeräte festlegen
Editieren:
/etc/udev/rules.d/30-net_persistent_names.rules
WLAN verbindet sich nicht nach dem Booten
Bei mir wird die ESSID nicht automatisch gesetzt, obwohl alles konfiguriert ist. Also setze ich die ESSID in /etc/init.d/boot.local:
iwconfig eth1 essid <id>