先日、「CentOS7環境にPowerShell CoreとVMware PowerCLIをインストール」で書いたように、普通のCentOS7環境でVMware PowerCLIを動かしてみた。
で、ラズパイの上でもPowerShell Coreは動く。
「Running PowerShell Core on Raspberry Pi 2」
arm32というくくりでは同じだけど、SoCがAllwinner H3のOrange Pi 2でPowerShell Coreが動くか、
また、VMware PowerCLIがインストールでき、仮想マシン操作を行えるかを確認してみた。
現時点では、ARM Linux向けにはtar.gzで固めたものしか出ていないのでgithubのPowerShell Releasesからlinux-arm32.tar.gzとなっているものを入手。
2018/07/13時点だと「wget https://github.com/PowerShell/PowerShell/releases/download/v6.1.0-preview.3/powershell-6.1.0-preview.3-linux-arm32.tar.gz」でダウンロードした。
これを~/powershellディレクトリに展開
そして、PowerShell Coreを実行
3 | Linux orangepi2 4.14.18-sunxi |
4 | PS /root> $PSVersionTable |
8 | PSVersion 6.1.0-preview.3 |
10 | GitCommitId v6.1.0-preview.3 |
13 | PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} |
14 | PSRemotingProtocolVersion 2.3 |
15 | SerializationVersion 1.1.0.1 |
普通に動いているようだ。
続いて、PowerCLIのインストール
1 | PS /root> Install-Module -Name VMware.PowerCLI |
4 | You are installing the modules from an untrusted repository. If you trust this |
5 | repository, change its InstallationPolicy value by running the Set-PSRepository |
6 | cmdlet. Are you sure you want to install the modules from 'PSGallery' ? |
7 | [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help |
何事もなく終了。
モジュールの確認
1 | PS /root> Install-Module -Name VMware.PowerCLI |
4 | You are installing the modules from an untrusted repository. If you trust this |
5 | repository, change its InstallationPolicy value by running the Set-PSRepository |
6 | cmdlet. Are you sure you want to install the modules from 'PSGallery' ? |
7 | [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help |
2 | ModuleType Version Name ExportedCommands |
3 | ---------- ------- ---- ---------------- |
4 | Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Content, Clea... |
5 | Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, Add-T... |
6 | Script 1.1.7.0 PackageManagement {Find-Package, Fin... |
7 | Script 1.6.0 PowerShellGet {Find-Command, Fin... |
8 | Script 2.0.0 PSReadLine {Get-PSReadLineKey... |
11 | PS /root> Get-Module -ListAvailable |
14 | Directory: /usr/ local /share/powershell/Modules |
17 | ModuleType Version Name ExportedCommands |
18 | ---------- ------- ---- ---------------- |
19 | Script 6.7.0.8... VMware.DeployAutomation {Add-DeployRule, A... |
20 | Script 6.7.0.8... VMware.ImageBuilder {Add-EsxSoftwareDe... |
21 | Manifest 10.1.1.... VMware.PowerCLI |
22 | Script 6.7.0.8... VMware.Vim |
23 | Script 10.1.0.... VMware.VimAutomation.Cis.Core {Connect-CisServer... |
24 | Script 10.0.0.... VMware.VimAutomation.Cloud {Add-CIDatastore, ... |
25 | Script 10.1.0.... VMware.VimAutomation.Common |
26 | Script 10.1.0.... VMware.VimAutomation.Core {Add-PassthroughDe... |
27 | Script 6.5.4.7... VMware.VimAutomation.HA Get-DrmInfo |
28 | Script 7.5.0.8... VMware.VimAutomation.HorizonView {Connect-HVServer,... |
29 | Script 10.0.0.... VMware.VimAutomation.License Get-LicenseDataMan... |
30 | Script 10.1.0.... VMware.VimAutomation.Nsxt {Connect-NsxtServe... |
31 | Script 10.0.0.... VMware.VimAutomation.PCloud {Connect-PIServer,... |
32 | Script 10.1.0.... VMware.VimAutomation.Sdk |
33 | Script 10.0.0.... VMware.VimAutomation.Srm {Connect-SrmServer... |
34 | Script 10.1.0.... VMware.VimAutomation.Storage {Add-KeyManagement... |
35 | Script 1.2.0.0 VMware.VimAutomation.StorageUtility Update-VmfsDatastore |
36 | Script 10.1.0.... VMware.VimAutomation.Vds {Add-VDSwitchPhysi... |
37 | Script 10.0.0.... VMware.VimAutomation.Vmc {Connect-Vmc, Disc... |
38 | Script 10.0.0.... VMware.VimAutomation.vROps {Connect-OMServer,... |
39 | Script 6.5.1.7... VMware.VumAutomation {Add-EntityBaselin... |
42 | Directory: /root/powershell/Modules |
45 | ModuleType Version Name ExportedCommands |
46 | ---------- ------- ---- ---------------- |
47 | Manifest 1.1.0.0 Microsoft.PowerShell.Archive {Compress-Archive,... |
48 | Manifest 3.0.0.0 Microsoft.PowerShell.Host {Start-Transcript,... |
49 | Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Content, Clea... |
50 | Manifest 3.0.0.0 Microsoft.PowerShell.Security {Get-Credential, G... |
51 | Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Format-List, Form... |
52 | Script 1.1.7.0 PackageManagement {Find-Package, Get... |
53 | Script 1.6.0 PowerShellGet {Install-Module, F... |
54 | Script 0.0 PSDesiredStateConfiguration {ThrowError, Node,... |
55 | Script 2.0.0 PSReadLine {Get-PSReadLineKey... |
で・・・画面は省略しますが、connect-viserverして、get-vmして、とか普通に動きました。