Advertisement
Guest User

Untitled

a guest
Aug 17th, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 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 = /usr/bin/curl -C - -f %u > %o
  21. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  22. #CleanMethod = KeepInstalled
  23. Architecture = auto
  24.  
  25. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  26. #IgnorePkg =
  27. #IgnoreGroup =
  28.  
  29. #NoUpgrade =
  30. #NoExtract =
  31.  
  32. # Misc options
  33. #UseSyslog
  34. #UseDelta
  35. #TotalDownload
  36. CheckSpace
  37. #VerbosePkgLists
  38.  
  39. # By default, pacman accepts packages signed by keys that its local keyring
  40. # trusts (see pacman-key and its man page), as well as unsigned packages.
  41. #SigLevel = Optional TrustedOnly
  42.  
  43. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  44. # keyring can then be populated with the keys of all official Arch Linux
  45. # packagers with `pacman-key --populate archlinux`.
  46.  
  47. #
  48. # REPOSITORIES
  49. # - can be defined here or included from another file
  50. # - pacman will search repositories in the order defined here
  51. # - local/custom mirrors can be added here or in separate files
  52. # - repositories listed first will take precedence when packages
  53. # have identical names, regardless of version number
  54. # - URLs will have $repo replaced by the name of the current repo
  55. # - URLs will have $arch replaced by the name of the architecture
  56. #
  57. # Repository entries are of the format:
  58. # [repo-name]
  59. # Server = ServerName
  60. # Include = IncludePath
  61. #
  62. # The header [repo-name] is crucial - it must be present and
  63. # uncommented to enable the repo.
  64. #
  65.  
  66. # The testing repositories are disabled by default. To enable, uncomment the
  67. # repo name header and Include lines. You can add preferred servers immediately
  68. # after the header, and they will be used before the default mirrors.
  69.  
  70. #[testing]
  71. #SigLevel = PackageRequired
  72. #Include = /etc/pacman.d/mirrorlist
  73.  
  74. [core]
  75. SigLevel = PackageRequired
  76. Include = /etc/pacman.d/mirrorlist
  77.  
  78. [extra]
  79. SigLevel = PackageRequired
  80. Include = /etc/pacman.d/mirrorlist
  81.  
  82. #[community-testing]
  83. #SigLevel = PackageRequired
  84. #Include = /etc/pacman.d/mirrorlist
  85.  
  86. [community]
  87. SigLevel = PackageRequired
  88. Include = /etc/pacman.d/mirrorlist
  89.  
  90. # If you want to run 32 bit applications on your x86_64 system,
  91. # enable the multilib repositories as required here.
  92.  
  93. #[multilib-testing]
  94. #SigLevel = PackageRequired
  95. #Include = /etc/pacman.d/mirrorlist
  96.  
  97. [multilib]
  98. SigLevel = PackageRequired
  99. Include = /etc/pacman.d/mirrorlist
  100.  
  101. # An example of a custom package repository. See the pacman manpage for
  102. # tips on creating your own repositories.
  103. #[custom]
  104. #SigLevel = Optional TrustAll
  105. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement