Advertisement
Emulatorman

my pacman.conf

Apr 21st, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 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. # PGP signature checking
  40. # NOTE: None of this will work without running `pacman-key --init` first.
  41. # The compiled in default is equivalent to the following line. This requires
  42. # you to locally sign and trust packager keys using `pacman-key` for them to be
  43. # considered valid.
  44. #SigLevel = Optional TrustedOnly
  45. # If you wish to check signatures but avoid local sign and trust issues, use
  46. # the following line. This will treat any key imported into pacman's keyring as
  47. # trusted.
  48. #SigLevel = Optional TrustAll
  49. # For now, off by default unless you read the above.
  50. SigLevel = Never
  51.  
  52. #
  53. # REPOSITORIES
  54. # - can be defined here or included from another file
  55. # - pacman will search repositories in the order defined here
  56. # - local/custom mirrors can be added here or in separate files
  57. # - repositories listed first will take precedence when packages
  58. # have identical names, regardless of version number
  59. # - URLs will have $repo replaced by the name of the current repo
  60. # - URLs will have $arch replaced by the name of the architecture
  61. #
  62. # Repository entries are of the format:
  63. # [repo-name]
  64. # Server = ServerName
  65. # Include = IncludePath
  66. #
  67. # The header [repo-name] is crucial - it must be present and
  68. # uncommented to enable the repo.
  69. #
  70.  
  71. # The testing repositories are disabled by default. To enable, uncomment the
  72. # repo name header and Include lines. You can add preferred servers immediately
  73. # after the header, and they will be used before the default mirrors.
  74.  
  75. #[libre-testing]
  76. #SigLevel = PackageRequired
  77. #Include = /etc/pacman.d/mirrorlist
  78.  
  79. [libre]
  80. #SigLevel = PackageRequired
  81. Include = /etc/pacman.d/mirrorlist
  82.  
  83. #[testing]
  84. #SigLevel = PackageRequired
  85. #Include = /etc/pacman.d/mirrorlist
  86.  
  87. [core]
  88. #SigLevel = PackageRequired
  89. Include = /etc/pacman.d/mirrorlist
  90.  
  91. [extra]
  92. #SigLevel = PackageOptional
  93. Include = /etc/pacman.d/mirrorlist
  94.  
  95. #[community-testing]
  96. #SigLevel = PackageRequired
  97. #Include = /etc/pacman.d/mirrorlist
  98.  
  99. [community]
  100. #SigLevel = PackageOptional
  101. Include = /etc/pacman.d/mirrorlist
  102.  
  103. [kernels]
  104. #SigLevel = PackageOptional
  105. Include = /etc/pacman.d/mirrorlist
  106.  
  107. [artistic]
  108. #SigLevel = PackageOptional
  109. Include = /etc/pacman.d/mirrorlist
  110.  
  111. [~emulatorman]
  112. #SigLevel = PackageOptional
  113. Include = /etc/pacman.d/mirrorlist
  114.  
  115. [~jorginho]
  116. #SigLevel = PackageOptional
  117. Include = /etc/pacman.d/mirrorlist
  118.  
  119. [gnu]
  120. #SigLevel = PackageOptional
  121. Include = /etc/pacman.d/mirrorlist
  122.  
  123. # If you want to run 32 bit applications on your x86_64 system,
  124. # enable the multilib repositories as required here.
  125.  
  126. #[multilib-testing]
  127. #SigLevel = PackageRequired
  128. #Include = /etc/pacman.d/mirrorlist
  129.  
  130. #[multilib]
  131. #SigLevel = PackageOptional
  132. #Include = /etc/pacman.d/mirrorlist
  133.  
  134. # Parabola also supports community projects and personal repositories, to find
  135. # them check out this wiki page: http://wiki.parabolagnulinux.org/Repositories
  136.  
  137. # An example of a custom package repository. See the pacman manpage for
  138. # tips on creating your own repositories.
  139. #[custom]
  140. #SigLevel = Optional TrustAll
  141. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement