====== ネットワークとSSHの設定 ======
===== ネットワークの設定 =====
$ sudo vi /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
LANケーブルをつないだ状態でインストールすると、ネットワーク設定がDHCPになっています。\\
このままでは都合が悪いので、以下のように設定し固定IPにします。
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.3.102
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.255
gateway 192.168.3.1
dns-nameservers 192.168.3.1
各値は自分の環境に合わせ設定すること。
設定が終わったら再起動。
$ sudo reboot now
===== PuTTYでリモートログイン =====
SSHクライアントを使えば、Windows等から、ubuntuサーバにログインし操作することが可能です。\\
ここでは[[http://yebisuya.dip.jp/Software/PuTTY/|PuTTY ごった煮版]]を使います。\\
まず、PuTTYの最新版をダウンロードし適当なフォルダーに解凍し実行します。\\
\\
ホスト名にサーバーのIPアドレス、セッション一覧に接続名を入力します。\\
{{..:ubuntu026.png}}\\
\\
「ウィンドウ」「変換」の文字コードの設定で「UTF-8/Auto-Detect Japanese」を選びます。\\
設定が終わったら「セッション」を選び「保存」ボタンを押し設定を保存します。\\
{{..:ubuntu027.png}}\\
\\
セッションの一覧から接続名をダブルクリックするか、接続名を選び「開く」で接続します。\\
最初の一回目のみ以下のウィンドウが開きますので、「はい」を選びます。\\
{{..:ubuntu028.png}}\\
\\
ログイン画面が出れば成功です。\\
{{..:ubuntu029.png}}\\