Advertisement
Guest User

Untitled

a guest
Apr 14th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1. pacman -Qs plasma-desktop
  2. local/plasma-desktop 6.0.3-1 (plasma)
  3. KDE Plasma Desktop
  4.  
  5.  
  6. $ pacman -Qs kio
  7. local/audiocd-kio 24.02.2-1 (kde-applications kde-multimedia)
  8. Kioslave for accessing audio CDs
  9. local/kdesdk-kio 24.02.2-1 (kde-applications kdesdk)
  10. KDE SDK KIO-Slaves
  11. local/kio 6.1.0-1 (kf6)
  12. Resource and network access abstraction
  13. local/kio-admin 24.02.2-1 (kde-applications kde-system)
  14. Manage files as administrator using the admin:// KIO protocol
  15. local/kio-extras 24.02.2-1 (kde-applications kde-network)
  16. Additional components to increase the functionality of KIO
  17. local/kio-fuse 5.1.0-3
  18. FUSE interface for KIO
  19. local/kio-gdrive 24.02.2-1 (kde-applications kde-network)
  20. KIO Slave to access Google Drive
  21. local/kio-zeroconf 24.02.2-1 (kde-applications kde-network)
  22. Network Monitor for DNS-SD services (Zeroconf)
  23. local/kio5 5.115.0-3 (kf5)
  24. Resource and network access abstraction
  25.  
  26.  
  27. $ cat /etc/pacman.conf
  28. #
  29. # /etc/pacman.conf
  30. #
  31. # See the pacman.conf(5) manpage for option and repository directives
  32.  
  33. #
  34. # GENERAL OPTIONS
  35. #
  36. [options]
  37. # The following paths are commented out with their default values listed.
  38. # If you wish to use different paths, uncomment and update the paths.
  39. #RootDir = /
  40. #DBPath = /var/lib/pacman/
  41. #CacheDir = /var/cache/pacman/pkg/
  42. #LogFile = /var/log/pacman.log
  43. #GPGDir = /etc/pacman.d/gnupg/
  44. #HookDir = /etc/pacman.d/hooks/
  45. HoldPkg = pacman glibc
  46. #XferCommand = /usr/bin/curl -L -C - -f -o %o %u
  47. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  48. #CleanMethod = KeepInstalled
  49. Architecture = auto
  50.  
  51. #IgnorePkg =
  52. #IgnorePkg =
  53. #IgnoreGroup =
  54.  
  55. #NoUpgrade =
  56. #NoExtract =
  57.  
  58. # Misc options
  59. #UseSyslog
  60. #Color
  61. #NoProgressBar
  62. CheckSpace
  63. #VerbosePkgLists
  64. ParallelDownloads = 4
  65.  
  66. # By default, pacman accepts packages signed by keys that its local keyring
  67. # trusts (see pacman-key and its man page), as well as unsigned packages.
  68. SigLevel = Required DatabaseOptional
  69. LocalFileSigLevel = Optional
  70. #RemoteFileSigLevel = Required
  71.  
  72. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  73. # keyring can then be populated with the keys of all official Arch Linux
  74. # packagers with `pacman-key --populate archlinux`.
  75.  
  76. #
  77. # REPOSITORIES
  78. # - can be defined here or included from another file
  79. # - pacman will search repositories in the order defined here
  80. # - local/custom mirrors can be added here or in separate files
  81. # - repositories listed first will take precedence when packages
  82. # have identical names, regardless of version number
  83. # - URLs will have $repo replaced by the name of the current repo
  84. # - URLs will have $arch replaced by the name of the architecture
  85. #
  86. # Repository entries are of the format:
  87. # [repo-name]
  88. # Server = ServerName
  89. # Include = IncludePath
  90. #
  91. # The header [repo-name] is crucial - it must be present and
  92. # uncommented to enable the repo.
  93. #
  94.  
  95. # The testing repositories are disabled by default. To enable, uncomment the
  96. # repo name header and Include lines. You can add preferred servers immediately
  97. # after the header, and they will be used before the default mirrors.
  98.  
  99. #[core-testing]
  100. #Include = /etc/pacman.d/mirrorlist
  101.  
  102. [core]
  103. Include = /etc/pacman.d/mirrorlist
  104.  
  105. #[extra-testing]
  106. #Include = /etc/pacman.d/mirrorlist
  107.  
  108. [extra]
  109. Include = /etc/pacman.d/mirrorlist
  110.  
  111. # If you want to run 32 bit applications on your x86_64 system,
  112. # enable the multilib repositories as required here.
  113.  
  114. #[multilib-testing]
  115. #Include = /etc/pacman.d/mirrorlist
  116.  
  117. [multilib]
  118. Include = /etc/pacman.d/mirrorlist
  119.  
  120. [archlinuxcn]
  121. ## or install archlinuxcn-mirrorlist-git and use the mirrorlist
  122. Include = /etc/pacman.d/archlinuxcn-mirrorlist
  123. ## or install archlinuxcn-mirrorlist-git and use the mirrorlist
  124. #Include = /etc/pacman.d/archlinuxcn-mirrorlist
  125.  
  126. #[archlinuxgr]
  127. #Server = https://archlinuxgr.tiven.org/archlinux/$arch
  128. #SigLevel = PackageOptional
  129.  
  130. # An example of a custom package repository. See the pacman manpage for
  131. # tips on creating your own repositories.
  132. #[custom]
  133. #SigLevel = Optional TrustAll
  134. #Server = file:///home/custompkgs
  135.  
  136.  
  137.  
  138.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement