Advertisement
Guest User

Untitled

a guest
Apr 17th, 2022
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 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. #GPGDir = /etc/pacman.d/gnupg/
  17. #HookDir = /etc/pacman.d/hooks/
  18. HoldPkg = pacman glibc manjaro-system
  19. # If upgrades are available for these packages they will be asked for first
  20. SyncFirst = manjaro-system archlinux-keyring manjaro-keyring
  21. #XferCommand = /usr/bin/curl -L -C - -f -o %o %u
  22. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  23. #CleanMethod = KeepInstalled
  24. #UseDelta = 0.7
  25. Architecture = auto
  26.  
  27. #IgnorePkg =
  28. #IgnorePkg =
  29. #IgnoreGroup =
  30.  
  31. #NoUpgrade =
  32. #NoExtract =
  33.  
  34. # Misc options
  35. #UseSyslog
  36. #Color
  37. #NoProgressBar
  38. # We cannot check disk space from within a chroot environment
  39. CheckSpace
  40. #VerbosePkgLists
  41. #ParallelDownloads = 5
  42.  
  43. # By default, pacman accepts packages signed by keys that its local keyring
  44. # trusts (see pacman-key and its man page), as well as unsigned packages.
  45. SigLevel = Never
  46. LocalFileSigLevel = Optional
  47. #RemoteFileSigLevel = Required
  48.  
  49. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  50. # keyring can then be populated with the keys of all official Manjaro Linux
  51. # packagers with `pacman-key --populate archlinux manjaro`.
  52.  
  53. #
  54. # REPOSITORIES
  55. # - can be defined here or included from another file
  56. # - pacman will search repositories in the order defined here
  57. # - local/custom mirrors can be added here or in separate files
  58. # - repositories listed first will take precedence when packages
  59. # have identical names, regardless of version number
  60. # - URLs will have $repo replaced by the name of the current repo
  61. # - URLs will have $arch replaced by the name of the architecture
  62. #
  63. # Repository entries are of the format:
  64. # [repo-name]
  65. # Server = ServerName
  66. # Include = IncludePath
  67. #
  68. # The header [repo-name] is crucial - it must be present and
  69. # uncommented to enable the repo.
  70. #
  71.  
  72. # The testing repositories are disabled by default. To enable, uncomment the
  73. # repo name header and Include lines. You can add preferred servers immediately
  74. # after the header, and they will be used before the default mirrors.
  75.  
  76. [core]
  77. SigLevel = PackageRequired
  78. Include = /etc/pacman.d/mirrorlist
  79.  
  80. [extra]
  81. SigLevel = PackageRequired
  82. Include = /etc/pacman.d/mirrorlist
  83.  
  84. [community]
  85. SigLevel = PackageRequired
  86. Include = /etc/pacman.d/mirrorlist
  87.  
  88. # If you want to run 32 bit applications on your x86_64 system,
  89. # enable the multilib repositories as required here.
  90.  
  91. [multilib]
  92. SigLevel = PackageRequired
  93. Include = /etc/pacman.d/mirrorlist
  94.  
  95. # An example of a custom package repository. See the pacman manpage for
  96. # tips on creating your own repositories.
  97. #[custom]
  98. #SigLevel = Optional TrustAll
  99. #Server = file:///home/custompkgs
  100.  
  101.  
  102. [home_ungoogled_chromium_Arch]
  103. SigLevel = Required TrustAll
  104. Server = https://download.opensuse.org/repositories/home:/ungoogled_chromium/Arch/$arch
  105.  
  106. [home_ungoogled_chromium_Arch]
  107. SigLevel = Required TrustAll
  108. Server = https://download.opensuse.org/repositories/home:/ungoogled_chromium/Arch/$arch
  109.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement