From Sloppy Pheasant, 3 Years ago, written in Plain Text.
Embed Show code
  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. #HookDir     = /etc/pacman.d/hooks/
  18. HoldPkg     = pacman glibc
  19. #XferCommand = /usr/bin/curl -L -C - -f -o %o %u
  20. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  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
  32. #UseSyslog
  33. #Color
  34. #NoProgressBar
  35. CheckSpace
  36. #VerbosePkgLists
  37. #ParallelDownloads = 5
  38.  
  39. # By default, pacman accepts packages signed by keys that its local keyring
  40. # trusts (see pacman-key and its man page), as well as unsigned packages.
  41. SigLevel    = Required DatabaseOptional
  42. LocalFileSigLevel = Optional
  43. #RemoteFileSigLevel = Required
  44.  
  45. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  46. # keyring can then be populated with the keys of all official Artix Linux
  47. # packagers with `pacman-key --populate artix`.
  48.  
  49. #
  50. # REPOSITORIES
  51. #   - can be defined here or included from another file
  52. #   - pacman will search repositories in the order defined here
  53. #   - local/custom mirrors can be added here or in separate files
  54. #   - repositories listed first will take precedence when packages
  55. #     have identical names, regardless of version number
  56. #   - URLs will have $repo replaced by the name of the current repo
  57. #   - URLs will have $arch replaced by the name of the architecture
  58. #
  59. # Repository entries are of the format:
  60. #       [repo-name]
  61. #       Server = ServerName
  62. #       Include = IncludePath
  63. #
  64. # The header [repo-name] is crucial - it must be present and
  65. # uncommented to enable the repo.
  66. #
  67.  
  68. # The gremlins repositories are disabled by default. To enable, uncomment the
  69. # repo name header and Include lines. You can add preferred servers immediately
  70. # after the header, and they will be used before the default mirrors.
  71.  
  72. #[gremlins]
  73. #Include = /etc/pacman.d/mirrorlist
  74.  
  75. [system]
  76. Include = /etc/pacman.d/mirrorlist
  77.  
  78. [world]
  79. Include = /etc/pacman.d/mirrorlist
  80.  
  81. #[galaxy-gremlins]
  82. #Include = /etc/pacman.d/mirrorlist
  83.  
  84. [galaxy]
  85. Include = /etc/pacman.d/mirrorlist
  86.  
  87. # If you want to run 32 bit applications on your x86_64 system,
  88. # enable the lib32 repositories as required here.
  89.  
  90. #[lib32-gremlins]
  91. #Include = /etc/pacman.d/mirrorlist
  92.  
  93. [lib32]
  94. Include = /etc/pacman.d/mirrorlist
  95.  
  96. # An example of a custom package repository.  See the pacman manpage for
  97. # tips on creating your own repositories.
  98. #[custom]
  99. #SigLevel = Optional TrustAll
  100. #Server = file:///home/custompkgs
  101.  
  102. #[testing]
  103. #Include = /etc/pacman.d/mirrorlist-arch
  104.  
  105.  
  106. [extra]
  107. Include = /etc/pacman.d/mirrorlist-arch
  108.  
  109.  
  110. #[community-testing]
  111. #Include = /etc/pacman.d/mirrorlist-arch
  112.  
  113.  
  114. [community]
  115. Include = /etc/pacman.d/mirrorlist-arch
  116.  
  117.  
  118. #[multilib-testing]
  119. #Include = /etc/pacman.d/mirrorlist-arch
  120.  
  121.  
  122. [multilib]
  123. Include = /etc/pacman.d/mirrorlist-arch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
 
#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives
 
#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
#GPGDir      = /etc/pacman.d/gnupg/
#HookDir     = /etc/pacman.d/hooks/
HoldPkg     = pacman glibc
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
Architecture = auto
 
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =
 
#NoUpgrade   =
#NoExtract   =
 
# Misc options
#UseSyslog
#Color
#NoProgressBar
CheckSpace
#VerbosePkgLists
#ParallelDownloads = 5
 
# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.
SigLevel    = Required DatabaseOptional
LocalFileSigLevel = Optional
#RemoteFileSigLevel = Required
 
# NOTE: You must run `pacman-key --init` before first using pacman; the local
# keyring can then be populated with the keys of all official Artix Linux
# packagers with `pacman-key --populate artix`.
 
#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#   - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#
 
# The gremlins repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.
 
#[gremlins]
#Include = /etc/pacman.d/mirrorlist
 
[system]
Include = /etc/pacman.d/mirrorlist
 
[world]
Include = /etc/pacman.d/mirrorlist
 
#[galaxy-gremlins]
#Include = /etc/pacman.d/mirrorlist
 
[galaxy]
Include = /etc/pacman.d/mirrorlist
 
# If you want to run 32 bit applications on your x86_64 system,
# enable the lib32 repositories as required here.
 
#[lib32-gremlins]
#Include = /etc/pacman.d/mirrorlist
 
[lib32]
Include = /etc/pacman.d/mirrorlist
 
# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs
 
#[testing]
#Include = /etc/pacman.d/mirrorlist-arch
captcha