Created
September 27, 2012 15:17
-
-
Save takekawa/3794566 to your computer and use it in GitHub Desktop.
Change VNC keymap in openstack nova
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nova/virt/libvirt/config.py | |
515 def __init__(self, **kwargs): | |
516 super(LibvirtConfigGuestGraphics, self).__init__(root_name="graphics", | |
517 **kwargs) | |
518 | |
519 self.type = "vnc" | |
520 self.autoport = True | |
521 self.keymap = None <--- ここを "ja"にすればいいはず! | |
522 self.listen = None | |
参考: | |
https://access.redhat.com/knowledge/docs/ja-JP/Red_Hat_Enterprise_Linux/6/html/Virtualization_Administration_Guide/sect-Virtualization-Troubleshooting-Missing_Characters_Guest_Console_Japanese_Keyboard.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment