sistematico

pacman.conf

Jan 23rd, 2012
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 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.  
  21. #XferCommand = /usr/bin/curl -C - -f %u > %o
  22. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  23.  
  24. # WGET Com controle de banda.
  25. #XferCommand = /usr/bin/wget -t 0 --limit-rate=2k --passive-ftp -c -O %o %u
  26.  
  27. # WGET Sem controle de banda.
  28. #XferCommand = /usr/bin/wget -t 0 --passive-ftp -c -O %o %u
  29.  
  30. # Aria2
  31. #XferCommand = /usr/bin/aria2c --allow-overwrite=true -c --file-allocation=none --log-level=error -m0 --max-connection-per-server=1 --max-file-not-found=5 --min-split-size=5M --no-conf --remote-time=true --summary-interval=60 -t 5 -d / -o %o %u
  32.  
  33. # AirPac
  34. #XferCommand = /usr/bin/airpac %u %o
  35.  
  36. #CleanMethod = KeepInstalled
  37. Architecture = auto
  38.  
  39. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  40. #IgnorePkg =
  41. #IgnoreGroup =
  42.  
  43. #NoUpgrade =
  44. #NoExtract =
  45.  
  46. # Misc options
  47. #UseSyslog
  48. #ShowSize
  49. #UseDelta
  50. #TotalDownload
  51. CheckSpace
  52. #VerbosePkgLists
  53.  
  54. # PGP signature checking
  55. # NOTE: None of this will work without running `pacman-key --init` first.
  56. # The compiled in default is equivalent to the following line. This requires
  57. # you to locally sign and trust packager keys using `pacman-key` for them to be
  58. # considered valid.
  59. #SigLevel = Optional TrustedOnly
  60. # If you wish to check signatures but avoid local sign and trust issues, use
  61. # the following line. This will treat any key imported into pacman's keyring as
  62. # trusted.
  63. #SigLevel = Optional TrustAll
  64. # For now, off by default unless you read the above.
  65. SigLevel = Never
  66.  
  67. #
  68. # REPOSITORIES
  69. # - can be defined here or included from another file
  70. # - pacman will search repositories in the order defined here
  71. # - local/custom mirrors can be added here or in separate files
  72. # - repositories listed first will take precedence when packages
  73. # have identical names, regardless of version number
  74. # - URLs will have $repo replaced by the name of the current repo
  75. # - URLs will have $arch replaced by the name of the architecture
  76. #
  77. # Repository entries are of the format:
  78. # [repo-name]
  79. # Server = ServerName
  80. # Include = IncludePath
  81. #
  82. # The header [repo-name] is crucial - it must be present and
  83. # uncommented to enable the repo.
  84. #
  85.  
  86. # The testing repositories are disabled by default. To enable, uncomment the
  87. # repo name header and Include lines. You can add preferred servers immediately
  88. # after the header, and they will be used before the default mirrors.
  89.  
  90. #[testing]
  91. #SigLevel = PackageRequired
  92. #Include = /etc/pacman.d/mirrorlist
  93.  
  94. [core]
  95. #SigLevel = PackageRequired
  96. Include = /etc/pacman.d/mirrorlist
  97.  
  98. [extra]
  99. #SigLevel = PackageOptional
  100. Include = /etc/pacman.d/mirrorlist
  101.  
  102. #[community-testing]
  103. #SigLevel = PackageRequired
  104. #Include = /etc/pacman.d/mirrorlist
  105.  
  106. [community]
  107. #SigLevel = PackageOptional
  108. Include = /etc/pacman.d/mirrorlist
  109.  
  110. [mate]
  111. Server = ftp://tridex.net/repo/archlinux/mate/$arch
  112.  
  113. # An example of a custom package repository. See the pacman manpage for
  114. # tips on creating your own repositories.
  115. #[custom]
  116. #SigLevel = Optional TrustAll
  117. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment