0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

sudo su の違い

Posted at

## su
指定しユーザーに直接アクセスできる。その場合、パスワードを事前に知っておく必要あり

sudo su

su と同じ権限でコマンドを実行可能。パスワードは指定したユーザーを知らなくても問題なし。自分のアカウントのパスワードを入力することで、実現できるため。
また、ログは、/var/log/secureに残る

sudo -i

rootのパスワードを知らなくてもrootとしてコマンドを実行できる。一方で、/var/log/auth.logにログが残らない。

sudo -u

root以外のユーザーとしてコマンドを実行可能

sudo -i -u test1 test.sh 
sudo -i -u test1 mkdir -p /xxx/yyy/zzz.tsv
sudo -i -u test1 cp --preserve=timestamps test2.tsv /xxx/yyy/
sudo -i -u test1 cp -p test2.tsv /xxx/yyy/

mkdir -p

親ディレクトリが存在しない場合は作成する

cp --preserve=timestamps コピー先

タイムスタンプのみ保持して、コピー先にコピーする

cp -p コピー元 コピー先

オーナー、グループ、パーミッション、日付けを保持したままコピーする

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?