Advertisement
gespadas

pacman.conf

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