回答:
su
またはsudo
でそれを行うことができますが、両方は必要ありません。
sudo -H -u otheruser bash -c 'echo "I am $USER, with uid $UID"'
関連する部分man sudo
:
-H The -H (HOME) option requests that the security policy set
the HOME environment variable to the home directory of the
target user (root by default) as specified by the password
database. Depending on the policy, this may be the default
behavior.
-u user The -u (user) option causes sudo to run the specified
command as a user other than root. To specify a uid
instead of a user name, use #uid. When running commands as
a uid, many shells require that the '#' be escaped with a
backslash ('\'). Security policies may restrict uids to
those listed in the password database. The sudoers policy
allows uids that are not in the password database as long
as the targetpw option is not set. Other security policies
may not support this.
su
rootの場合、パスワードを入力せずにユーザーを切り替えることしかできません。カレブの答えを見る
パスワードなしで/etc/pam.d/su
許可するようにファイルを変更できsu
ます。この回答をご覧ください。
あなたは下記をご認証ファイルを変更した場合、グループの一部であったすべてのユーザーがsomegroup
できたsu
ためにotheruser
、パスワードなし。
auth sufficient pam_rootok.so
auth [success=ignore default=1] pam_succeed_if.so user = otheruser
auth sufficient pam_succeed_if.so use_uid user ingroup somegroup
次に、ターミナルからテストします
rubo77@local$ su otheruser -c 'echo "hello from $USER"'
hello from otheruser
sudoの代わりにsuを使用する場合は、次のようなものを使用できると思います。
su - <username> -c "<commands>"
-
指定されたユーザーのログインをシミュレートします-c
コマンドを実行したいことを伝えます追伸 残念ながら、この方法でrvmを使用してrubyをインストールすることはできませんが、おそらく関係ありません。
sudo
最初に追加する必要がありました。それ以外の場合は、パスワードの入力を求められました。
sudo
。sudoを使用すると動作します。たとえばsudo su - www-data -c "touch /tmp/test"
、www-dataとしてファイルを正常に作成しました
上記の答えは私にとって本当に便利ですが、実際の質問に答えるために...
スクリプトがそのユーザーの下で実際に実行されていることをどのように確認できますか?-
つかいます:
ps -ef | grep <command-name>
出力には、スクリプトとそれを実行する実際のユーザーが含まれている必要があります。MACなどのBSDのようなシステムの人々は、次のような情報を見つけることができます。
ps aux | grep <command-name>
su
か?