diff --git a/README.md b/README.md index 6db7442..f999e31 100644 --- a/README.md +++ b/README.md @@ -61,3 +61,17 @@ done chmod +x update_site.sh ./update_site.sh ``` + +## ubuntu 14.04 cannot see system log without root solution + +```bash +sudo groupadd -g 10000 systemd-journal +sudo usermod -a -G systemd-journal $USER + +sudo vi /etc/systemd/journald.conf +########### add or modify lines############ +Storage=persistent +########################################### +sudo systemctl restart systemd-journald +``` +