iwconfig를 찾을 수 없지만 무선 도구가 설치되었습니다.

iwconfig를 찾을 수 없지만 무선 도구가 설치되었습니다.

iwconfig를 사용하고 싶습니다.

무선 도구 설치:

tristan@debian:~$ sudo apt install wireless-tools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
wireless-tools is already the newest version.

iwconfig를 실행하려고 하면:

tristan@debian:~$ iwconfig
bash: iwconfig: command not found

보시다시피 iwconfig를 사용할 수 없습니다.

답변1

루트로 실행 iwconfig:

 su -c "iwconfig"

또는 관리 권한을 부여하고 user다음을 실행하십시오.

sudo iwconfig

권한이 없는 사용자의 경우 iwconfig 다음 줄을 다음 줄에 추가 할 수 있습니다 .bashrc.

export PATH="$PATH:/sbin"

고쳐 쓰다:

debian Buster iwconfig에서는 PATH에 /usr/sbin추가할 수 있습니다 ./usr/sbin

다음 줄을 추가하십시오./etc/environment

PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/sbin:/usr/local/sbin:/sbin"

그 다음에:

source /etc/environment

답변2

무선 도구를 다시 설치해 보십시오.

 sudo apt-get install --reinstall wireless-tools

답변3

root당신은 그것을 사용해야 합니다 iwconfig!

답변4

iwconfig어디에 놓였는지 확인하셨나요 dpkg -L wireless-tools?

일반 사용자로 설치했거나 누락 /sbin/되었을 /usr/sbin수 있습니다.$PATH

관련 정보