Advertisement
Guest User

Untitled

a guest
Jul 5th, 2012
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # fstab
  2. #
  3. # <filesystem> <dir> <type> <options> <dump> <pass>
  4. tmpfs /tmp tmpfs nodev,nosuid 0 0
  5. /dev/sda1 /boot ext2 defaults 0 1
  6. /dev/sda4 /home ext4 defaults 0 1
  7. /dev/sda3 / ext4 defaults 0 1
  8. /dev/sda2 swap swap defaults 0 0
  9.  
  10. # rc.conf
  11. #
  12. HARDWARECLOCK="localtime"
  13. TIMEZONE="America/Phoenix"
  14. KEYMAP="us"
  15. LOCALE=
  16. DEMONLOCALE="yes"
  17. USECOLOR="yes"
  18.  
  19. ...
  20.  
  21. DAEMONS=(@syslog-ng crond dbus acpid @alsa @sshd @samba @tlp wicd rpcbind nfs-common @netfs nfs-server avahi-daemon avahi-dnsconfd sensors samba)
  22.  
  23.  
  24. # xinitrc
  25. #
  26. if [ -d /etc/X11/xinit/xinitrc.d ]; then
  27. for f in /etc/X11/xinit/xinitrc.d/*; do
  28. [ -x "$f"] && . "$f"
  29. done
  30. unset f
  31. fi
  32.  
  33. exec ck-launch-session dbus-launch openbox-session
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement