Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
becki:linux:slack_tips_attic [2009-05-05 11:41] becki created |
becki:linux:slack_tips_attic [2009-12-07 15:28] (aktuell) becki |
||
---|---|---|---|
Zeile 17: | Zeile 17: | ||
cat /mnt/cdrom/rootdisks/network.dsk > /dev/fd0 | cat /mnt/cdrom/rootdisks/network.dsk > /dev/fd0 | ||
</code> | </code> | ||
+ | |||
+ | ===== After Install Config == | ||
+ | ==== Terminal Emulator Config Example == | ||
+ | |||
+ | <code> | ||
+ | ! ~/.Xdefaults | ||
+ | |||
+ | ! Default Values for all Terminal Emulators: | ||
+ | XTerm*geometry: 80x64 | ||
+ | XTerm*loginShell: true | ||
+ | XTerm*visualBell: true | ||
+ | |||
+ | ! Enable Mrxvt transparency: | ||
+ | Mrxvt*transparent: True | ||
+ | Mrxvt*transparentScrollbar: True | ||
+ | Mrxvt*transparentTabbar: True | ||
+ | |||
+ | ! Mrxvt dark Background, bright Font: | ||
+ | Mrxvt*shading: 60 | ||
+ | Mrxvt*reverseVideo: True | ||
+ | ! Brighter bold and normal blue | ||
+ | !(for directories and vim comments): | ||
+ | Mrxvt*color4: #007FFF | ||
+ | Mrxvt*color12: #007FFF | ||
+ | </code> | ||
+ | |||
+ | rxvt-doku from manpage; aterm doku from www.fluxbox.org -> dotfile-examples; mrxvt doku from manpage & [[http://materm.sourceforge.net/wiki/Main/Documentation|mrxvt hompage]] | ||
+ | |||
+ | Since aterm 1.0.0 trancparency seems not to work any more with fluxbox on slackware 11.0. Switched to mrxvt therfore. rxvt-unicode may also be an option. --- 2007-04-04 | ||
+ | |||
+ | Old aterm config: | ||
+ | <code> | ||
+ | ! ~/.Xdefaults | ||
+ | ... | ||
+ | !Aterm*color0: #000000 | ||
+ | !Aterm*color1: #b21818 | ||
+ | !Aterm*color2: #18b218 | ||
+ | !Aterm*color3: #BE5F00 | ||
+ | !Aterm*color4: #6D85BA | ||
+ | !Aterm*color5: #b218b2 | ||
+ | !Aterm*color6: #18b2b2 | ||
+ | !Aterm*color7: #b2b2b2 | ||
+ | !Aterm*color8: #686868 | ||
+ | !Aterm*color9: #FF5454 | ||
+ | !Aterm*color10: #54FF54 | ||
+ | !Aterm*color11: #FFFF54 | ||
+ | !Aterm*color12: #73A5FF | ||
+ | !Aterm*color13: #FF54FF | ||
+ | !Aterm*color14: #54FFFF | ||
+ | !Aterm*color15: #FFFFFF | ||
+ | !Aterm*background: black | ||
+ | !Aterm*foreground: #A8A8A8 | ||
+ | !Aterm*scrollBar: false | ||
+ | Aterm*transparent: true | ||
+ | Aterm*tinting: Magenta | ||
+ | Aterm*shading: 40 | ||
+ | !Aterm*font: -misc-fixed-medium-r-normal-*-14-*-*-*-c-*-iso8859-15 | ||
+ | </code> | ||
+ | |||
+ | ===== XFCE == | ||
+ | |||
+ | :!: As of Slack 13.0 the following is obsoete. | ||
+ | |||
+ | Enable to shutdown or restart the computer when running Xfce. You have to allow the user(s) to execute ''xfsm-shutdown-helper'' with ''sudo''. Run ''visudo'' (root) and add the following line: | ||
+ | |||
+ | %users ALL = NOPASSWD:/usr/libexec/xfsm-shutdown-helper | ||
+ | |||
+ | Source http://wiki.xfce.org/faq#session_manager | ||
+ | |||
+ | ===== Backup with rsyncd == | ||
+ | |||
+ | See [[becki/sources/beckibackup]] | ||
+ | |||
+ | /etc/rsyncd.conf : gemäß man rsyncd.conf | ||
+ | <code bash> | ||
+ | hosts allow = ilse.local | ||
+ | dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.mpg *.jpg *.mp3 *.ogg | ||
+ | [ilsebak] | ||
+ | #Zielpfad: | ||
+ | path = /home/share/bak/ilse | ||
+ | # nötig, sonst kann man nicht schreiben: | ||
+ | read only = no | ||
+ | # nötig, sonst gehen die Eigentümer verloren & alles wird nobody|nobody | ||
+ | # (ausprobiert) | ||
+ | uid = root | ||
+ | </code> | ||
+ | |||
+ | "rsync --daemon" in rc.local gemäß "man rsyncd" | ||
+ | (wegen einem Dienst starte ich den inetd nicht, & cups wird autonom in rc.cups gestartet) | ||