Advertisement
Guest User

rc.conf

a guest
Sep 2nd, 2011
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 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. #
  21.  
  22. LOCALE="ca_ES.UTF8"
  23. DAEMON_LOCALE="no"
  24. HARDWARECLOCK="UTC"
  25. TIMEZONE="Europe/Madrid"
  26. KEYMAP="es"
  27. CONSOLEFONT=
  28. CONSOLEMAP=
  29. USECOLOR="yes"
  30.  
  31. # -----------------------------------------------------------------------
  32. # HARDWARE
  33. # -----------------------------------------------------------------------
  34. #
  35. # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
  36. # Replace every !module by an entry as on the following line in a file in
  37. # /etc/modprobe.d:
  38. # blacklist module
  39. # See "man modprobe.conf" for details.
  40. #
  41. MODULES=(acpi-cpufreq toshiba_acpi cpufreq_ondemand fuse !snd_pcm_oss)
  42.  
  43. # Udev settle timeout (default to 30)
  44. UDEV_TIMEOUT=30
  45.  
  46. # Scan for FakeRAID (dmraid) Volumes at startup
  47. USEDMRAID="no"
  48.  
  49. # Scan for BTRFS volumes at startup
  50. USEBTRFS="no"
  51.  
  52. # Scan for LVM volume groups at startup, required if you use LVM
  53. USELVM="no"
  54.  
  55. # -----------------------------------------------------------------------
  56. # NETWORKING
  57. # -----------------------------------------------------------------------
  58. #
  59. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  60. #
  61. HOSTNAME="Arch"
  62.  
  63. # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
  64. #
  65. # Wired network setup
  66. # - interface: name of device (required)
  67. # - address: IP address (leave blank for DHCP)
  68. # - netmask: subnet mask (ignored for DHCP)
  69. # - gateway: default route (ignored for DHCP)
  70. #
  71. # Static IP example
  72. # interface=eth0
  73. # address=192.168.0.2
  74. # netmask=255.255.255.0
  75. # gateway=192.168.0.1
  76. #
  77. # DHCP example
  78. # interface=eth0
  79. # address=
  80. # netmask=
  81. # gateway=
  82.  
  83. interface=(!eth0 !wlan0)
  84. address=
  85. netmask=
  86. gateway=
  87.  
  88. # Setting this to "yes" will skip network shutdown.
  89. # This is required if your root device is on NFS.
  90. NETWORK_PERSIST="no"
  91.  
  92. # Enable these netcfg profiles at boot-up. These are useful if you happen to
  93. # need more advanced network features than the simple network service
  94. # supports, such as multiple network configurations (ie, laptop users)
  95. # - set to 'menu' to present a menu during boot-up (dialog package required)
  96. # - prefix an entry with a ! to disable it
  97. #
  98. # Network profiles are found in /etc/network.d
  99. #
  100. # This requires the netcfg package
  101. #
  102. #NETWORKS=(main)
  103.  
  104.  
  105.  
  106. # -----------------------------------------------------------------------
  107. # DAEMONS
  108. # -----------------------------------------------------------------------
  109. #
  110. # Daemons to start at boot-up (in this order)
  111. # - prefix a daemon with a ! to disable it
  112. # - prefix a daemon with a @ to start it up in the background
  113. #
  114. # If something other takes care of your hardware clock (ntpd, dual-boot...)
  115. # you should disable 'hwclock' here.
  116. #
  117. #hal
  118. DAEMONS=(@syslog-ng dbus !network !smbnetfs @networkmanager @gdm @bluetooth @alsa @cpufreq @cups @vboxdrv)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement