Advertisement
Guest User

Untitled

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