Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 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. HoldPkg = pacman glibc
  17. # If upgrades are available for these packages they will be asked for first
  18. SyncFirst = pacman
  19. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  20. #XferCommand = /usr/bin/curl -C - %u > %o
  21. #CleanMethod = KeepInstalled
  22. Architecture = auto
  23.  
  24. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  25. #IgnorePkg =
  26. #IgnoreGroup =
  27.  
  28. #NoUpgrade =
  29. #NoExtract =
  30.  
  31. # Misc options (all disabled by default)
  32. #UseSyslog
  33. #ShowSize
  34. #UseDelta
  35. #TotalDownload
  36.  
  37. #
  38. # REPOSITORIES
  39. # - can be defined here or included from another file
  40. # - pacman will search repositories in the order defined here
  41. # - local/custom mirrors can be added here or in separate files
  42. # - repositories listed first will take precedence when packages
  43. # have identical names, regardless of version number
  44. # - URLs will have $repo replaced by the name of the current repo
  45. # - URLs will have $arch replaced by the name of the architecture
  46. #
  47. # Repository entries are of the format:
  48. # [repo-name]
  49. # Server = ServerName
  50. # Include = IncludePath
  51. #
  52. # The header [repo-name] is crucial - it must be present and
  53. # uncommented to enable the repo.
  54. #
  55.  
  56. # The testing repositories are disabled by default. To enable, uncomment the
  57. # repo name header and Include lines. You can add preferred servers immediately
  58. # after the header, and they will be used before the default mirrors.
  59.  
  60. #[testing]
  61. #Include = /etc/pacman.d/mirrorlist
  62.  
  63. [core]
  64. Include = /etc/pacman.d/mirrorlist
  65.  
  66. [extra]
  67. Include = /etc/pacman.d/mirrorlist
  68.  
  69. #[community-testing]
  70. Include = /etc/pacman.d/mirrorlist
  71.  
  72. [community]
  73. Include = /etc/pacman.d/mirrorlist
  74.  
  75. # If you want to run 32 bit applications on your x86_64 system,
  76. # enable the multilib repository here.
  77. [multilib]
  78. Include = /etc/pacman.d/mirrorlist
  79.  
  80. # An example of a custom package repository. See the pacman manpage for
  81. # tips on creating your own repositories.
  82. #[custom]
  83. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement