0
我的主目錄中有一個名爲「rescan.sh」的腳本。我創建了一個到腳本的符號鏈接並將其放在/ usr/local/bin中。該腳本執行以下操作:使用Visudo啓用無密碼sudo命令
#!/bin/bash
sudo sh -c "echo 1 > /sys/bus/pci/rescan"
我需要這個劇本讓我的讀卡器正常工作,我需要運行每次開機後此腳本(長的故事,不同的問題,不進入這個)。
我想實現的是該腳本在啓動時自動運行。我需要sudo權限來運行腳本,因此我需要一個無密碼sudo來執行此腳本。我可以用期望或visudo做到這一點。由於安全原因,我只考慮後者。我一直在嘗試visudo,沒有任何工作。我希望得到一些幫助。這裏是我的visudo命令:
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults editor=/usr/bin/vim
Defaults env_reset
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
%admin ALL=(ALL) NOPASSWD:/usr/local/bin/rescan
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
其他信息:
- 這個系統是我自己的個人筆記本電腦(我的根,須藤等)
- 運行Linux Mint的13肉桂64位
有人嗎?請幫忙? – Aeronaelius 2013-05-28 01:52:57