・最初のログイン
・ユーザーの追加
----------------------------------
FreeBSD7.1のインストールの続き
■最初のログイン
サーバーに電源を入れるとログイン画面が表示されます。
FreeBSD/amd64 (tara) (ttyv0)
login:
と表示されます。
loginに"root"
Passwordにインストール時に設定したパスワードを入力します。
FreeBSD/amd64 (tara) (ttyv0)
login:root[Enter]
Password:*****[Enter]
Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 7.1-RELEASE (GENERIC) #0: Thu Jan 1 08:58:24 UTC 2009
Welcome to FreeBSD!
Before seeking technical support, please use the following resources:
o Security advisories and updated errata information for all releases are
at http://www.FreeBSD.org/releases/ - always consult the ERRATA section
for your release first as it's updated frequently.
o The Handbook and FAQ documents are at http://www.FreeBSD.org/ and,
along with the mailing lists, can be searched by going to
http://www.FreeBSD.org/search/. If the doc distribution has
been installed, they're also available formatted in /usr/share/doc.
If you still have a question or problem, please take the output of
`uname -a', along with any relevant error messages, and email it
as a question to the questions@FreeBSD.org mailing list. If you are
unfamiliar with FreeBSD's directory layout, please refer to the hier(7)
manual page. If you are not familiar with manual pages, type `man man'.
You may also use sysinstall(8) to re-enter the installation and
configuration utility. Edit /etc/motd to change this login announcement.
#■
このように表示され入力状態になります。
ログアウトするには
#exit
サーバーをシャットダウンするには
shutdown -p now
を使います。
#shutdown -p now
Shutdown NOW!
shutdown: [pid 2347]
#
*** FINAL System shutdown message from boon@kappa.local ***
System going down IMMEDIATELY
System shutdown time has arrived
と表示が出て電源が切れます。
■ユーザーの追加
次にユーザーを追加します。
サーバーの画面上で操作すると画面が小さく、操作がしにくく、
また操作した内容がすぐに消えてしまいとても苦痛に感じるはずです。
通常サーバーは、サーバー自体で操作するのではなく、遠隔操作して使用します。
そこでSSHというもので、Windowsなどの他のPCから接続し、コマンドを打ちながら
操作します。これだと画面に表示された内容をスクロールバックして再表示
でき、画面上でコピーペーストできるようになるので、格段と扱いやすくなります。
SSHを使用するためには、rootアカウントとは別にユーザーアカウントというものを
作り、それを使用してログインするようにします。
#adduser[Enter]
Username:daimazin[ユーザー名を入力する]
Full name:dai mazin[フルネームを入力する]
Uid (Leave empty for default):[Enter]
Login group [daimazin]:[Enter]
Login group is daimazin. Invite daimazin into other groups? []:wheel[重要wheel Enter]
Login class [default]:[Enter]
Shell (sh csh tcsh nologin) [sh]: tcsh[tcsh Enter]
Home directory [/home/daimazin]:[Enter]
Home directory permissions (Leave empty for default):[Enter]
Use password-based authentication? [yes]:[Enter]
Use an empty password? (yes/no) [no]:[Enter]
Use a random password? (yes/no) [no]:[Enter]
Enter password:*******[パスワードを設定します Enter]
Enter password again:*******[同じパスワードを入力します Enter]
Lock out the account after creation? [no]:
Username : daimazin
Password : *****
Full Name : dai mazin
Uid : 1002
Class :
Groups : daimazin
Home : /home/daimazin
Home Mode :
Shell : /bin/tcsh
Locked : no
OK? (yes/no): yes[yes Enter]
adduser: INFO: Successfully added (daimazin) to the user database.
Add another user? (yes/no): no[no Enter]
Goodbye!
これでdaimazinというアカウントが作成できました。
途中、グループにwheelというのを指定しましたが、これは、管理者グループで
このグループに参加させておくことで、インストールや設定などを行えるようになります。
ネットワークの設定へ続く
.
0 件のコメント:
コメントを投稿