pacman.conf.x86_64 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. #
  2. # /etc/pacman.conf
  3. #
  4. # See the pacman.conf(5) manpage for option and repository directives
  5. #
  6. # GENERAL OPTIONS
  7. #
  8. [options]
  9. # The following paths are commented out with their default values listed.
  10. # If you wish to use different paths, uncomment and update the paths.
  11. #RootDir = /
  12. #DBPath = /var/lib/pacman/
  13. #CacheDir = /var/cache/pacman/pkg/
  14. #LogFile = /var/log/pacman.log
  15. #GPGDir = /etc/pacman.d/gnupg/
  16. #HookDir = /etc/pacman.d/hooks/
  17. HoldPkg = pacman glibc
  18. #XferCommand = /usr/bin/curl -L -C - -f -o %o %u
  19. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  20. #CleanMethod = KeepInstalled
  21. Architecture = x86_64
  22. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  23. #IgnorePkg =
  24. #IgnoreGroup =
  25. #NoUpgrade =
  26. #NoExtract =
  27. # Misc options
  28. #UseSyslog
  29. #Color
  30. #NoProgressBar
  31. CheckSpace
  32. #VerbosePkgLists
  33. #ParallelDownloads = 5
  34. DownloadUser = alpm
  35. #DisableSandbox
  36. # By default, pacman accepts packages signed by keys that its local keyring
  37. # trusts (see pacman-key and its man page), as well as unsigned packages.
  38. SigLevel = Required DatabaseOptional
  39. LocalFileSigLevel = Optional
  40. #RemoteFileSigLevel = Required
  41. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  42. # keyring can then be populated with the keys of all trusted packagers with:
  43. # `pacman-key --populate archlinux parabola`.
  44. #
  45. # REPOSITORIES
  46. # - can be defined here or included from another file
  47. # - pacman will search repositories in the order defined here
  48. # - local/custom mirrors can be added here or in separate files
  49. # - repositories listed first will take precedence when packages
  50. # have identical names, regardless of version number
  51. # - URLs will have $repo replaced by the name of the current repo
  52. # - URLs will have $arch replaced by the name of the architecture
  53. #
  54. # Repository entries are of the format:
  55. # [repo-name]
  56. # Server = ServerName
  57. # Include = IncludePath
  58. #
  59. # The header [repo-name] is crucial - it must be present and
  60. # uncommented to enable the repo.
  61. #
  62. # Some repositories are disabled by default. To enable them, un-comment the
  63. # repo name header (e.g. '[nonprism]') and the following 'Include' line.
  64. # You can add preferred servers for each repo between the header and "Include" line,
  65. # according to the format in /etc/pacman.d/mirrorlist,
  66. # and those will be preferred over the standard mirrors for that repo.
  67. #
  68. # The order in which these entries appear in this file is critical.
  69. # Much of the Parabola magic that supports advanced features such as
  70. # multiple init-systems and multiple layers of freedom and privacy,
  71. # depends on the order in which these repos are defined.
  72. # Moving or adding repos out of the expected order can make your system insane.
  73. # Notes on special repositories:
  74. #
  75. # Non-prism is a repository for enhanced privacy, beyond the FSDG requirements.
  76. # It contains specially patched versions of certain software from the standard repos,
  77. # that are known to include privacy-sensative features that some people may want to use,
  78. # but that others may consider to be undesirable anti-features.
  79. # For more info see: https://wiki.parabola.nu/Nonprism
  80. #
  81. # The non-systemd repository contains packages that are important and relevant only to
  82. # Parabola systems using an init-system other than systemd.
  83. # Parabola systems using systemd SHOULD NOT have [nonsystemd] enabled.
  84. # Parabola systems using any other init-system SHOULD have [nonsystemd] enabled.
  85. #
  86. # The kernels repository contains additional special kernels for particular use-cases,
  87. # such as maximal security hardening and real-time systems.
  88. #
  89. # The PCR (Parabola Community Repository) contains additional packages,
  90. # most often requested by Parabola users, that are not considered to be
  91. # part of the standard Parabola/Arch system, but are nonetheless useful or fun.
  92. #
  93. # Multi-lib repositories allow 32-bit applications to run on x86_64 systems.
  94. #
  95. # The Parabola system also supports custom, user-defined, repositories;
  96. # but be aware that the Parabola team can not recommend nor support their use.
  97. # The Parabola team can only support the use of software that is published by Parabola.
  98. # The use of third-party software is discouraged with a "use at your own risk" warning.
  99. # These may be community-maintained or maintained privately by the local user or sysadmin.
  100. # They may be hosted on the internet, on the local network, or only on the local computer.
  101. # An example of a custom package repository is given below
  102. # in the "User-defined repos" section
  103. # See the pacman manpage for details on creating your own repositories.
  104. ###########################
  105. # Parabola standard repos #
  106. ###########################
  107. #[nonprism-testing]
  108. #Include = /etc/pacman.d/mirrorlist
  109. #[nonprism]
  110. #Include = /etc/pacman.d/mirrorlist
  111. #[nonsystemd-testing]
  112. #Include = /etc/pacman.d/mirrorlist
  113. #[nonsystemd]
  114. #Include = /etc/pacman.d/mirrorlist
  115. #[libre-testing]
  116. #Include = /etc/pacman.d/mirrorlist
  117. [libre]
  118. Include = /etc/pacman.d/mirrorlist
  119. #######################
  120. # Arch standard repos #
  121. #######################
  122. #[core-testing]
  123. #Include = /etc/pacman.d/mirrorlist
  124. [core]
  125. Include = /etc/pacman.d/mirrorlist
  126. #[extra-testing]
  127. #Include = /etc/pacman.d/mirrorlist
  128. [extra]
  129. Include = /etc/pacman.d/mirrorlist
  130. ######################
  131. # Supplemental repos #
  132. ######################
  133. #[pcr-testing]
  134. #Include = /etc/pacman.d/mirrorlist
  135. [pcr]
  136. Include = /etc/pacman.d/mirrorlist
  137. ############################
  138. # Cross-architecture repos #
  139. ############################
  140. #[nonprism-multilib-testing]
  141. #Include = /etc/pacman.d/mirrorlist
  142. #[nonprism-multilib]
  143. #Include = /etc/pacman.d/mirrorlist
  144. #[nonsystemd-multilib-testing]
  145. #Include = /etc/pacman.d/mirrorlist
  146. #[nonsystemd-multilib]
  147. #Include = /etc/pacman.d/mirrorlist
  148. #[libre-multilib-testing]
  149. #Include = /etc/pacman.d/mirrorlist
  150. #[libre-multilib]
  151. #Include = /etc/pacman.d/mirrorlist
  152. #[multilib-testing]
  153. #Include = /etc/pacman.d/mirrorlist
  154. #[multilib]
  155. #Include = /etc/pacman.d/mirrorlist
  156. #[pcr-multilib-testing]
  157. #Include = /etc/pacman.d/mirrorlist
  158. #[pcr-multilib]
  159. #Include = /etc/pacman.d/mirrorlist
  160. ######################
  161. # User-defined repos #
  162. ######################
  163. #[custom]
  164. #SigLevel = Optional TrustAll
  165. #Server = file:///home/custompkgs