|
|
(15 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) |
Zeile 1: |
Zeile 1: |
| ===Linux allgemein===
| | [[/Allgemein|Linux allgemein]] |
| ====Windows-Freigabe mounten per Shell (Samba)====
| |
| Paket "samba-client" installieren.
| |
| md /<Verzeichnis>
| |
| mount -t smbfs -o username=<Name>,password=<Passwort>,gid=users,fmask=0664,dmask=0775 //<Server>/<Freigabe> /<Verzeichnis>
| |
|
| |
|
| Automatisch beim Booten:
| |
| Zeile in /etc/fstab einfügen:
| |
| //<Server>/<Freigabe> /<Verzeichnis> smbfs auto,gid=users,fmask=0664,dmask=0775,iocharset=iso8859-15,code=850,credentials=/etc/<Passwortdatei> 0 0
| |
|
| |
|
| /etc/<Passwortdatei>:
| |
| username = <Name>
| |
| password = <Passwort>
| |
|
| |
|
| Eingeben:
| | Veraltet: |
| chmod 600 /etc/<Passwortdatei>
| |
|
| |
|
| | [[/Suse|Suse Linux/OpenSuse]] |
|
| |
|
| ====Console Screenblanker ausschalten====
| | [[/Fedora|Fedora]] |
| setterm -blank 0
| |
| setterm -powersave off
| |
| | |
| ====Boot-CD für BIOS-Flash====
| |
| First or all, download this [http://www.freedos.org/ FreeDOS] [http://freshrpms.net/docs/bios-flash/fdboot.img.bz2 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===
| |
| | |
| ====Suse 10.2====
| |
| | |
| =====ASUS Notebook, Suspend-to-RAM ermöglichen=====
| |
| Bei neuerem BIOS sollte es von Haus aus funktionieren. Ansonsten ist folgendes zu ändern in '''/etc/pm/config''':
| |
| S2RAM_OPTS="-f -a 1"
| |
| | |
| =====Reihenfolge der Netzwerkgeräte festlegen=====
| |
| Entsprechende Namen ändern in '''/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>
| |
| | |
| =====Suspend beim Schließen des Notebook-Deckels=====
| |
| In '''~/.kde/share/config/kpowersaverc''':
| |
| [General]
| |
| ActionOnLidClose=SUSPEND2RAM
| |
| Quelle: http://en.opensuse.org/Suspending_when_closing_the_laptop_lid_in_SUSE_10.2
| |