Changes between Version 2 and Version 3 of linux/coreos
- Timestamp:
- 2014/08/27 17:18:56 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/coreos
v2 v3 1 = CoreOSメモ = 2 1 3 CoreOSをPXEブートするときのpxelinux.cfgファイルのサンプル。cloud-configで指定したファイルでsshキーを埋め込むのがうまくいかなかったが、pxelinux.cfgに直接記載するとsshでログインできた。 2 4 … … 21 23 sshkey="ssh-rsa AAAAB3...Uew8OQ==" 22 24 }}} 25 26 == オートログイン == 27 CoreOSはデフォルトの設定では、コンソールからログインすることができない。オートログインの設定をすることで、ログインできるようになる。 28 29 30 {{{ 31 prompt 1 32 default menu.c32 33 34 menu title ==== CoreOS Menu ==== 35 label coreos 36 menu label ^ 1) CoreOS 37 kernel coreos/coreos_production_pxe.vmlinuz 38 append initrd=coreos/coreos_production_pxe_image.cpio.gz 39 cloud-config-url=http://192.168.1.1/pxe-cloud-config.yml 40 coreos.autologin=tty1 41 }}} 42