Advertisement
Guest User

Untitled

a guest
May 1st, 2023
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 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 -C - -f %u > %o
  22. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  23. #CleanMethod = KeepInstalled
  24. #UseDelta = 0.7
  25. Architecture = auto
  26.  
  27. IgnorePkg = cherrytree whatsapp-for-linux palemoon-bin virtualbox-ext-oracle virtualbox-ext-vnc genymotion virtualbox-guest-utils masterpdfeditor-free seamonkey-i18n-pl waterfox-g4-bin brave-browser discord linphone-desktop-appimage kodi-addon-pvr-iptvsimple vivaldi chromium virtualbox signal-desktop palemoon-i18n-pl vivaldi-ffmpeg-codecs seatools ocenaudio-bin rocksndiamonds-data avidemux-cli avidemux-qt bauh seamonkey acroread skypeforlinux-stable librewolf-bin virtualbox-guest-iso crow-translate slimjet
  28.  
  29. #NoUpgrade =
  30. #NoExtract =
  31.  
  32. # Misc options
  33. #UseSyslog
  34. #Color
  35. #TotalDownload
  36. # We cannot check disk space from within a chroot environment
  37. CheckSpace
  38. #VerbosePkgLists
  39.  
  40. # By default, pacman accepts packages signed by keys that its local keyring
  41. # trusts (see pacman-key and its man page), as well as unsigned packages.
  42. SigLevel = Required DatabaseOptional
  43. LocalFileSigLevel = Optional
  44. #RemoteFileSigLevel = Required
  45.  
  46. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  47. # keyring can then be populated with the keys of all official Manjaro Linux
  48. # packagers with `pacman-key --populate archlinux manjaro`.
  49.  
  50. #
  51. # REPOSITORIES
  52. # - can be defined here or included from another file
  53. # - pacman will search repositories in the order defined here
  54. # - local/custom mirrors can be added here or in separate files
  55. # - repositories listed first will take precedence when packages
  56. # have identical names, regardless of version number
  57. # - URLs will have $repo replaced by the name of the current repo
  58. # - URLs will have $arch replaced by the name of the architecture
  59. #
  60. # Repository entries are of the format:
  61. # [repo-name]
  62. # Server = ServerName
  63. # Include = IncludePath
  64. #
  65. # The header [repo-name] is crucial - it must be present and
  66. # uncommented to enable the repo.
  67. #
  68.  
  69. # The testing repositories are disabled by default. To enable, uncomment the
  70. # repo name header and Include lines. You can add preferred servers immediately
  71. # after the header, and they will be used before the default mirrors.
  72.  
  73. [core]
  74. SigLevel = PackageRequired
  75. Include = /etc/pacman.d/mirrorlist
  76.  
  77. [extra]
  78. SigLevel = PackageRequired
  79. Include = /etc/pacman.d/mirrorlist
  80.  
  81. [community]
  82. SigLevel = PackageRequired
  83. Include = /etc/pacman.d/mirrorlist
  84.  
  85. # If you want to run 32 bit applications on your x86_64 system,
  86. # enable the multilib repositories as required here.
  87.  
  88. [multilib]
  89. SigLevel = PackageRequired
  90. Include = /etc/pacman.d/mirrorlist
  91.  
  92. # An example of a custom package repository. See the pacman manpage for
  93. # tips on creating your own repositories.
  94. #[custom]
  95. #SigLevel = Optional TrustAll
  96. #Server = file:///home/custompkgs
  97.  
  98. [herecura]
  99. # packages built against core
  100. Server = http://repo.herecura.eu/herecura/x86_64
  101.  
  102.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement