Last active
December 16, 2015 10:18
-
-
Save abarth500/5418611 to your computer and use it in GitHub Desktop.
[情報科学科実験I] ユーザを追加する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ユーザを追加する | |
sudo useradd yokoyama | |
#ユーザにパスワードを付与する | |
sudo passwd yokoyama | |
#ここで(パスワードを二回入力する) | |
#ユーザがsudo出来るようにする | |
sudo usermod -G wheel -a yokoyama |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment