1101 更新edb分区

This commit is contained in:
2022-11-01 19:01:46 +08:00
parent 521b96f319
commit c66c450f89
2 changed files with 106 additions and 0 deletions

View File

@ -136,6 +136,13 @@ journalctl -r -u service_name
journalctl -k
```
默认情况下 systemd-journald 服务只保存本次启动后的日志(重新启动后丢掉以前的日志)。此时 -b 选项是没啥用的。当我们把 systemd-journald 服务收集到的日志保存到文件中之后,就可以通过下面的命令查看系统的重启记录:
**查看系统启动列表**
```sh
journalctl --list-boots
```
**.查看系统本次启动的日志**
```sh