Created
March 8, 2014 15:39
-
-
Save KxNxT/9433657 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[root]# useradd hagehage //hagehageという名前でユーザを作成 | |
[root]# passwd hagehage //hagehageさんにパスワード設定します宣言 | |
:パスワード入力 //hagehageさんの新しいパスワードを2度入力 | |
:パスワード再入力 | |
[root]# usermod -G wheel hagehage //hagehageさんをwheelっていうユーザグループに所属させるらしい。suでrootとして操作出来るようにってことらしい。 | |
[root]# su - hagehage //ユーザを変更しておく | |
[hagehage]$ mkdir .ssh //不要かもしれないけど.sshディレクトリを作成しておいた |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment