Advertisement
Bladtman

rc.conf

Apr 21st, 2012
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 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, using "" makes hwclock fall back
  15. # to the value in /var/lib/hwclock/adjfile
  16. # TIMEZONE: timezones are found in /usr/share/zoneinfo
  17. # Note: if unset, the value in /etc/localtime is used unchanged
  18. # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
  19. # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
  20. # CONSOLEMAP: found in /usr/share/kbd/consoletrans
  21. # USECOLOR: use ANSI color sequences in startup messages
  22. #
  23. LOCALE="en_US.UTF-8"
  24. DAEMON_LOCALE="no"
  25. HARDWARECLOCK="localtime"
  26. TIMEZONE="Europe/Copenhagen"
  27. KEYMAP="dk-latin1"
  28. CONSOLEFONT=
  29. CONSOLEMAP=
  30. USECOLOR="yes"
  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=(acpi-cpufreq cpufreq_conservative)
  43.  
  44. # Udev settle timeout (default to 30)
  45. UDEV_TIMEOUT=30
  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="bladt-laptop"
  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) (optional, defaults to 255.255.255.0)
  70. # - broadcast: broadcast address (ignored for DHCP) (optional)
  71. # - gateway: default route (ignored for DHCP)
  72. #
  73. # Static IP example
  74. # interface=eth0
  75. # address=192.168.0.2
  76. # netmask=255.255.255.0
  77. # broadcast=192.168.0.255
  78. # gateway=192.168.0.1
  79. #
  80. # DHCP example
  81. # interface=eth0
  82. # address=
  83. # netmask=
  84. # gateway=
  85.  
  86. interface=wlan0
  87. address=
  88. netmask=
  89. broadcast=
  90. gateway=
  91.  
  92. # Setting this to "yes" will skip network shutdown.
  93. # This is required if your root device is on NFS.
  94. NETWORK_PERSIST="no"
  95.  
  96. # Enable these netcfg profiles at boot-up. These are useful if you happen to
  97. # need more advanced network features than the simple network service
  98. # supports, such as multiple network configurations (ie, laptop users)
  99. # - set to 'menu' to present a menu during boot-up (dialog package required)
  100. # - prefix an entry with a ! to disable it
  101. #
  102. # Network profiles are found in /etc/network.d
  103. #
  104. # This requires the netcfg package
  105. #
  106. #NETWORKS=(main)
  107.  
  108. # -----------------------------------------------------------------------
  109. # DAEMONS
  110. # -----------------------------------------------------------------------
  111. #
  112. # Daemons to start at boot-up (in this order)
  113. # - prefix a daemon with a ! to disable it
  114. # - prefix a daemon with a @ to start it up in the background
  115. #
  116. # If something other takes care of your hardware clock (ntpd, dual-boot...)
  117. # you should disable 'hwclock' here.
  118. #
  119. DAEMONS=(ntpd !hwclock syslog-ng @dbus !network !netfs @crond @wicd @preload !/usr/sbin/fancontrol @acpid @cpufreq)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement