SHOW:
|
|
- or go back to the newest paste.
| 1 | # fstab | |
| 2 | # | |
| 3 | # <filesystem> <dir> <type> <options> <dump> <pass> | |
| 4 | tmpfs /tmp tmpfs nodev,nosuid 0 0 | |
| 5 | /dev/sda3 /boot ext2 defaults 0 1 | |
| 6 | /dev/sda5 none swap defaults 0 0 | |
| 7 | /dev/sda6 / ext4 defaults 0 1 | |
| 8 | /dev/sda7 /var reiserfs defaults 0 1 | |
| 9 | /dev/sda8 /home ext4 defaults 0 1 | |
| 10 | ||
| 11 | ||
| 12 | # rc.conf | |
| 13 | # | |
| 14 | HARDWARECLOCK="localtime" | |
| 15 | TIMEZONE="Europe/Rome" | |
| 16 | KEYMAP="it" | |
| 17 | LOCALE="it_IT-UTF-8" | |
| 18 | - | DEMON LOCALE="yes" |
| 18 | + | DEMONLOCALE="yes" |
| 19 | USECOLOR="yes" | |
| 20 | ||
| 21 | ... | |
| 22 | ||
| 23 | DAEMONS=(@syslog-ng dbus !network wicd @crond alsa) | |
| 24 | ||
| 25 | ||
| 26 | # xinitrc | |
| 27 | # | |
| 28 | if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
| 29 | for f in /etc/X11/xinit/xinitrc.d/*; do | |
| 30 | [ -x "$f"] && . "$f" | |
| 31 | done | |
| 32 | unset f | |
| 33 | fi | |
| 34 | ||
| 35 | exec setxkbmap it & | |
| 36 | exec /home/creel/.config/wmfs/status-sh & | |
| 37 | exec wicd-client -t & | |
| 38 | mpd /home/creel/.mpd/mpc.conf | |
| 39 | exec ck-launch-session dbus-launch wmfs & <---- i figured out why it didn't start, the "&". |