Advertisement
Guest User

Untitled

a guest
Jul 12th, 2010
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 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="UTC"
  20. TIMEZONE="Europe/Lisbon"
  21. KEYMAP="pt-latin1"
  22. CONSOLEFONT="lat0-16"
  23. CONSOLEMAP="8859-1"
  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=()
  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="paulecas"
  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. INTERFACES=(eth0)
  66.  
  67. # Routes to start at boot-up (in this order)
  68. # Declare each route then list in ROUTES
  69. # - prefix an entry in ROUTES with a ! to disable it
  70. #
  71. gateway="default gw 192.168.0.1"
  72. ROUTES=(!gateway)
  73.  
  74. # Setting this to "yes" will skip network shutdown.
  75. # This is required if your root device is on NFS.
  76. NETWORK_PERSIST="no"
  77.  
  78. # Enable these network profiles at boot-up. These are only useful
  79. # if you happen to need multiple network configurations (ie, laptop users)
  80. # - set to 'menu' to present a menu during boot-up (dialog package required)
  81. # - prefix an entry with a ! to disable it
  82. #
  83. # Network profiles are found in /etc/network.d
  84. #
  85. # This now requires the netcfg package
  86. #
  87. #NETWORKS=(main)
  88.  
  89. # -----------------------------------------------------------------------
  90. # DAEMONS
  91. # -----------------------------------------------------------------------
  92. #
  93. # Daemons to start at boot-up (in this order)
  94. # - prefix a daemon with a ! to disable it
  95. # - prefix a daemon with a @ to start it up in the background
  96. #
  97. DAEMONS=(syslog-ng dbus hal network netfs crond alsa kdm rc.vboxadd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement