빨간색 에러들

[ubuntu]] echo 3 > /proc/sys/vm/drop_caches" - Permission denied as root

vhxpffltm 2021. 9. 13. 21:17

Ubuntu에서 메모리가 터지는거 같아 메모리 캐시를 삭제해보고자 했다.

 

메모리캐시를 지우는 방법은 3가지 정도가 있는데 싹다 많은걸 지워버렸다.

 

1. Clear PageCache only.
# echo 1 > /proc/sys/vm/drop_caches

2. Clear dentries and inodes.
# echo 2 > /proc/sys/vm/drop_caches

 

3. Clear PageCache, dentries and inodes.

# echo 3 > /proc/sys/vm/drop_caches 

 

하지만, 허가 거부 (Permissuib denied as root) 에러가 발생할 수 있는데

이를 sudo 명령어를 사용해도 적용되지 않는 문제가 있다.

 

그래서 계정을 관리자로 변경하여 해당 명령어들을 실행할 수 있다.

필자는  su - 명령어를 자주 사용한다.

 

https://askubuntu.com/questions/91598/how-do-i-login-as-root

 

How do I login as root?

I want to login as root, but when I enter sudo -s and enter password, this message is shown: "you are not in sudoers file", and when I enter su and enter password, this is shown: "authenticat...

askubuntu.com