Advertisement
Guest User

Untitled

a guest
Jul 8th, 2010
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 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/Ho_Chi_Minh"
  21. KEYMAP="us"
  22. CONSOLEFONT="ter-v14b"
  23. CONSOLEMAP="viscii"
  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=(acpi-cpufreq cpufreq_ondemand cpufreq_powersave vboxnetadp vboxnetflt vboxdrv)
  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="madtux"
  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
  63. eth0="eth0 192.168.1.126 netmask 255.255.255.0 broadcast 192.168.1.255"
  64. # Auto DHCP
  65. # eth0="dhcp"
  66. INTERFACES=(eth0)
  67.  
  68. # Routes to start at boot-up (in this order)
  69. # Declare each route then list in ROUTES
  70. # - prefix an entry in ROUTES with a ! to disable it
  71. #
  72. gateway="default gw 192.168.1.1"
  73. ROUTES=(gateway)
  74.  
  75. # Setting this to "yes" will skip network shutdown.
  76. # This is required if your root device is on NFS.
  77. NETWORK_PERSIST="no"
  78.  
  79. # Enable these network profiles at boot-up. These are only useful
  80. # if you happen to need multiple network configurations (ie, laptop users)
  81. # - set to 'menu' to present a menu during boot-up (dialog package required)
  82. # - prefix an entry with a ! to disable it
  83. #
  84. # Network profiles are found in /etc/network.d
  85. #
  86. # This now requires the netcfg package
  87. #
  88. #NETWORKS=(main)
  89.  
  90. # -----------------------------------------------------------------------
  91. # DAEMONS
  92. # -----------------------------------------------------------------------
  93. #
  94. # Daemons to start at boot-up (in this order)
  95. # - prefix a daemon with a ! to disable it
  96. # - prefix a daemon with a @ to start it up in the background
  97. #
  98. DAEMONS=(@syslog-ng @cpufreq dkms_autoinstaller dbus hal network @sensors @alsa @crond)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement