Advertisement
Guest User

Untitled

a guest
Mar 5th, 2010
2,305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 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"
  11. # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
  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.utf8"
  19. HARDWARECLOCK="localtime"
  20. USEDIRECTISA="no"
  21. TIMEZONE="Europe/Berlin"
  22. KEYMAP="us"
  23. CONSOLEFONT=
  24. CONSOLEMAP=
  25. USECOLOR="yes"
  26.  
  27. # -----------------------------------------------------------------------
  28. # HARDWARE
  29. # -----------------------------------------------------------------------
  30. #
  31. # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
  32. # MOD_BLACKLIST: Prevent udev from loading these modules
  33. # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
  34. #
  35. # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
  36. #
  37. MOD_AUTOLOAD="yes"
  38. #MOD_BLACKLIST=() #deprecated
  39. MODULES=(acpi-cpufreq cpufreq_ondemand cpufreq_powersave i8k !snd_pcsp)
  40.  
  41. # Scan for LVM volume groups at startup, required if you use LVM
  42. USELVM="no"
  43.  
  44. # -----------------------------------------------------------------------
  45. # NETWORKING
  46. # -----------------------------------------------------------------------
  47. #
  48. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  49. #
  50. HOSTNAME="moonlight"
  51.  
  52. # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
  53. #
  54. # Interfaces to start at boot-up (in this order)
  55. # Declare each interface then list in INTERFACES
  56. # - prefix an entry in INTERFACES with a ! to disable it
  57. # - no hyphens in your interface names - Bash doesn't like it
  58. #
  59. # DHCP: Set your interface to "dhcp" (eth0="dhcp")
  60. # Wireless: See network profiles below
  61. #
  62.  
  63. #Static IP example
  64. #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
  65. eth1="dhcp"
  66. INTERFACES=(eth1)
  67.  
  68. # Routes to start at boot-up (in this order)
  69. # Declare each route then list in ROUTES
  70. # - prefix an entry in ROUTES with a ! to disable it
  71. #
  72. # gateway="default gw 192.168.0.1"
  73. # ROUTES=(!gateway)
  74.  
  75. # Enable these network profiles at boot-up. These are only useful
  76. # if you happen to need multiple network configurations (ie, laptop users)
  77. # - set to 'menu' to present a menu during boot-up (dialog package required)
  78. # - prefix an entry with a ! to disable it
  79. #
  80. # Network profiles are found in /etc/network.d
  81. #
  82. # This now requires the netcfg package
  83. #
  84. NETWORKS=(rangalonet)
  85.  
  86. # -----------------------------------------------------------------------
  87. # DAEMONS
  88. # -----------------------------------------------------------------------
  89. #
  90. # Daemons to start at boot-up (in this order)
  91. # - prefix a daemon with a ! to disable it
  92. # - prefix a daemon with a @ to start it up in the background
  93. #
  94. DAEMONS=(syslog-ng !network net-profiles !netfs crond alsa hal cpufreq !i8kmon )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement