Advertisement
justnext

/etc/pacman.conf

Jun 2nd, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. #
  2. # /etc/pacman.conf
  3. #
  4. # See the pacman.conf(5) manpage for option and repository directives
  5.  
  6. #
  7. # GENERAL OPTIONS
  8. #
  9. [options]
  10. # The following paths are commented out with their default values listed.
  11. # If you wish to use different paths, uncomment and update the paths.
  12. #RootDir = /
  13. #DBPath = /var/lib/pacman/
  14. #CacheDir = /var/cache/pacman/pkg/
  15. #LogFile = /var/log/pacman.log
  16. #GPGDir = /etc/pacman.d/gnupg/
  17. HoldPkg = pacman glibc
  18. #XferCommand = /usr/bin/curl -C - -f %u > %o
  19. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  20. #CleanMethod = KeepInstalled
  21. #UseDelta = 0.7
  22. Architecture = auto
  23.  
  24. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  25. #IgnorePkg =
  26. #IgnoreGroup =
  27.  
  28. #NoUpgrade =
  29. #NoExtract =
  30.  
  31. # Misc options
  32. #UseSyslog
  33. #Color
  34. #TotalDownload
  35. CheckSpace
  36. #VerbosePkgLists
  37.  
  38. #--just added/modded
  39. #--Misc options
  40. Color
  41. #ShowSize
  42. VerbosePkgLists
  43. ILoveCandy
  44. #--
  45.  
  46. # By default, pacman accepts packages signed by keys that its local keyring
  47. # trusts (see pacman-key and its man page), as well as unsigned packages.
  48. SigLevel = Required DatabaseOptional
  49. LocalFileSigLevel = Optional
  50. #RemoteFileSigLevel = Required
  51.  
  52. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  53. # keyring can then be populated with the keys of all official Arch Linux
  54. # packagers with `pacman-key --populate archlinux`.
  55.  
  56. #
  57. # REPOSITORIES
  58. # - can be defined here or included from another file
  59. # - pacman will search repositories in the order defined here
  60. # - local/custom mirrors can be added here or in separate files
  61. # - repositories listed first will take precedence when packages
  62. # have identical names, regardless of version number
  63. # - URLs will have $repo replaced by the name of the current repo
  64. # - URLs will have $arch replaced by the name of the architecture
  65. #
  66. # Repository entries are of the format:
  67. # [repo-name]
  68. # Server = ServerName
  69. # Include = IncludePath
  70. #
  71. # The header [repo-name] is crucial - it must be present and
  72. # uncommented to enable the repo.
  73. #
  74.  
  75. # The testing repositories are disabled by default. To enable, uncomment the
  76. # repo name header and Include lines. You can add preferred servers immediately
  77. # after the header, and they will be used before the default mirrors.
  78.  
  79. [antergos-staging]
  80. SigLevel = PackageRequired
  81. Server = http://mirrors.antergos.com/$repo/$arch/
  82.  
  83. #--moved by hand for
  84. #--mate-1.14 testing
  85. [antergos]
  86. SigLevel = PackageRequired
  87. Include = /etc/pacman.d/antergos-mirrorlist
  88. #--
  89.  
  90.  
  91. #[testing]
  92. #Include = /etc/pacman.d/mirrorlist
  93.  
  94. [core]
  95. Include = /etc/pacman.d/mirrorlist
  96.  
  97. [extra]
  98. Include = /etc/pacman.d/mirrorlist
  99.  
  100. #[community-testing]
  101. #Include = /etc/pacman.d/mirrorlist
  102.  
  103. [community]
  104. Include = /etc/pacman.d/mirrorlist
  105.  
  106. # If you want to run 32 bit applications on your x86_64 system,
  107. # enable the multilib repositories as required here.
  108.  
  109. #[multilib-testing]
  110. #Include = /etc/pacman.d/mirrorlist
  111.  
  112. #--just uncommented
  113. [multilib]
  114. Include = /etc/pacman.d/mirrorlist
  115. #--
  116.  
  117. # An example of a custom package repository. See the pacman manpage for
  118. # tips on creating your own repositories.
  119. #[custom]
  120. #SigLevel = Optional TrustAll
  121. #Server = file:///home/custompkgs
  122.  
  123. #--just-added.
  124. #--just commented out, 'cause
  125. #--replaced by antergos repo
  126. #--[archlinuxfr]
  127. #--SigLevel = Optional TrustAll
  128. #--Server = http://repo.archlinux.fr/$arch
  129. #--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement