我如何在一台机器上安装CoreOS作为主机操作系统?
我已阅读“Installing CoreOS to Disk”并从Debian和CentOS live CD运行coreos-install脚本,但两者似乎都错过了脚本需要加载配置文件的lsblk命令的-p参数.即使在我更新了util-linux之后,它仍然无法正常工作.
使用Live CD是正确的方法吗?在我的情况下,PXE不是一个选项.
解决方案:最后我使用了最新的Arch linux live cd,运行正常.
$wget https://raw.githubusercontent.com/coreos/init/master/bin/coreos-install $sudo bash coreos-install -d /dev/sda $mkdir rootfs $mount -t btrfs -o subvol=root /dev/sda9 rootfs #sda9 is the default root partition $mkdir -p rootfs/var/lib/coreos-install $wget http://bit.ly/abcd #the location of your cloud config file $mv abcd rootfs/var/lib/coreos-install/user_data
解决方法
在util-linux 2.24中看起来-p(交替–paths)是
added.您是否尝试过使用该版本的实时系统?