packages from aur
This commit is contained in:
parent
06a47f2091
commit
06ebf2d54d
54
content/posts/2023/aur-get-installed-packages.md
Normal file
54
content/posts/2023/aur-get-installed-packages.md
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
---
|
||||||
|
title: "📦 Получить список установленных пакетов из AUR"
|
||||||
|
date: 2023-06-09T23:05:34+03:00
|
||||||
|
draft: false
|
||||||
|
tags: [archlinux, linux, tips]
|
||||||
|
---
|
||||||
|
|
||||||
|
## Метод №1
|
||||||
|
|
||||||
|
**Команда:**
|
||||||
|
|
||||||
|
```sh
|
||||||
|
pacman -Qemq
|
||||||
|
```
|
||||||
|
|
||||||
|
**Вывод:**
|
||||||
|
|
||||||
|
```text
|
||||||
|
arduino-ide-bin
|
||||||
|
cadzinho
|
||||||
|
chocolate-doom
|
||||||
|
cnijfilter2
|
||||||
|
cups-bjnp
|
||||||
|
defold
|
||||||
|
dropbox
|
||||||
|
fontforge-git
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
## Метод №2
|
||||||
|
|
||||||
|
Необходимо установить `expac` и репозитория `extra`.
|
||||||
|
|
||||||
|
**Команда:**
|
||||||
|
|
||||||
|
```sh
|
||||||
|
pacman -Qem | expac --timefmt='%F %T' '%n %v %l' - | sort -k3
|
||||||
|
```
|
||||||
|
|
||||||
|
**Вывод:**
|
||||||
|
|
||||||
|
```text
|
||||||
|
sublime-text-4 4.4143-4 2023-04-03 21:12:41
|
||||||
|
defold 1.4.4-1 2023-04-06 13:46:47
|
||||||
|
inochi-creator 0.7.4.1-1 2023-04-09 09:45:03
|
||||||
|
chocolate-doom 3.0.1-1 2023-04-11 00:39:31
|
||||||
|
qflipper-git 1.3.0-1 2023-04-17 20:32:34
|
||||||
|
fontforge-git 1:20220308.r60.g4f4907d95-1 2023-04-18 20:23:27
|
||||||
|
cups-bjnp 2.0.3-3 2023-04-26 23:20:46
|
||||||
|
arduino-ide-bin 2.1.0-1 2023-04-27 22:02:45
|
||||||
|
myoffice-standard-home-edition-bin 2.3.0-1 2023-05-01 20:59:37
|
||||||
|
cnijfilter2 6.40-1 2023-05-01 21:56:50
|
||||||
|
...
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user