카테고리 없음
우분투 16.04에서 /var/log에서 로그파일로 인한 디스크 꽉차는 문제 분석중.
in2stormm
2016. 7. 22. 12:22
ubuntu 16.04를 설치하고 몇일 쓰는데 갑자기 디스크가 벌써 만땅이라고 표시되었다.
30기가 정도 Rootfs에 할당했는데 충분할 텐데... 그래서 확인해봤더니
/var/log에 kern.log syslog가 10기가 이상 차 있었다. ㅠㅠ
일단 커널로그의 원인은 아래 에러가 계속해서 쌓이는건데
[ 8480.388485] ACPI Error: Method parse/execution failed [\_GPE._L6F] (Node ffff8808544e04b0), AE_NOT_FOUND (20150930/psparse-542)
[ 8480.388487] ACPI Exception: AE_NOT_FOUND, while evaluating GPE method [_L6F]
이건 아래와 같이 해결할 수 있다고 한다.
http://jhshi.me/2015/11/14/acpi-error-method-parseexecution-failed-_gpe_l6f/index.html
보니까 나처럼 스카이레이크에 우분투 깔아서 쓰고 있었다. 음...최신 하드웨어라서 아직 준비가 안되었나 보다...^^;;
부팅할 때마다 시작 스크립트에서 지울까 하다가 검색해보니 해외에 다른 유저는 이렇게 해결했다.
http://askubuntu.com/questions/515146/very-large-log-files-what-should-i-do
|
I installed Ubuntu 16.04 today and I noticed the same problem.
However, I fixed this with busybox-syslogd. Yup! I've Just installed
that package and problem has been solved. :)
$ sudo apt-get install busybox-syslogd
After installing that package, reset syslog and kern.log :
sudo tee /var/log/syslog /var/log/kern.log </dev/null
I hope this simple solution is useful to other people around.
|
일단 이렇게 해놓고 지켜보고 있는 중이다.