How To Install Redhat Linux 7
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
- Feedback
- Edit
Installing PowerShell on Red Hat Enterprise Linux (RHEL)
- Article
- 2 minutes to read
-
Thank you.
All packages are available on our GitHub releases page. After the package is installed, run pwsh
from a terminal. Run pwsh-preview
if you installed a preview release. Before installing, check the list of Supported versions below.
Note
PowerShell 7.2 is an in-place upgrade that removes previous versions of PowerShell.
If you need to run PowerShell 7.2 side-by-side with a previous version, reinstall the previous version using the binary archive method.
RHEL 7 uses yum and RHEL 8 uses the dnf package manager.
Installation via Package Repository
PowerShell for Linux is published to official Microsoft repositories for easy installation and updates.
On RHEL 7:
# Register the Microsoft RedHat repository curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo # Install PowerShell sudo yum install -y powershell # Start PowerShell pwsh
As superuser, register the Microsoft repository once. After registration, you can update PowerShell with sudo yum update powershell
.
On RHEL 8:
# Register the Microsoft RedHat repository curl https://packages.microsoft.com/config/rhel/8/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo # Install PowerShell sudo dnf install powershell # Start PowerShell pwsh
As superuser, register the Microsoft repository once. After registration, you can update PowerShell with sudo dnf upgrade powershell
.
Installation via direct download
PowerShell 7.2 is distributed as a universal RPM package. Previous versions of PowerShell had separate package for each OS. Download the RPM package you need onto your CentOS machine.
- PowerShell 7.2.1 -
https://github.com/PowerShell/PowerShell/releases/download/v7.2.1/powershell-lts-7.2.1-1.rh.x86_64.rpm
- PowerShell 7.1.5
- CentOS 7 -
https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-1.rhel.7.x86_64.rpm
- CentOS 8 -
https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-1.centos.8.x86_64.rpm
- CentOS 7 -
- PowerShell 7.0.8
- CentOS 7 -
https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-1.rhel.7.x86_64.rpm
- CentOS 8 -
https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-1.centos.8.x86_64.rpm
- CentOS 7 -
Use the following shell command to install the latest RPM package on the target version of RHEL. Change the URL in the following shell commands to match the version you need.
On RHEL 7:
sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v7.2.1/powershell-lts-7.2.1-1.rh.x86_64.rpm
On RHEL 8:
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.2.1/powershell-lts-7.2.1-1.rh.x86_64.rpm
Uninstallation - Red Hat Enterprise Linux (RHEL) 7
sudo yum remove powershell
Support for Arm processors
PowerShell 7.2 supports running on RHEL using a 64-bit Arm processor. Use the binary archive installation method of installing PowerShell that is described in Alternate ways to install PowerShell on Linux.
PowerShell paths
-
$PSHOME
is/opt/microsoft/powershell/7/
- User profiles are read from
~/.config/powershell/profile.ps1
- Default profiles are read from
$PSHOME/profile.ps1
- User modules are read from
~/.local/share/powershell/Modules
- Shared modules are read from
/usr/local/share/powershell/Modules
- Default modules are read from
$PSHOME/Modules
- PSReadLine history is recorded to
~/.local/share/powershell/PSReadLine/ConsoleHost_history.txt
The profiles respect PowerShell's per-host configuration, so the default host-specific profiles exists at Microsoft.PowerShell_profile.ps1
in the same locations.
PowerShell respects the XDG Base Directory Specification on Linux.
Supported versions
The following table is a list of currently supported versions of PowerShell and the versions of RHEL they are supported on. These versions remain supported until either the version of PowerShell reaches end-of-support or the version of RHEL reaches end-of-support.
- A ✅ indicates that the version of the OS or PowerShell is still supported
- A ❌ indicates that the version of the OS or PowerShell isn't supported
- A 🟡 indicates the version of PowerShell is no longer supported on that version of the OS
- When both the version of the OS and the version of PowerShell have ✅, that combination is supported
RHEL | 7.0 (LTS) | 7.1 | 7.2 (LTS-current) |
---|---|---|---|
✅ 8 | ✅ | ✅ | ✅ |
✅ 7 | ✅ | ✅ | ✅ |
PowerShell is supported on RHEL for the following processor architectures.
RHEL | 7.0 (LTS) | 7.1 | 7.2 (LTS-current) |
---|---|---|---|
All supported versions | x64 | x64 | x64, Arm64 |
Installation support
Microsoft supports the installation methods in this document. There may be other methods of installation available from other third-party sources. While those tools and methods may work, Microsoft cannot support those methods.
Feedback
How To Install Redhat Linux 7
Source: https://docs.microsoft.com/en-us/powershell/scripting/install/install-rhel
Posted by: bellaning1947.blogspot.com
0 Response to "How To Install Redhat Linux 7"
Post a Comment