Advertisement
Guest User

Untitled

a guest
May 26th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 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 linux-headers linux-lts-headers
  20. #XferCommand = /usr/bin/curl -C - -f %u > %o
  21. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  22. #CleanMethod = KeepInstalled
  23. #UseDelta = 0.7
  24. UseDelta
  25. Architecture = auto
  26.  
  27. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  28. IgnorePkg = catalyst-hook catalyst-utils libkipi kdegraphics-gwenview kdegraphics-ksnapshot kipi-plugins
  29. #wine linux linux-headers virtualbox-host-modules linux-api-headers
  30. #IgnoreGroup =
  31.  
  32. #NoUpgrade =
  33. #NoExtract =
  34.  
  35. # Misc options
  36. #UseSyslog
  37. Color
  38. TotalDownload
  39. CheckSpace
  40. ILoveCandy
  41. #VerbosePkgLists
  42.  
  43. # By default, pacman accepts packages signed by keys that its local keyring
  44. # trusts (see pacman-key and its man page), as well as unsigned packages.
  45. #SigLevel = Optional TrustedOnly
  46.  
  47. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  48. # keyring can then be populated with the keys of all official Arch Linux
  49. # packagers with `pacman-key --populate archlinux`.
  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. [xorg113]
  75. Server = http://catalyst.wirephire.com/repo/xorg113/$arch
  76.  
  77. [catalyst-stable]
  78. Server = http://catalyst.wirephire.com/repo/catalyst/$arch
  79.  
  80. #[testing]
  81. #Include = /etc/pacman.d/mirrorlist
  82.  
  83. [core]
  84. Include = /etc/pacman.d/mirrorlist
  85.  
  86. [extra]
  87. Include = /etc/pacman.d/mirrorlist
  88.  
  89. #[community-testing]
  90. #Include = /etc/pacman.d/mirrorlist
  91.  
  92. [community]
  93. Include = /etc/pacman.d/mirrorlist
  94.  
  95. # If you want to run 32 bit applications on your x86_64 system,
  96. # enable the multilib repositories as required here.
  97.  
  98. #[multilib-testing]
  99. #SigLevel = PackageRequired
  100. #Include = /etc/pacman.d/mirrorlist
  101.  
  102. [multilib]
  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
  110.  
  111. [archlinuxfr]
  112. Server = http://repo.archlinux.fr/x86_64
  113.  
  114. [repo-ck]
  115. Server = http://repo-ck.com/$arch
  116.  
  117. #[aurbuild]
  118. #Server = http://abs.igus.lv/aurbuild/$arch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement