Skip to content

Instantly share code, notes, and snippets.

@takekawa
Created September 27, 2012 15:17
Show Gist options
  • Save takekawa/3794566 to your computer and use it in GitHub Desktop.
Save takekawa/3794566 to your computer and use it in GitHub Desktop.
Change VNC keymap in openstack nova
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