Compare commits

...

5 Commits

Author SHA1 Message Date
dcef7fcb06
Update pgp-commands.md 2025-01-12 22:11:39 +01:00
7308b88594
Create swap-create.md 2025-01-12 22:10:47 +01:00
976135d17e
Create pgp-commands.md 2025-01-12 22:01:41 +01:00
52a2785251
Add files via upload 2025-01-12 15:56:33 +01:00
ebdd2bbed7
Delete static/fruworg.jpg 2025-01-12 15:56:23 +01:00
3 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,28 @@
---
title: Памятка по PGP/GPG
description: gnupg - export, import and renew
date: 2025-01-12T22:00:00+01:00
tags: [linux, pgp]
---
## Экспорт
```bash
gpg -a --export-secret-keys > private.asc
gpg --export-ownertrust > trust.txt
```
## Импорт
```bash
gpg --import private.asc
gpg --import public.asc
gpg --import-ownertrust trust.txt
```
## Продление
```bash
gpg --list-keys
gpg --quick-set-expire <fingerprint> 1y
gpg --export <your@ema.il> | curl -T - https://keys.openpgp.org
```

View File

@ -0,0 +1,31 @@
---
title: Создание SWAP-файла
description: Файл подкачки в GNU/Linux
date: 2025-01-12T22:10:00+01:00
tags: [linux]
---
## Создания
Размер файла подкачки
RAM `<= 2GB`, SWAP `x2`\
RAM `2GB - 8GB`, SWAP `x1`\
RAM `>= 8GB`, SWAP `>= 4GB`
```shell
fallocate -l <size-in-gb>G /swap
chmod 600 /swap
mkswap /swap
swapon /swap
```
## Автомонтирование
В конец `/etc/fstab` необходимо добавить следующую строку
```python
/swap none swap sw 0 0
```
И проверим корректность записи
```shell
mount -a
```

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 764 KiB