Advertisement
t0mm13b

pacman.conf

Jan 25th, 2014
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 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 = jre jdk
  27. #IgnoreGroup =
  28.  
  29. NoUpgrade = /usr/share/themes/Adwaita/metacity-1/metacity-theme-3.xml
  30. #NoExtract =
  31.  
  32. # Misc options
  33. #UseSyslog
  34. Color
  35. #TotalDownload
  36. CheckSpace
  37. #VerbosePkgLists
  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 = Required DatabaseOptional
  41. #SigLevel = Never
  42. LocalFileSigLevel = Optional
  43. #RemoteFileSigLevel = Required
  44.  
  45. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  46. # keyring can then be populated with the keys of all official Arch Linux
  47. # packagers with `pacman-key --populate archlinux`.
  48.  
  49. #
  50. # REPOSITORIES
  51. # - can be defined here or included from another file
  52. # pacman will search repositories in the order defined here
  53. # - local/custom mirrors can be added here or in separate files
  54. # - repositories listed first will take precedence when packages
  55. # have identical names, regardless of version number
  56. # - URLs will have $repo replaced by the name of the current repo
  57. # - URLs will have $arch replaced by the name of the architecture
  58. #
  59. # Repository entries are of the format:
  60. # [repo-name]
  61. # Server = ServerName
  62. # Include = IncludePath
  63. #
  64. # The header [repo-name] is crucial - it must be present and
  65. # uncommented to enable the repo.
  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. [core]
  72. SigLevel = PackageRequired
  73. Include = /etc/pacman.d/mirrorlist
  74.  
  75. [extra]
  76. SigLevel = PackageRequired
  77. Include = /etc/pacman.d/mirrorlist
  78.  
  79. #[community-testing]
  80. #SigLevel = PackageRequired
  81. #Include = /etc/pacman.d/mirrorlist
  82.  
  83. [community]
  84. SigLevel = PackageRequired
  85. Include = /etc/pacman.d/mirrorlist
  86.  
  87. # If you want to run 32 bit applications on your x86_64 system,
  88. # enable the multilib repositories as required here.
  89.  
  90. #[multilib-testing]
  91. #SigLevel = PackageRequired
  92. #Include = /etc/pacman.d/mirrorlist
  93.  
  94. [multilib]
  95. #SigLevel = PackageOptional
  96. Include = /etc/pacman.d/mirrorlist
  97.  
  98. # An example of a custom package repository. See the pacman manpage for
  99. # tips on creating your own repositories.
  100. #[custom]
  101. #SigLevel = Optional TrustAll
  102. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement