Thin-Client

在 HP 瘦客戶端上安裝 CoreOS

  • September 21, 2015

我正在嘗試在 HP 瘦客戶端上安裝 CoreOS,但無法格式化快閃記憶體驅動器。我已經按照https://github.com/jriguera/coreos-usb-creator創建了 USB 引導- 然後我可以登錄到瘦客戶端,但是當我嘗試安裝 CoreOS 時,我收到以下錯誤

khine@coreos /tmp $ sudo su
bash-4.2# coreos-install -d /dev/sda -C stable -c cloud-config.yml
Checking availability of "local-file"
Fetching user-data from datasource of type "local-file"
Downloading the signature for http://stable.release.core-os.net/amd64-usr/766.3.0/coreos_production_image.bin.bz2...
2015-09-21 15:49:14 URL:http://stable.release.core-os.net/amd64-usr/766.3.0/coreos_production_image.bin.bz2.sig [543/543] -> "/tmp/coreos-install.kGAdApmypF/coreos_production_image.bin.bz2.sig" [1]
Downloading, writing and verifying coreos_production_image.bin.bz2...

bunzip2: I/O or other error, bailing out.  Possible reason follows.
bunzip2: No space left on device
   Input file = (stdin), output file = (stdout)
Cannot write to '-' (Broken pipe).
gpg: Signature made Wed Sep  2 04:32:09 2015 UTC using RSA key ID E5676EFC
gpg: key 93D2DCB4 marked as ultimately trusted
gpg: checking the trustdb
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: BAD signature from "CoreOS Buildbot (Offical Builds) <buildbot@coreos.com>" [ultimate]
1: Download of coreos_production_image.bin.bz2 did not complete
141: Cannot expand coreos_production_image.bin.bz2 to /dev/sda
1: GPG signature verification failed for coreos_production_image.bin.bz2
/dev/sda: 2 bytes were erased at offset 0x000001fe (PMBR): 55 aa
/dev/sda: calling ioctl to re-read partition table: Success
bash-4.2#

如果我嘗試安裝驅動器,我會得到以下資訊:

bash-4.2# mount /dev/sda /mnt
mount: /dev/sda is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/sda,
      missing codepage or helper program, or other error

      In some cases useful info is found in syslog - try
      dmesg | tail or so.

快閃記憶體驅動器為 500Mb - 關於如何在 HP 瘦客戶端 t5720 上安裝 coreOS 有什麼建議嗎?

答案就在你的問題中:

快閃記憶體驅動器為 500Mb

而錯誤是

bunzip2: I/O or other error, bailing out.  Possible reason follows.
bunzip2: No space left on device

並且您下載的文件http://stable.release.core-os.net/amd64-usr/766.3.0/coreos_production_image.bin.bz2是 186 MB 的壓縮數據並擴展為 4,756,340,736 字節(4.5 GB)文件。

鑑於 t5720 可用的最大快閃記憶體模組為 1 GB(根據型號的QuickSpecs為 AH430AA ),您只能選擇破解設備以查看“快閃記憶體模組”是簡單的 USB 儲存棒還是 PATA 快閃記憶體模組。如果是這樣,用行業標準元件更換應該很順利。

引用自:https://serverfault.com/questions/723788