Orange Pi 2/armbianでVMware PowerCLIが動いた

先日、「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ディレクトリに展開

1# mkdir ~/powershell
2# cd ~/powershell
3# tar xfz ../powershell-6.1.0-preview.3-linux-arm32.tar.gz
4#

そして、PowerShell Coreを実行

1PS /root> uname -a
2uname -a
3Linux orangepi2 4.14.18-sunxi #24 SMP Fri Feb 9 16:24:32 CET 2018 armv7l GNU/Linux
4PS /root> $PSVersionTable
5 
6Name                           Value
7----                           -----
8PSVersion                      6.1.0-preview.3
9PSEdition                      Core
10GitCommitId                    v6.1.0-preview.3
11OS                             Linux 4.14.18-sunxi #24 SMP Fri Feb 9 16:24:3...
12Platform                       Unix
13PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
14PSRemotingProtocolVersion      2.3
15SerializationVersion           1.1.0.1
16WSManStackVersion              3.0
17 
18 
19PS /root>

普通に動いているようだ。

続いて、PowerCLIのインストール

1PS /root> Install-Module -Name VMware.PowerCLI
2 
3Untrusted repository
4You are installing the modules from an untrusted repository. If you trust this
5repository, 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
8(default is "N"):y
9PS /root>

何事もなく終了。
モジュールの確認

1PS /root> Install-Module -Name VMware.PowerCLI
2 
3Untrusted repository
4You are installing the modules from an untrusted repository. If you trust this
5repository, 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
8(default is "N"):y
9PS /root>
1PS /root> Get-Module                                                           
2ModuleType Version    Name                                ExportedCommands
3---------- -------    ----                                ----------------
4Manifest   3.1.0.0    Microsoft.PowerShell.Management     {Add-Content, Clea...
5Manifest   3.1.0.0    Microsoft.PowerShell.Utility        {Add-Member, Add-T...
6Script     1.1.7.0    PackageManagement                   {Find-Package, Fin...
7Script     1.6.0      PowerShellGet                       {Find-Command, Fin...
8Script     2.0.0      PSReadLine                          {Get-PSReadLineKey...
9 
10 
11PS /root> Get-Module -ListAvailable
12 
13 
14    Directory: /usr/local/share/powershell/Modules
15 
16 
17ModuleType Version    Name                                ExportedCommands
18---------- -------    ----                                ----------------
19Script     6.7.0.8... VMware.DeployAutomation             {Add-DeployRule, A...
20Script     6.7.0.8... VMware.ImageBuilder                 {Add-EsxSoftwareDe...
21Manifest   10.1.1.... VMware.PowerCLI
22Script     6.7.0.8... VMware.Vim
23Script     10.1.0.... VMware.VimAutomation.Cis.Core       {Connect-CisServer...
24Script     10.0.0.... VMware.VimAutomation.Cloud          {Add-CIDatastore, ...
25Script     10.1.0.... VMware.VimAutomation.Common
26Script     10.1.0.... VMware.VimAutomation.Core           {Add-PassthroughDe...
27Script     6.5.4.7... VMware.VimAutomation.HA             Get-DrmInfo
28Script     7.5.0.8... VMware.VimAutomation.HorizonView    {Connect-HVServer,...
29Script     10.0.0.... VMware.VimAutomation.License        Get-LicenseDataMan...
30Script     10.1.0.... VMware.VimAutomation.Nsxt           {Connect-NsxtServe...
31Script     10.0.0.... VMware.VimAutomation.PCloud         {Connect-PIServer,...
32Script     10.1.0.... VMware.VimAutomation.Sdk
33Script     10.0.0.... VMware.VimAutomation.Srm            {Connect-SrmServer...
34Script     10.1.0.... VMware.VimAutomation.Storage        {Add-KeyManagement...
35Script     1.2.0.0    VMware.VimAutomation.StorageUtility Update-VmfsDatastore
36Script     10.1.0.... VMware.VimAutomation.Vds            {Add-VDSwitchPhysi...
37Script     10.0.0.... VMware.VimAutomation.Vmc            {Connect-Vmc, Disc...
38Script     10.0.0.... VMware.VimAutomation.vROps          {Connect-OMServer,...
39Script     6.5.1.7... VMware.VumAutomation                {Add-EntityBaselin...
40 
41 
42    Directory: /root/powershell/Modules
43 
44 
45ModuleType Version    Name                                ExportedCommands
46---------- -------    ----                                ----------------
47Manifest   1.1.0.0    Microsoft.PowerShell.Archive        {Compress-Archive,...
48Manifest   3.0.0.0    Microsoft.PowerShell.Host           {Start-Transcript,...
49Manifest   3.1.0.0    Microsoft.PowerShell.Management     {Add-Content, Clea...
50Manifest   3.0.0.0    Microsoft.PowerShell.Security       {Get-Credential, G...
51Manifest   3.1.0.0    Microsoft.PowerShell.Utility        {Format-List, Form...
52Script     1.1.7.0    PackageManagement                   {Find-Package, Get...
53Script     1.6.0      PowerShellGet                       {Install-Module, F...
54Script     0.0        PSDesiredStateConfiguration         {ThrowError, Node,...
55Script     2.0.0      PSReadLine                          {Get-PSReadLineKey...
56 
57 
58PS /root>

で・・・画面は省略しますが、connect-viserverして、get-vmして、とか普通に動きました。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

This site uses Akismet to reduce spam. Learn how your comment data is processed.

StatCounter - Free Web Tracker and Counter