Answers:
该工具将以图形方式显示您当前的布局:
gkbd-keyboard-display -g 1
这是安装过程中用于选择键盘布局的命令:
dpkg-reconfigure keyboard-configuration
但是要使其自动检测键盘,您需要在中更改设置dpkg-reconfigure keyboard-configuration
。不过,我不确定该设置什么。
要更改设置,echo <packagename> <setting> <type> <value> | debconf-set-selections
。例如:
echo "keyboard-configuration console-setup/ask_detect boolean true" | debconf-set-selections
希望这对您有帮助。
用于在Ubuntu安装过程中检测键盘布局的程序是称为“ Ubiquity”的ubuntu安装程序的一部分。
您可以在Launchpad项目页面上找到源代码,或使用以下命令下载Ubuntu版本中使用的发行版:
apt-get source ubiquity
您可以在以下代码中导航:https : //git.launchpad.net/ubuntu/+source/ubiquity/tree/?h=ubuntu/bionic-devel
带有按钮“检测键盘布局”的GTK GUI定义在此处:https : //git.launchpad.net/ubuntu/+source/ubiquity/tree/gui/gtk/stepKeyboardConf.ui 搜索“检测键盘布局”,您会发现“ deduce_layout”
我不确定100%,但是我认为可以进行键盘检测的代码在这里:https : //git.launchpad.net/ubuntu/+source/ubiquity/tree/ubiquity/plugins/ubi-console-setup.py 搜索“ deduce_layout”,您会发现“ calculate_keymap_button”(calculate_clicked)等。
此处:https : //git.launchpad.net/ubuntu/+source/ubiquity/tree/ubiquity/frontend/gtk_components/keyboard_query.py 搜索“ ubiquity / text / keyboard_query_title”。
另请参阅此网页,以更轻松地浏览代码:http : //nullege.com/codes/search/ubiquity.keyboard_detector.KeyboardDetector
希望对您有所帮助。
dpkg-reconfigure
不是图形设置。