Advertisement
Guest User

/etc/pacman.conf

a guest
Jan 17th, 2013
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. #
  2. # /etc/pacman.conf
  3. #
  4.  
  5. #
  6. # GENERA 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. HoldPkg = pacman glibc
  17. # If upgrades are available for these packages they will be asked for first
  18. SyncFirst = pacman
  19. #XferCommand = /usr/bin/curl -C - -f %u > %0
  20. XferCommand = /usr/bin/wget --passive-ftp -c -0 %o %u
  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. # By default, pacman accepts packages signed by keys that its local keyring
  39. # trusts (see pacman-key and its man page), as well as unsigned packages.
  40. SigLevel = Never
  41.  
  42. # Note: You must run 'pacman-key --init' before first using pacman; the local
  43. # keyring can then be popultated with the keys of all official Arch Linux
  44. # packagers with 'pacman-key --populate archlinux'.
  45.  
  46. #
  47. # REPOSITORIES
  48. # - can be defined here or included from another file
  49. # - pacman will search repositories in the order definded here
  50. # - local/custom mirrors can be added here or in separate files
  51. # -repositories listed first will take precedence when packages
  52. # have identical names, regardless of version number
  53. # - URLs will have $repo replaced by the name of the current repo
  54. # - URLs will have $arch replaced by the name of the architecture
  55. #
  56. # Repository entries are of the format:
  57. # [repo-name]
  58. # Server = ServerName
  59. # Include = IncludePath
  60. #
  61. # The header [repo-name is crucial - it must be present and
  62. # uncommented to enable the repo.
  63. #
  64.  
  65. # The testing repositories are disabled by default. to enable, uncomment the
  66. # repo name header and Include lines. You can add preferred servers immediately
  67. # after the header, and they will be used before the default mirrors.
  68.  
  69. #[testing]
  70. #SigLevel = PackageRequired
  71. #Include = /etc/pacman.d/mirrorlist
  72.  
  73. [core]
  74. SigLevel = PackageRequired
  75. Include = /etc/pacman.d/mirrorlist
  76.  
  77. [extra]
  78. SigLevel = PackageRequired
  79. Include = /etc/pacman.d/mirrorlist
  80.  
  81. #[community-testing]
  82. #SigLevel = PackageRequired
  83. #Include = /etc/pacman.d/mirrorlist
  84.  
  85. [community]
  86. SigLevel = PackageRequired
  87. Include = /etc/pacman.d/mirrorlist
  88.  
  89. # If you wan tto run 32 bit applications on your X86_64 system,
  90. # enable the multilib repositories as required here.
  91.  
  92. #[multilib-testing]
  93. #SigLevel = PackageRequired
  94. #Include = /etc/pacman.d/mirrorlist
  95.  
  96. #[multilib]
  97. #SigLevel = PackageRequired
  98. #Include = /etc/pacman.d/mirrorlist
  99.  
  100. # An example of a custom package repository. see the pacman manpage for
  101. # tips on creating your own repositories.
  102. #[custom]
  103. #SigLevel = Optinal TrustAll
  104. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement