리눅스 사용 중 일부 명령어를 실행하면?아래와 같은 에러메시지가 나오면서 실행이 되지 않는 경우가 있다.
명령어: /proc is not mounted, required for output data
예를 들어 top 명령어 실행시 top 명령 실행시
top: /proc is not mounted, required for output data 에러가 발생할 수 있다.
이런 경우
/proc의 소유자/권한을 변경해주면 된다.
root로 접속 후 아래 명령어 실행주면 끝!
chown root:root /proc
chmod 555 /proc
참 쉽죠!
댓글