Advertisement
Guest User

/etc/rc.conf

a guest
Jun 13th, 2011
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. #
  2. # /etc/rc.conf - Main Configuration for Arch Linux
  3. #
  4.  
  5. # -----------------------------------------------------------------------
  6. # LOCALIZATION
  7. # -----------------------------------------------------------------------
  8. #
  9. # LOCALE: available languages can be listed with the 'locale -a' command
  10. # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
  11. # startup and during the boot process. If set to 'no', the C locale is used.
  12. # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
  13. # in the hardware clock being left untouched (useful for virtualization)
  14. # Note: Using "localtime" is discouraged.
  15. # TIMEZONE: timezones are found in /usr/share/zoneinfo
  16. # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
  17. # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
  18. # CONSOLEMAP: found in /usr/share/kbd/consoletrans
  19. # USECOLOR: use ANSI color sequences in startup messages
  20. # VERBOSE: Verbose level (from 1 to 8). man 3 syslog for level info
  21. #
  22. LOCALE="en_US.UTF-8"
  23. DAEMON_LOCALE="no"
  24. HARDWARECLOCK="localtime"
  25. TIMEZONE="Asia/Kuala_Lumpur"
  26. KEYMAP="us"
  27. CONSOLEFONT=
  28. CONSOLEMAP=
  29. USECOLOR="yes"
  30. VERBOSE="3"
  31.  
  32. # -----------------------------------------------------------------------
  33. # HARDWARE
  34. # -----------------------------------------------------------------------
  35. #
  36. # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
  37. # Replace every !module by an entry as on the following line in a file in
  38. # /etc/modprobe.d:
  39. # blacklist module
  40. # See "man modprobe.conf" for details.
  41. #
  42. MODULES=(sky2 snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-codec snd-hda-intel soundcore fuse)
  43.  
  44. # Udev settle timeout (default to 30)
  45. UDEV_TIMEOUT=15
  46.  
  47. # Scan for FakeRAID (dmraid) Volumes at startup
  48. USEDMRAID="no"
  49.  
  50. # Scan for BTRFS volumes at startup
  51. USEBTRFS="no"
  52.  
  53. # Scan for LVM volume groups at startup, required if you use LVM
  54. USELVM="no"
  55.  
  56. # -----------------------------------------------------------------------
  57. # NETWORKING
  58. # -----------------------------------------------------------------------
  59. #
  60. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  61. #
  62. HOSTNAME="archlinux"
  63.  
  64. # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
  65. #
  66. # Wired network setup
  67. # - interface: name of device (required)
  68. # - address: IP address (leave blank for DHCP)
  69. # - netmask: subnet mask (ignored for DHCP)
  70. # - gateway: default route (ignored for DHCP)
  71. #
  72. # Static IP example
  73. # interface=eth0
  74. # address=192.168.0.2
  75. # netmask=255.255.255.0
  76. # gateway=192.168.0.1
  77. #
  78. # DHCP example
  79. # interface=eth0
  80. # address=
  81. # netmask=
  82. # gateway=
  83.  
  84. # Setting this to "yes" will skip network shutdown.
  85. # This is required if your root device is on NFS.
  86. NETWORK_PERSIST="no"
  87.  
  88. # Enable these netcfg profiles at boot-up. These are useful if you happen to
  89. # need more advanced network features than the simple network service
  90. # supports, such as multiple network configurations (ie, laptop users)
  91. # - set to 'menu' to present a menu during boot-up (dialog package required)
  92. # - prefix an entry with a ! to disable it
  93. #
  94. # Network profiles are found in /etc/network.d
  95. #
  96. # This requires the netcfg package
  97. #
  98. #NETWORKS=(main)
  99.  
  100. # -----------------------------------------------------------------------
  101. # DAEMONS
  102. # -----------------------------------------------------------------------
  103. #
  104. # Daemons to start at boot-up (in this order)
  105. # - prefix a daemon with a ! to disable it
  106. # - prefix a daemon with a @ to start it up in the background
  107. #
  108. # If something other takes care of your hardware clock (ntpd, dual-boot...)
  109. # you should disable 'hwclock' here.
  110. #
  111. DAEMONS=(@hwclock syslog-ng dbus @networkmanager crond @acpid @laptop-mode @pdnsd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement