Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

VirtualBox上のvimから抜けられなくなった話

$
0
0

VirtualBox上のviから抜けられなくなった

背景

teratermからssh接続できなかったので、VirtualBox上でsshd_configいじっていたところ。。

事象

いつもの感覚で :q!しようとしたら

E20: Mark not set

と出て何やっても抜けられない

原因

キーボード配列がUSになってた

USでの : = shift + ;

再発防止

Linux上のキーボード+Locale設定

言語設定を日本語にする

[root@cent7 xorg.conf.d]# localectl set-locale LANG=ja_JP.utf8

キーボードを日本語にする

[root@cent7 xorg.conf.d]# localectl set-keymap jp106
[root@cent7 xorg.conf.d]# localectl set-keymap jp-OADG109A

管理ファイル実体

00-keyboard.conf

vi /etc/X11/xorg.conf.d/00-keyboard.conf

# Read and parsed by systemd-localed. It's probably wise not to edit this file
# manually too freely.
Section "InputClass"
        Identifier "system-keyboard"
        MatchIsKeyboard "on"
        Option "XkbLayout" "jp"
        Option "XkbModel" "jp106"
        Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

参考

【 localectl 】 システムのロケールやキーボードレイアウトを管理する 【 Linuxコマンドまとめ 】


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>