Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # fstab
- #
- # <filesystem> <dir> <type> <options> <dump> <pass>
- tmpfs /tmp tmpfs nodev,nosuid 0 0
- /dev/sda3 /boot ext2 defaults 0 1
- /dev/sda5 none swap defaults 0 0
- /dev/sda6 / ext4 defaults 0 1
- /dev/sda7 /var reiserfs defaults 0 1
- /dev/sda8 /home ext4 defaults 0 1
- # rc.conf
- #
- HARDWARECLOCK="localtime"
- TIMEZONE="Europe/Rome"
- KEYMAP="it"
- LOCALE="it_IT-UTF-8"
- DEMONLOCALE="yes"
- USECOLOR="yes"
- ...
- DAEMONS=(@syslog-ng dbus !network wicd @crond alsa)
- # xinitrc
- #
- if [ -d /etc/X11/xinit/xinitrc.d ]; then
- for f in /etc/X11/xinit/xinitrc.d/*; do
- [ -x "$f"] && . "$f"
- done
- unset f
- fi
- exec setxkbmap it &
- exec /home/creel/.config/wmfs/status-sh &
- exec wicd-client -t &
- mpd /home/creel/.mpd/mpc.conf
- exec ck-launch-session dbus-launch wmfs & <---- i figured out why it didn't start, the "&".
Advertisement
Add Comment
Please, Sign In to add comment