Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2011
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.72 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. # VERBOSE: Verbose level (from 1 to 8). man 3 syslog for level info
  21. #
  22. LOCALE="en_US.UTF-8"
  23. DAEMON_LOCALE="no"
  24. HARDWARECLOCK="UTC"
  25. TIMEZONE="Europe/Vilnius"
  26. KEYMAP="us"
  27. CONSOLEFONT=
  28. CONSOLEMAP=
  29. USECOLOR="yes"
  30. VERBOSE="3"
  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=()
  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="myhost"
  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.  
  73. #Static IP example
  74. #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
  75. eth0="dhcp"
  76. INTERFACES=(!eth0 !wlan0)
  77.  
  78. # Routes to start at boot-up (in this order)
  79. # Declare each route then list in ROUTES
  80. #   - prefix an entry in ROUTES with a ! to disable it
  81. #
  82. gateway="default gw 192.168.0.1"
  83. ROUTES=(!gateway)
  84.  
  85. # Setting this to "yes" will skip network shutdown.
  86. # This is required if your root device is on NFS.
  87. NETWORK_PERSIST="no"
  88.  
  89. # Enable these network profiles at boot-up.  These are only useful
  90. # if you happen to need multiple network configurations (ie, laptop users)
  91. #   - set to 'menu' to present a menu during boot-up (dialog package required)
  92. #   - prefix an entry with a ! to disable it
  93. #
  94. # Network profiles are found in /etc/network.d
  95. #
  96. # This now requires the netcfg package
  97. #
  98. #NETWORKS=(main)
  99.  
  100. # -----------------------------------------------------------------------
  101. # DAEMONS
  102. # -----------------------------------------------------------------------
  103. #
  104. # Daemons to start at boot-up (in this order)
  105. #   - prefix a daemon with a ! to disable it
  106. #   - prefix a daemon with a @ to start it up in the background
  107. #
  108. # If something other takes care of your hardware clock (ntpd, dual-boot...)
  109. # you should disable 'hwclock' here.
  110. #
  111. DAEMONS=(hwclock dbus syslog-ng !network netfs crond wicd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement