IPアドレスの設定例
Windows PC:192.168.0.2
Ubuntu PC:192.168.0.3
1. Xmingをインストールします
C:\Program Files\Xmingにある「X0.host」ファイルに Windows PC のIPアドレスを追加します。localhost
192.168.0.3
2. TeraTermをインストールします
3. Ubuntu に ssh サーバーをインストールします
sudo apt-get install openssh-server
Homeにスクリプトを用意します。このスクリプトで日本語が入力できます。
----------------------------------------------------
#!/bin/bash
DISPLAY="192.168.0.2:0.0"
export DISPLAY
export XMODIFIERS=@im=ibus
export GTK_IM_MODULE=xim
export QT_IM_MODULE=ibus
#ibus-daemon &
eval `dbus-launch --sh-syntax`
gconftool-2 --spawn
gnome-terminal &
nautilus --no-desktop --browser /usr/share/applications &
----------------------------------------------------
Windows PCのXmingを起動しておきます。
TeraTermでUbuntu PCにsshで接続します。
./スクリプトファイル名 でスクリプトを実行します。