저는 Debian을 사용하고 있으며 sudo 없이 블루투스를 활성화/비활성화하고 싶습니다.
블루투스는 제게는 잘 작동합니다. bluez
"blueman-applet"을 통해 관리합니다.
비활성화한 후 다시 활성화하려면 다음 명령을 실행해야 했습니다.
modprobe btusb
sudo systemctl enable bluetooth.service
sudo systemctl start bluetooth.service
블루투스 기능을 전환하는 스크립트를 만들 예정이므로 sudoers 파일( sudo visudo
)을 수정하여 다음 줄을 추가하는 것이 좋습니다.
USER ALL=(ALL) NOPASSWD: /sbin/modprobe btusb
USER ALL=(ALL) NOPASSWD: /bin/systemctl enable bluetooth.service
USER ALL=(ALL) NOPASSWD: /bin/systemctl start bluetooth.service
sudoers 파일을 편집하지 않고도 이 작업을 수행할 수 있는 다른 명령이 있는지 궁금합니다. 또한 이 아이디어가 안전한지 궁금합니다.