Guest User

Untitled

a guest
Aug 3rd, 2011
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.85 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: Set the locale during daemon startup and during the boot
  11. #   process. If set to 'no', the C locale will be 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.  
  23. LOCALE="en_US.utf8"
  24. HARDWARECLOCK="UTC"
  25. USEDIRECTISA="no"
  26. TIMEZONE="Europe/Andorra"
  27. KEYMAP="es"
  28. CONSOLEFONT=ter-u16n.psf.gz
  29. CONSOLEMAP=
  30. USECOLOR="yes"
  31.  
  32. # -----------------------------------------------------------------------
  33. # HARDWARE
  34. # -----------------------------------------------------------------------
  35. #
  36. # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
  37. # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
  38. #
  39.   MOD_AUTOLOAD="yes"
  40. MODULES=(acpi-cpufreq cpufreq_ondemand cpufreq_powersave cpufreq_conservative vboxdrv autofs4 fuse uinput !snd_pcm_oss)
  41.  
  42. # Udev settle timeout (default to 30)
  43.   UDEV_TIMEOUT=30
  44.  
  45. # Scan for FakeRAID (dmraid) Volumes at startup
  46.   USEDMRAID="no"
  47.  
  48. # Scan for BTRFS volumes at startup
  49.   USEBTRFS="no"
  50.  
  51. # Scan for LVM volume groups at startup, required if you use LVM
  52.   USELVM="no"
  53.  
  54. # -----------------------------------------------------------------------
  55. # NETWORKING
  56. # -----------------------------------------------------------------------
  57. #
  58. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  59. #
  60.   HOSTNAME="arch-laptop"
  61.  
  62. # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
  63. #
  64. # Interfaces to start at boot-up (in this order)
  65. # Declare each interface then list in INTERFACES
  66. #   - prefix an entry in INTERFACES with a ! to disable it
  67. #   - no hyphens in your interface names - Bash doesn't like it
  68. #
  69. # DHCP:     Set your interface to "dhcp" (eth0="dhcp")
  70. # Wireless: See network profiles below
  71. #
  72. # eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
  73. # eth0="dhcp"
  74. # INTERFACES=(eth0 wlan0)
  75.  
  76. # Routes to start at boot-up (in this order)
  77. # Declare each route then list in ROUTES
  78. #   - prefix an entry in ROUTES with a ! to disable it
  79. #
  80. gateway="default gw 192.168.2.1"
  81. ROUTES=(!gateway)
  82. # Setting this to "yes" will skip network shutdown.
  83. # This is required if your root device is on NFS.
  84. NETWORK_PERSIST="no"
  85.  
  86. # Enable these network profiles at boot-up.  These are only useful
  87. # if you happen to need multiple network configurations (ie, laptop users)
  88. #   - set to 'menu' to present a menu during boot-up (dialog package required)
  89. #   - prefix an entry with a ! to disable it
  90. #
  91. # Network profiles are found in /etc/network.d
  92. #
  93. # This now requires the netcfg package and the net-profiles daemon
  94. #
  95. NETWORKS=(BELKIN eduroam WLAN_69 Skynet)
  96.   WIRELESS_INTERFACE="wlan0"
  97.   WIRED_INTERFACE="eth0"
  98. # -----------------------------------------------------------------------
  99. # DAEMONS
  100. # -----------------------------------------------------------------------
  101. #
  102. # Daemons to start at boot-up (in this order)
  103. #   - prefix a daemon with a ! to disable it
  104. #   - prefix a daemon with a @ to start it up in the background
  105. #
  106. # If something other takes care of your hardware clock (ntpd, dual-boot...)
  107. # you should disable 'hwclock' here.
  108. #
  109. DAEMONS=(netfs cpufreq dbus !laptop-mode @cups !net-profiles @networkmanager @ntpd !mysqld @mpdscribble @mpd)
Advertisement
Add Comment
Please, Sign In to add comment