Advertisement
Guest User

zeos - rcdotconf

a guest
Nov 4th, 2010
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 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. # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
  11. # in the hardware clock being left untouched (useful for virtualization)
  12. # TIMEZONE: timezones are found in /usr/share/zoneinfo
  13. # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
  14. # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
  15. # CONSOLEMAP: found in /usr/share/kbd/consoletrans
  16. # USECOLOR: use ANSI color sequences in startup messages
  17. #
  18. LOCALE="en_US.UTF-8"
  19. HARDWARECLOCK="localtime"
  20. TIMEZONE="America/Chicago"
  21. KEYMAP="us"
  22. CONSOLEFONT=
  23. CONSOLEMAP=
  24. USECOLOR="yes"
  25.  
  26. # -----------------------------------------------------------------------
  27. # HARDWARE
  28. # -----------------------------------------------------------------------
  29. #
  30. # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
  31. # MOD_BLACKLIST: Prevent udev from loading these modules
  32. # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
  33. #
  34. # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
  35. #
  36. MOD_AUTOLOAD="yes"
  37. #MOD_BLACKLIST=() #deprecated
  38. MODULES=(lib80211_crypt_tkip b43)
  39.  
  40. # Scan for LVM volume groups at startup, required if you use LVM
  41. USELVM="no"
  42.  
  43. # -----------------------------------------------------------------------
  44. # NETWORKING
  45. # -----------------------------------------------------------------------
  46. #
  47. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  48. #
  49. HOSTNAME="mini9"
  50.  
  51. # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
  52. #
  53. # Interfaces to start at boot-up (in this order)
  54. # Declare each interface then list in INTERFACES
  55. # - prefix an entry in INTERFACES with a ! to disable it
  56. # - no hyphens in your interface names - Bash doesn't like it
  57. #
  58. # DHCP: Set your interface to "dhcp" (eth0="dhcp")
  59. # Wireless: See network profiles below
  60. #
  61.  
  62. #Static IP example
  63. #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
  64. eth0="dhcp"
  65. wlan0="dhcp"
  66. INTERFACES=(eth0 wlan0)
  67. WIRELESS_INTERFACE="wlan0"
  68.  
  69. # Routes to start at boot-up (in this order)
  70. # Declare each route then list in ROUTES
  71. # - prefix an entry in ROUTES with a ! to disable it
  72. #
  73. gateway="default gw 192.168.0.1"
  74. ROUTES=(!gateway)
  75.  
  76. # Enable these network profiles at boot-up. These are only useful
  77. # if you happen to need multiple network configurations (ie, laptop users)
  78. # - set to 'menu' to present a menu during boot-up (dialog package required)
  79. # - prefix an entry with a ! to disable it
  80. #
  81. # Network profiles are found in /etc/network.d
  82. #
  83. # This now requires the netcfg package
  84. #
  85. #NETWORKS=(main)
  86.  
  87. # -----------------------------------------------------------------------
  88. # DAEMONS
  89. # -----------------------------------------------------------------------
  90. #
  91. # Daemons to start at boot-up (in this order)
  92. # - prefix a daemon with a ! to disable it
  93. # - prefix a daemon with a @ to start it up in the background
  94. #
  95. DAEMONS=(syslog-ng network netfs crond net-auto-wireless)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement