Advertisement
Guest User

pacman.conf

a guest
Jan 16th, 2012
708
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/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. # If upgrades are available for these packages they will be asked for first
  19. SyncFirst = pacman
  20. XferCommand = exec /usr/bin/pacget %u %o
  21. #CleanMethod = KeepInstalled
  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. #UseDelta
  34. #TotalDownload
  35. CheckSpace
  36. #VerbosePkgLists
  37.  
  38. # PGP signature checking
  39. # NOTE: None of this will work without running `pacman-key --init` first.
  40. # The compiled in default is equivalent to the following line. This requires
  41. # you to locally sign and trust packager keys using `pacman-key` for them to be
  42. # considered valid.
  43. SigLevel = Optional TrustedOnly
  44. # If you wish to check signatures but avoid local sign and trust issues, use
  45. # the following line. This will treat any key imported into pacman's keyring as
  46. # trusted.
  47. #SigLevel = Required TrustAll
  48. # For now, off by default unless you read the above.
  49. #SigLevel = Never
  50.  
  51. #
  52. # REPOSITORIES
  53. # - can be defined here or included from another file
  54. # - pacman will search repositories in the order defined here
  55. # - local/custom mirrors can be added here or in separate files
  56. # - repositories listed first will take precedence when packages
  57. # have identical names, regardless of version number
  58. # - URLs will have $repo replaced by the name of the current repo
  59. # - URLs will have $arch replaced by the name of the architecture
  60. #
  61. # Repository entries are of the format:
  62. # [repo-name]
  63. # Server = ServerName
  64. # Include = IncludePath
  65. #
  66. # The header [repo-name] is crucial - it must be present and
  67. # uncommented to enable the repo.
  68. #
  69.  
  70. # The testing repositories are disabled by default. To enable, uncomment the
  71. # repo name header and Include lines. You can add preferred servers immediately
  72. # after the header, and they will be used before the default mirrors.
  73.  
  74. #[testing]
  75. #SigLevel = PackageRequired
  76. #Include = /etc/pacman.d/mirrorlist
  77.  
  78. [core]
  79. #SigLevel = PackageRequired
  80. Include = /etc/pacman.d/mirrorlist
  81.  
  82. [extra]
  83. #SigLevel = PackageOptional
  84. Include = /etc/pacman.d/mirrorlist
  85.  
  86. #[community-testing]
  87. #SigLevel = PackageRequired
  88. #Include = /etc/pacman.d/mirrorlist
  89.  
  90. [community]
  91. #SigLevel = PackageOptional
  92. Include = /etc/pacman.d/mirrorlist
  93.  
  94. # If you want to run 32 bit applications on your x86_64 system,
  95. # enable the multilib repositories as required here.
  96.  
  97. #[multilib-testing]
  98. #SigLevel = PackageRequired
  99. #Include = /etc/pacman.d/mirrorlist
  100.  
  101. [multilib]
  102. #SigLevel = PackageOptional
  103. Include = /etc/pacman.d/mirrorlist
  104.  
  105. # An example of a custom package repository. See the pacman manpage for
  106. # tips on creating your own repositories.
  107. #[custom]
  108. #SigLevel = Optional TrustAll
  109. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement