fruworg.github.io/content/posts/run-nologin.md
2023-09-25 21:36:25 +03:00

21 lines
475 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Принудительное отключение создания файла nologin
description: Дедовским методом
date: 2023-04-06T18:25:00+05:00
tags: [linux]
---
## Комментим строку
В найденых файлах необходимо закомментить все строки с pam_nologin.so.
```shell
cd /etc/pam.d
nano $(grep -Rl "pam_nologin.so")
```
## Перезагружаем машину
```shell
init 6
```