Advertisement
tribhuvanesh

rc.conf

Jul 26th, 2011
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 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="localtime"
  20. TIMEZONE="Asia/Kolkata"
  21. KEYMAP="us"
  22. CONSOLEFONT=
  23. CONSOLEMAP=
  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=(broadcom tg3)
  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="rapture-mobile"
  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 wlan0)
  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. # Enable these network profiles at boot-up. These are only useful
  75. # if you happen to need multiple network configurations (ie, laptop users)
  76. # - set to 'menu' to present a menu during boot-up (dialog package required)
  77. # - prefix an entry with a ! to disable it
  78. #
  79. # Network profiles are found in /etc/network.d
  80. #
  81. # This now requires the netcfg package
  82. #
  83. #NETWORKS=(main)
  84.  
  85. # -----------------------------------------------------------------------
  86. # DAEMONS
  87. # -----------------------------------------------------------------------
  88. #
  89. # Daemons to start at boot-up (in this order)
  90. # - prefix a daemon with a ! to disable it
  91. # - prefix a daemon with a @ to start it up in the background
  92. #
  93. DAEMONS=(syslog-ng network netfs crond @alsa dbus)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement