# journalctl
## TL;DR commands
Tail all logs with colors
```bash
journalctl --all --follow
```
Tail only logs from a specific service
```bash
journalctl --all --unit lexe-services.service
```
View all logs since last restart
```bash
journalctl --all --boot
```
Grep for ERROR logs
```bash
journalctl --all --boot -g "ERROR"
```