본문 바로가기

컴퓨터와 인터넷

iptables command not found 해결방법

반응형

iptables command not found 해결방법


문제는 .bash_profile에 문제가 있어서 이다. 

잘못된 설정이 추가되어서 일수도 있다.


문제발생시 이렇게 해보자


cd ~

vi . bash_profile

이렇게 파일을 열어서 아래처럼 되어 있는 것에 sbin을 추가한다.


PATH=$PATH:$HOME/bin

to:

PATH=$PATH:$HOME/bin:/sbin


그리고나서 아래 명령을 실행한다.

source /root/.bash_profile 




반응형