TELNETは、以下の要領で接続してください。
ホスト名 サーバー名 |
login.user.sakura.ne.jp (又は ftp.user.sakura.ne.jp ) |
どのドメインでも同じホストへ接続します ユーザー名でドメインは区別してます |
---|---|---|
ユーザー名 | お客様のアカウント名 | |
パスワード | お客様のパスワード | |
漢字コード | EUC | 例外あり |
改行コード | CR | または CR+LF |
UNIXコマンド等の詳細は、各種書籍・ホームページ等でお調べください。
実際にログインしたときの例。
FreeBSD (ftp.dns.ne.jp) (ttyp0) login: ユーザー名 ←ユーザー名を入力 Password: パスワード ←パスワードを入力(表示されません) Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 2.2.6-RELEASE (WWW) #0: Mon Jun 1 18:16:21 JST 1998 Welcome to FreeBSD! If the doc distribution has been loaded on this machine, the FreeBSD Handbook will be in file:/usr/share/doc/handbook and the FAQ in file:/usr/share/doc/FAQ Type /stand/sysinstall to re-enter the installation and configuration utility. % ←ログイン完了(プロンプト) |
% passwd Changing local password for username. Old password: 古いパスワード ←現在のパスワードを入力(表示されません) New password: 新しいパスワード ←変更するパスワードを入力(表示されません) Retype new password: 新しいパスワード ←確認のためもう一度 passwd: updating the database... passwd: done |
% quota Disk quotas for user username (uid 1000): Filesystem blocks quota limit grace files quota limit grace /home 3628 100000 102400 236 10000 10024 ↑ ↑ ↑ ↑ 使用中 最大 使用中 最大 [ディスク容量] [作成できるファイル数] |
% chmod +x test.cgi ←属性の変更コマンド % ls -l test.cgi ←ファイル一覧表示コマンド -rwxr-xr-x 1 abc56789 users 4760 Jun 1 00:00 test.cgi ↑ ここに「x」が表示されていれば実行属性ON |
% ./test.cgi ←実行(“./”で現在のディレクトリを指す) % /home/username/test.cgi ←実行(絶対パスで指定) % programs/test.cgi ←実行(相対パスで指定) |