Advertisement
dedanna1029

pacman.conf Arch Linux

Jul 2nd, 2011
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 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. HoldPkg = pacman glibc
  18. # If upgrades are available for these packages they will be asked for first
  19. SyncFirst = pacman
  20. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  21. #XferCommand = /usr/bin/curl -C - %u > %o
  22. XferCommand = /usr/bin/aria2c --allow-overwrite=true -c --file-allocation=none --log-level=error \-m2 --max-connection-per-server=2 --max-#file-not-found=5 --min-split-size=5M --no-conf \--remote-time=true --summary-interval=60 -t5 -d / -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 = zope-interface python2-zope-interface
  28. #IgnoreGroup =
  29.  
  30. #NoUpgrade =
  31. #NoExtract =
  32.  
  33. # Misc options (all disabled by default)
  34. #UseSyslog
  35. ShowSize
  36. #UseDelta
  37. TotalDownload
  38.  
  39. #
  40. # REPOSITORIES
  41. # - can be defined here or included from another file
  42. # - pacman will search repositories in the order defined here
  43. # - local/custom mirrors can be added here or in separate files
  44. # - repositories listed first will take precedence when packages
  45. # have identical names, regardless of version number
  46. # - URLs will have $repo replaced by the name of the current repo
  47. # - URLs will have $arch replaced by the name of the architecture
  48. #
  49. # Repository entries are of the format:
  50. # [repo-name]
  51. # Server = ServerName
  52. # Include = IncludePath
  53. #
  54. # The header [repo-name] is crucial - it must be present and
  55. # uncommented to enable the repo.
  56. #
  57.  
  58. # The testing repositories are disabled by default. To enable, uncomment the
  59. # repo name header and Include lines. You can add preferred servers immediately
  60. # after the header, and they will be used before the default mirrors.
  61.  
  62. #[testing]
  63. ## Add your preferred servers here, they will be used first
  64. #Include = /etc/pacman.d/mirrorlist
  65.  
  66. [core]
  67. # Add your preferred servers here, they will be used first
  68. Include = /etc/pacman.d/mirrorlist
  69.  
  70. [extra]
  71. # Add your preferred servers here, they will be used first
  72. Include = /etc/pacman.d/mirrorlist
  73.  
  74. #[community-testing]
  75. ## Add your preferred servers here, they will be used first
  76. #Include = /etc/pacman.d/mirrorlist
  77.  
  78. [community]
  79. # Add your preferred servers here, they will be used first
  80. Include = /etc/pacman.d/mirrorlist
  81.  
  82. #[archlinuxfr]
  83. #Server = http://repo.archlinux.fr/$arch
  84.  
  85. # An example of a custom package repository. See the pacman manpage for
  86. # tips on creating your own repositories.
  87. #[custom]
  88. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement