Guest User

Untitled

a guest
Jun 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. ## rc.conf [bash]
  2. #
  3. # /etc/rc.conf - Main Configuration for Arch Linux
  4. #
  5.  
  6. # -----------------------------------------------------------------------
  7. # LOCALIZATION
  8. # -----------------------------------------------------------------------
  9. #
  10. # LOCALE: available languages can be listed with the 'locale -a' command
  11. # HARDWARECLOCK: set to "UTC" or "localtime"
  12. # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
  13. # TIMEZONE: timezones are found in /usr/share/zoneinfo
  14. # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
  15. # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
  16. # CONSOLEMAP: found in /usr/share/kbd/consoletrans
  17. # USECOLOR: use ANSI color sequences in startup messages
  18. #
  19. LOCALE="en_US.utf8"
  20. HARDWARECLOCK="UTC"
  21. USEDIRECTISA="no"
  22. TIMEZONE="America/New_York"
  23. KEYMAP="us"
  24. CONSOLEFONT=
  25. CONSOLEMAP=
  26. USECOLOR="yes"
  27.  
  28. # -----------------------------------------------------------------------
  29. # HARDWARE
  30. # -----------------------------------------------------------------------
  31. #
  32. # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
  33. # MOD_BLACKLIST: Prevent udev from loading these modules
  34. # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
  35. #
  36. # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
  37. #
  38. MOD_AUTOLOAD="yes"
  39. #MOD_BLACKLIST=() #deprecated
  40. MODULES=(loop vboxdrv fuse vboxnetflt)
  41.  
  42. # Scan for LVM volume groups at startup, required if you use LVM
  43. USELVM="no"
  44.  
  45. # -----------------------------------------------------------------------
  46. # NETWORKING
  47. # -----------------------------------------------------------------------
  48. #
  49. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  50. #
  51. HOSTNAME="zc00gii-PC"
  52.  
  53. # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
  54. #
  55. # Interfaces to start at boot-up (in this order)
  56. # Declare each interface then list in INTERFACES
  57. # - prefix an entry in INTERFACES with a ! to disable it
  58. # - no hyphens in your interface names - Bash doesn't like it
  59. #
  60. # DHCP: Set your interface to "dhcp" (eth0="dhcp")
  61. # Wireless: See network profiles below
  62. #
  63. eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
  64. INTERFACES=(eth0)
  65.  
  66. # Routes to start at boot-up (in this order)
  67. # Declare each route then list in ROUTES
  68. # - prefix an entry in ROUTES with a ! to disable it
  69. #
  70. gateway="default gw 192.168.0.1"
  71. ROUTES=(!gateway)
  72.  
  73. # Enable these network profiles at boot-up. These are only useful
  74. # if you happen to need multiple network configurations (ie, laptop users)
  75. # - set to 'menu' to present a menu during boot-up (dialog package required)
  76. # - prefix an entry with a ! to disable it
  77. #
  78. # Network profiles are found in /etc/network.d
  79. #
  80. # This now requires the netcfg package
  81. #
  82. #NETWORKS=(main)
  83.  
  84. # -----------------------------------------------------------------------
  85. # DAEMONS
  86. # -----------------------------------------------------------------------
  87. #
  88. # Daemons to start at boot-up (in this order)
  89. # - prefix a daemon with a ! to disable it
  90. # - prefix a daemon with a @ to start it up in the background
  91. #
  92. DAEMONS=(syslog-ng !network netfs crond dbus hal wicd @openntpd !networkmanager alsa kdm)
Add Comment
Please, Sign In to add comment