Changes between Version 2 and Version 3 of linux/coreos


Ignore:
Timestamp:
2014/08/27 17:18:56 (10 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/coreos

    v2 v3  
     1= CoreOSメモ = 
     2 
    13CoreOSをPXEブートするときのpxelinux.cfgファイルのサンプル。cloud-configで指定したファイルでsshキーを埋め込むのがうまくいかなかったが、pxelinux.cfgに直接記載するとsshでログインできた。 
    24 
     
    2123           sshkey="ssh-rsa AAAAB3...Uew8OQ==" 
    2224}}} 
     25 
     26== オートログイン == 
     27CoreOSはデフォルトの設定では、コンソールからログインすることができない。オートログインの設定をすることで、ログインできるようになる。 
     28 
     29 
     30{{{ 
     31prompt 1 
     32default menu.c32 
     33 
     34menu title ==== CoreOS Menu ==== 
     35label 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