2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Raspberry Pi の日本語まわりで困ったら

Posted at

はじめに

Raspberry Pi(以下raspi)で
日本語の設定を適当にしたら面倒だったのでメモ。

環境

接続するMac

VNCサーバとして定番のTightVNCは別の機会に
MacからWindowsに接続する環境をそのまま使ってRemote Desktopを使っています。

スクリーンショット 2015-05-06 13.07.18.png

raspi環境

NOOBSからインストール時にlocale設定で
ja_JP.UTF-8 UTF-8をデフォルトにした時とかに・・・

参考

https://www.raspberrypi.org/documentation/installation/noobs.md
https://github.com/raspberrypi/noobs/releases

日本語が化けて読めない

ssh

日本語フォントが入っているMacのTerminalからsshで入る

(1)IPアドレスを確認する

$ ifconfig -a eth0 | grep inet

表示例)inet 192.168.0.65 netmask 0xffffff00 broadcast 192.168.0.255

(2)Macなどのリモート環境から取得したIPアドレスを設定してSSH接続する

$ ssh pi@[raspiのIPアドレス]
$ ssh pi@192.168.0.65

リモートデスクトップ

raspiに

$ sudo apt-get install xrdp
$ sudo reboot

日本語が入力できない

$ sudo apt-get install ibus-anthy
$ sudo reboot

デフォルトはControl + Spaceで切り替え

スクリーンショット 2015-05-06 12.02.58.png

スクリーンショット 2015-05-06 12.03.14.png

スクリーンショット 2015-05-06 12.54.51.png

さいごに

startxを使おうとしたらエラーがでたため
リモデでも使える?と調べたらあったので用途はあったみたいです。
Windows10とかでも有効になれば。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?