windows可以安装Ubuntu,ubuntu上也可以安装Powershell

powerhsell除了可以在windows上使用外,还可以在Ubuntu上部署开发环境。下面介绍Ubuntu上安装powershell的方法。

通过在线包存储库安装

注意先检查Ubuntu是否能正常连接外网,
1,更新包列表

sudo apt-get update

2,安装先决条件的包,范例是Ubuntu 18.04。如果是Ubuntu 20.04,下面URL的链接中的18.04更改为20.04即可。https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb

wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb

3,下载Microsoft存储库GPG Key

sudo dpkg -i packages-microsoft-prod.deb

4,注册Microsoft存储库GPG密钥

sudo dpkg -i packages-microsoft-prod.deb

5,再次更新包列表

sudo apt-get update

6,安装 PowerShell

sudo apt-get install -y powershell

7,启动 PowerShell

pwsh

至此安装完成。

当需要更新powershell时,可以通过 sudo apt-get install powershell 更新 PowerShell。

windows上安装powershell

winget search Microsoft.PowerShell

windows可以安装Ubuntu,ubuntu上也可以安装Powershell_第1张图片
需要先同意,选择“Y”
windows可以安装Ubuntu,ubuntu上也可以安装Powershell_第2张图片
使用 ID 参数安装 Powershell

winget install --id Microsoft.Powershell --source winget

或 Powershell 预览版

winget install --id Microsoft.Powershell.Preview --source winget

推荐阅读

  • Ubuntu 20.04安装SQL Server
  • Ubuntu安装DHCP 服务和排错教程
  • Ubuntu 多路径服务报错处理方法
  • Ubuntu Samba高危安全漏洞修复
  • Ubuntu 用bind9搭建DNS服务器
  • Ubuntu18.04重启后网络不通处理方法
  • Windows 11安装Ubuntu 实战教程
  • 易记笔记-Ubuntu升级软件包及注意事项
  • 易记笔记-Ubuntu系统时间更改
  • 自己整理的Ubuntu NFS常用指令,对初学者有用

你可能感兴趣的:(系统运维管理,ubuntu,windows,microsoft,powershell,shell)