Guest User

Untitled

a guest
Jun 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 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"
  11. # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
  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.utf8"
  19. HARDWARECLOCK="local"
  20. USEDIRECTISA="no"
  21. TIMEZONE="Europe/Bratislava"
  22. KEYMAP="sk-qwertz"
  23. CONSOLEFONT=
  24. CONSOLEMAP=
  25. USECOLOR="yes"
  26.  
  27. # -----------------------------------------------------------------------
  28. # HARDWARE
  29. # -----------------------------------------------------------------------
  30. #
  31. # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
  32. # MOD_BLACKLIST: Prevent udev from loading these modules
  33. # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
  34. #
  35. # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
  36. #
  37. MOD_AUTOLOAD="yes"
  38. #MOD_BLACKLIST=() #deprecated
  39. MODULES=()
  40.  
  41. # Scan for LVM volume groups at startup, required if you use LVM
  42. USELVM="no"
  43.  
  44. # -----------------------------------------------------------------------
  45. # NETWORKING
  46. # -----------------------------------------------------------------------
  47. #
  48. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  49. #
  50. HOSTNAME="ficun"
  51.  
  52. # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
  53. #
  54. # Interfaces to start at boot-up (in this order)
  55. # Declare each interface then list in INTERFACES
  56. # - prefix an entry in INTERFACES with a ! to disable it
  57. # - no hyphens in your interface names - Bash doesn't like it
  58. #
  59. # DHCP: Set your interface to "dhcp" (eth0="dhcp")
  60. # Wireless: See network profiles below
  61. #
  62. #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
  63. #eth0="dhcp"
  64. #INTERFACES=(eth0)
  65. wlan0="dhcp"
  66. wlan_wlan0="wlan0 essid linksys key 1234567890"
  67. INTERFACES=(wlan0)
  68.  
  69. # Routes to start at boot-up (in this order)
  70. # Declare each route then list in ROUTES
  71. # - prefix an entry in ROUTES with a ! to disable it
  72. #
  73. gateway="default gw 192.168.0.1"
  74. ROUTES=(!gateway)
  75.  
  76. # Enable these network profiles at boot-up. These are only useful
  77. # if you happen to need multiple network configurations (ie, laptop users)
  78. # - set to 'menu' to present a menu during boot-up (dialog package required)
  79. # - prefix an entry with a ! to disable it
  80. #
  81. # Network profiles are found in /etc/network.d
  82. #
  83. # This now requires the netcfg package
  84. #
  85. #NETWORKS=(main)
  86.  
  87. # -----------------------------------------------------------------------
  88. # DAEMONS
  89. # -----------------------------------------------------------------------
  90. #
  91. # Daemons to start at boot-up (in this order)
  92. # - prefix a daemon with a ! to disable it
  93. # - prefix a daemon with a @ to start it up in the background
  94. #
  95. DAEMONS=(!syslog-ng !crond !netfs network fam hal alsa sshd)
Add Comment
Please, Sign In to add comment