Advertisement
martadinata

pacman

Mar 8th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1.  
  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/proz --no-getch --use-port %u
  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. #XferCommand = /usr/bin/axel -o %o %u
  24. #XferCommand = /usr/bin/curl -C - -f %u > %o
  25. CleanMethod = KeepInstalled
  26. Architecture = x86_64
  27.  
  28. #GPG keyring
  29. # NOTE: None of this will work without running `pacman-key --init` first.
  30. # The compiled in default is equivalent to the following line. This requires
  31. # you to locally sign and trust packager keys using `pacman-key` for them to be
  32. # considered valid.
  33. #SigLevel = Optional TrustedOnly
  34. # If you wish to check signatures but avoid local sign and trust issues, use
  35. # the following line. This will treat any key imported into pacman's keyring as
  36. # trusted.
  37. #SigLevel = Optional TrustAll
  38. # For now, off by default unless you read the above.
  39. SigLevel = Never
  40.  
  41. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  42. IgnorePkg = gnome-system-monitor guvcview linux-ck-corex gnome-menus squid firefox firefox-i18n-id linux-ck-headers openjdk6 sakura
  43. IgnoreGroup =
  44.  
  45. NoUpgrade = linux-ck-corex squid linux-ck-headers openjdk6 gconf-editor sakura
  46. #NoExtract =
  47.  
  48. # Misc options (all disabled by default)
  49. #UseSyslog
  50. UseDelta
  51. TotalDownload
  52. #CheckSpace
  53. VerbosePkgLists
  54.  
  55. #
  56. # REPOSITORIES
  57. # - can be defined here or included from another file
  58. # - pacman will search repositories in the order defined here
  59. # - local/custom mirrors can be added here or in separate files
  60. # - repositories listed first will take precedence when packages
  61. # have identical names, regardless of version number
  62. # - URLs will have $repo replaced by the name of the current repo
  63. # - URLs will have $arch replaced by the name of the architecture
  64. #
  65. # Repository entries are of the format:
  66. # [repo-name]
  67. # Server = ServerName
  68. # Include = IncludePath
  69. #
  70. # The header [repo-name] is crucial - it must be present and
  71. # uncommented to enable the repo.
  72. #
  73.  
  74. # The testing repositories are disabled by default. To enable, uncomment the
  75. # repo name header and Include lines. You can add preferred servers immediately
  76. # after the header, and they will be used before the default mirrors.
  77.  
  78. [core]
  79. Include = /etc/pacman.d/mirrorlist
  80.  
  81. [extra]
  82. Include = /etc/pacman.d/mirrorlist
  83.  
  84. [community]
  85. Include = /etc/pacman.d/mirrorlist
  86.  
  87. [multilib]
  88. Include = /etc/pacman.d/mirrorlist
  89.  
  90. [repo-ck]
  91. Server = http://repo-ck.com/$arch
  92.  
  93. [mate]
  94. Server = http://packages.mate-desktop.org/repo/archlinux/$arch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement