Ubuntu22.04にPowerShell7をインストールした話

ubuntu コンピュータ
ubuntu

たまたまUbuntuのデスクトップ環境があるのでPowerShellをインストールしてみたいと思います。

サポート情報

Ubuntu 22.04 (Jammy Jellyfish) – OS サポートは 2027 年 4 月 1 日に終了します

x64 および Arm32 用の PowerShell 7.2、PowerShell 7.4、PowerShell 7.5-preview を含む Docker イメージは、Microsoft アーティファクト レジストリから入手できます

Linux に PowerShell をインストールする

手順

###################################
# Prerequisites

# Update the list of packages
sudo apt-get update

# Install pre-requisite packages.
sudo apt-get install -y wget apt-transport-https software-properties-common

# Get the version of Ubuntu
source /etc/os-release

# Download the Microsoft repository keys
wget -q https://packages.microsoft.com/config/ubuntu/$VERSION_ID/packages-microsoft-prod.deb

# Register the Microsoft repository keys
sudo dpkg -i packages-microsoft-prod.deb

# Delete the Microsoft repository keys file
rm packages-microsoft-prod.deb

# Update the list of packages after we added packages.microsoft.com
sudo apt-get update

###################################
# Install PowerShell
sudo apt-get install -y powershell

# Start PowerShell
pwsh

Ubuntu への PowerShell のインストール

バージョン情報

$PSVersionTable
ame                           Value
----                           -----
PSVersion                      7.4.2
PSEdition                      Core
GitCommitId                    7.4.2
OS                             Ubuntu 22.04.4 LTS
Platform                       Unix
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
WSManStackVersion              3.0
[System.Runtime.InteropServices.RuntimeInformation]::FrameworkDescription
.NET 8.0.4

コメント