我看到了使用vhd文件創建圖像並使用該映像文件創建vm的示例。我使用手臂模式,並希望將我上傳的vhd列爲圖像。基本上我想要使用azure cli/java sdk在以下文章https://azure.microsoft.com/en-in/documentation/articles/virtual-machines-windows-classic-createupload-vhd/中執行第5步。我沒有看到這樣做的任何例子。 有一個cli命令'azure vm image create',但它是否已在azure-cli 0.10.1版中棄用?我已經爲mac安裝了預編譯的azure-cli版本。使用天藍色的cli創建自定義vhd的圖像
0
A
回答
0
據我所知,沒有證據表明在azure-cli 0.10.1版本中不支持命令azure vm image create
。您現在可以通過命令npm update -g azure-cli
將azure-cli版本升級到0.10.2。
對於做article的步驟5中,你可以嘗試參考文章使用的命令azure vm image create
與ASM
模式「天青CLI在Azure的服務管理(ASM)模式命令」的部分Commands to manage your Azure virtual machine images
,請參閱下面的步驟。
# Sets the cli wording mode with asm
$ azure config mode asm
# See the help manual for the command `vm image create`
$ azure vm image creaet -h
help: Upload and register a VM image
help:
help: Usage: vm image create [options] <name> [source-path]
help:
help: Options:
help: -h, --help output usage information
help: -v, --verbose use verbose output
help: -vv more verbose with debug output
help: --json use json output
help: -u, --blob-url <url> the target image blob url
help: -l, --location <name> the location
help: -a, --affinity-group <name> the affinity group
help: -o, --os <type> the operating system [linux|windows]
help: -p, --parallel <number> the maximum number of parallel uploads [96]
help: -m, --md5-skip skip MD5 hash computation
help: -f, --force-overwrite Force overwrite of prior uploads
help: -e, --label <about> the image label
help: -d, --description <about> the image description
help: -b, --base-vhd <blob> the base vhd blob url
help: -k, --source-key <key> the source storage key if source-path
help: is a Microsoft Azure private blob url
help: -s, --subscription <id> the subscription id
help:
help: Current Mode: asm (Azure Service Management)
# Does the step 5 like Azure-AddVMImage
$ azure vm image create <ImageName> -b <vhd-blob-url> -o <ostype: linux|windows>
同時,我認爲從創建自定義圖像虛擬機的簡單方法是使用Azure的CLI與ARM從模板,你可以參考article與the template sample GitHub上。
相關問題
- 1. 在Microsoft Azure中使用CLI中的映像(.VHD)創建Windows VM
- 2. 如何從快照創建天藍色的圖像?
- 3. 蔚藍的.vhd圖像捕獲/負載
- 4. 爲天藍色容器創建天藍色cdn端點
- 5. 無法在ARM中創建天藍色圖像
- 6. 如何在天藍色的雲中創建天藍色的堆棧
- 7. 使用自定義構建腳本將mvc 3網站部署到天藍色
- 8. UIDocumentMenuViewController的自定義圖像只顯示藍色框
- 9. 如何創建像自定義列表視圖的自定義圖像視圖?
- 10. 創建天藍色節流異常
- 11. 創建天藍色廣告組
- 12. 服務管理員如何獲得足夠的權限來創建天藍色的自定義角色
- 13. TKCalendar - 一天的自定義圖像?
- 14. 爲醫學成像創建紅藍綠色的色彩圖嗎?
- 15. 無法將VHD上傳到天藍色故障
- 16. 上傳圖像(blob)到天藍色的特定容器
- 17. 自動天藍色部署
- 18. 自定義PDF創建 - 大圖像
- 19. 創建具有自定義圖像幀
- 20. 使用Png(透明)圖像和背景顏色創建自定義畫筆
- 21. 創建自定義頭像
- 22. 如何創建藍色文件存儲SAS網址(沒有天藍色的庫)?
- 23. 將aurelia自定義元素創建爲npm包(使用Aurelia CLI)
- 24. Azure存儲自定義域名仍保留天藍色域?
- 25. azure無法從vhd圖像創建vm圖像
- 26. 使用Image Magick創建帶固定顏色圖的GIF圖像
- 27. 可能保持兩個vhd的同步在天藍色虛擬的
- 28. 如何使用Crystal Reports中圖表的顏色創建自定義圖例表?
- 29. 使用UIImage和其他屬性創建自定義圖像
- 30. 在flex中創建自定義組件時使用圖像
謝謝彼得。我在ARM模式下工作,我已經將我的vhd blob上傳到其中一個資源組。現在我只需要從這個vhd文件中創建一個圖像。在預覽門戶網站上似乎也無法做到這一點。那麼,沒有使用模板的話,沒有辦法做到這一點嗎? –
由於ARM是建議在任何地方使用的,我想找到一種使用資源組創建自定義圖像的方法。幾乎沒有任何關於在非Windows平臺上創建用戶圖像的文檔。 –