LoginSignup
4
5

More than 5 years have passed since last update.

vncserverで日本語入力

Last updated at Posted at 2014-12-05

debian9でibus-anthy

  • 日本語入力できた。(変換候補表示される)
sudo apt-get install -y \
  ibus-anthy lxpanel openbox tightvncserver
~/.vnc/xstartup
#!/bin/sh

xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1

export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export QT_IM_MODULE=ibus
ibus-daemon -d
lxpanel &
openbox &

なおibus-mozcでは日本語入力ができなかった。


debian9でuim-anthy

  • 日本語入力できた。(しかし変換候補は表示されない)
sudo apt-get install -y \
  uim-anthy uim-xim lxpanel openbox tightvncserver
~/.vnc/xstartup
#!/bin/sh

xrdb $HOME/.Xresources
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1

export GTK_IM_MODULE=uim
export XMODIFIERS=@im=uim
export QT_IM_MODULE=uim
uim-xim &
lxpanel &
openbox &

なおuim-mozcでは日本語入力ができなかった。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5