今更ですがユーザー追加系コマンド

hchunoユーザーを追加したい場合

rootでログイン。

#useradd hchuno

パスワードも設定。

#passwd hchuno
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.

※rootのパスワードも変更したい場合。

# passwd
Changing password for user root.
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.

rootによるログインを禁止する※2012-02-29追記

#vi /etc/ssh/sshd_config

PermitRootLogin yes

となっているところを、

PermitRootLogin no

に変更(コメントアウトされている場合は、コメントアウトを外す)。
その後、

# /etc/init.d/ssh restart

で設定終了。