diff --git a/coreos/demo/example.fcc b/coreos/demo/example.fcc new file mode 100644 index 0000000..59c5576 --- /dev/null +++ b/coreos/demo/example.fcc @@ -0,0 +1,7 @@ +variant: fcos +version: 1.0.0 +passwd: + users: + - name: core + ssh_authorized_keys: + - ssh-rsa AAAA... diff --git a/coreos/install.md b/coreos/install.md index 2e2b693..8e3b7a7 100644 --- a/coreos/install.md +++ b/coreos/install.md @@ -24,15 +24,17 @@ passwd: ## 转换 FCC 为 Ignition ```bash -$ docker run -i --rm quay.io/coreos/fcct:v0.2.0 -pretty -strict < example.fcc > example.ign +$ docker run -i --rm quay.io/coreos/fcct:v0.5.0 --pretty --strict < example.fcc > example.ign ``` -## 启动虚拟机并安装 +## 挂载 ISO 启动虚拟机并安装 + +> 虚拟机需要分配 3GB 以上内存,否则会无法启动。 在虚拟机终端执行以下命令安装: ```bash -$ sudo coreos-installer install /dev/sda --ignition example.ign +$ sudo coreos-installer install /dev/sda --ignition-file example.ign ``` 安装之后重新启动即可使用。 @@ -44,3 +46,7 @@ $ ssh core@虚拟机IP $ docker --version ``` + +## 参考链接 + +* [官方文档](https://docs.fedoraproject.org/en-US/fedora-coreos/bare-metal/)