いきなりですが、これは一般的ではないのであしからずw
ほぼ自分用メモ的な感じです。
Aというサーバに既にユーザ情報が作成されているが、
新しく増やしたBというサーバに同じ設定をしたいなーという感じのときに
たまにしかやらない作業なのでたいてい忘れてるからメモ。
大まかな流れ
該当ユーザをhogeさんとします
実作業
/etc/passwdと/etc/shadowのコピペ
これについてはそのままなので割愛します
この辺を読んでみてください
http://itpro.nikkeibp.co.jp/article/COLUMN/20080219/294153/
鍵の作成
ここ↓参考にしました
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/432makesshkey.html
※※※鍵の作成※※※ #sudo su hoge #cd /home/hoge #mkdir .ssh #ssh-keygen -t rsa ←RSA暗号方式の鍵を作成 Generating public/private rsa key pair. Enter file in which to save the key (/home/hoge/.ssh/id_rsa): ←Enterとか押す Enter passphrase (empty for no passphrase): ←パスワードを入力 Enter same passphrase again: ←パスワードを入力 Your identification has been saved in /home/kuroki/.ssh/id_rsa. Your public key has been saved in /home/kuroki/.ssh/id_rsa.pub. The key fingerprint is: 20:7f:f1:e2:a6:6f:6b:5a:c0:d2:85:12:22:24:44:4b hoge@test.co.jp ※※※鍵の確認※※※ #cd .ssh #ls -al -rw------- 1 hoge group 1743 11月 28 16:18 id_rsa ←秘密鍵 -rw-r--r-- 1 hoge group 399 11月 28 16:18 id_rsa.pub ←公開鍵 ※※※公開鍵の名前の変更とパーミッションの変更※※※ #cd .. #cat ~/.ssh/*.pub > ~/.ssh/authorized_keys #chmod 644 ~/.ssh/authorized_keys