Linux教室は通常、教室内の端末を利用しますが、一部機器についてはリモートで利用できます。

1. 接続できるサーバー

a. Linux自習用サーバー:26tra1.spc.comp.tmu.ac.jp

Linux教室端末と同じアプリケーションが導入され、学内研究室などからリモートで利用できます。
(学外からは利用不可)

 

Linux教室の授業履修者が利用したい場合はLinux教室自習用サーバー利用申請を提出してください。
Linux教室の授業担当教員は 申請なし で利用できます。

2. 接続方法

リモート接続するにはセキュリティ上、非暗号化通信の telent や ftp 利用できません。
暗号化通信に対応した ssh(scp,sftp) を利用します。

 

また、教室端末のようなグラフィカル画面でなく、基本は文字だけのCUI(Character User Interface)になります。
以下にLinuxのコマンドターミナルからサーバーに接続する例を示します。
Windowsでは TeraTerm や Putty などのアプリケーションを利用してください。

a. SSHでの接続例

ssh -l USERID 26tra1.spc.comp.tmu.ac.jp
 

The authenticity of host '26tra1.spc.comp.tmu.ac.jp (aaa.bbb.ccc.ddd)' can't be established. 
RSA key fingerprint is
**:**:**:**:**:**:**:**:**:**:**:**:**:**:**:**.
Are you sure you want to continue connecting (yes/no)? yes 初めてログインする場合は入力する 
Warning: Permanently added '26tra1.spc.comp.tmu.ac.jp' (RSA) to the list of known hosts.

USERID@'26tra1.spc.comp.tmu.ac.jp's password: ******** パスワードを入力
 

USERID@26tra1:~$

b. SCPでのリモートコピー例

scp sample.c 26tra1.spc.comp.tmu.ac.jp:/tmp/sample.c
 

The authenticity of host '26tra1.spc.comp.tmu.ac.jp (aaa.bbb.ccc.ddd)' can't be established. 
RSA key fingerprint is
**:**:**:**:**:**:**:**:**:**:**:**:**:**:**:**.
Are you sure you want to continue connecting (yes/no)? yes 初めてログインする場合は入力する 

Warning: Permanently added '26tra1.spc.comp.tmu.ac.jp' (RSA) to the list of known hosts.
 

USERID@'26tra1.spc.comp.tmu.ac.jp's password: ******** パスワードを入力
sample.c 100% 38 0.0KB/s 00:00

 

$

c. SFTPでの接続例

sftp USERID@26tra1.spc.comp.tmu.ac.jp
 

The authenticity of host 'sftpcr.spc.comp.tmu.ac.jp (aaa.bbb.ccc.ddd)' can't be established. 
RSA key fingerprint is
**:**:**:**:**:**:**:**:**:**:**:**:**:**:**:**.
Are you sure you want to continue connecting (yes/no)? yes 初めてログインする場合は入力する 

Warning: Permanently added '26tra1.spc.comp.tmu.ac.jp' (RSA) to the list of known hosts.

USERID@26tra1.spc.comp.tmu.ac.jp's password: ******** パスワード入力
Connected to sftpcr.spc.comp.tmu.ac.jp.

sftp>