tag:crieit.net,2005:https://crieit.net/tags/packer/feed 「packer」の記事 - Crieit Crieitでタグ「packer」に投稿された最近の記事 2018-12-04T19:11:53+09:00 https://crieit.net/tags/packer/feed tag:crieit.net,2005:PublicArticle/14625 2018-12-04T19:11:53+09:00 2018-12-04T19:11:53+09:00 https://crieit.net/posts/Packer-CentOS7-VM-Pane-is-Dead PackerでCentOS7のVMを作ろうとしたらPane is Dead <p>PackerでCentOS7のVMを作ろうとして、以下のコードをgit pullして実行したら積んだお話</p> <p><a target="_blank" rel="nofollow noopener" href="https://github.com/boxcutter/centos">https://github.com/boxcutter/centos</a></p> <p>kickstart/centos7/ks.cfg のkeyboardをUSキーボードからJP106配列に変えたくて</p> <pre><code>- keyboard us + keyboard jp 106 </code></pre> <p>ってしたら、VMのGUI画面に「Pane is Dead」って出てフリーズした。</p> <p>正解はこうらしい。</p> <pre><code>keyboard --vckeymap=jp106 --xlayouts="jp106" </code></pre> fk2000