Run PowerShell in latest Kali (#4035)

* Run PowerShell in latest Kali

* markdown error in pull request

* Update linux.md

* code block fix

* fixed typo

* fixed typos
This commit is contained in:
mrpnkt 2017-06-25 21:15:06 +02:00 committed by Travis Plunk
parent 471f4e8a48
commit 83b18570ea

View file

@ -427,6 +427,19 @@ dpkg -i powershell_6.0.0-beta.3-1ubuntu1.16.04.1_amd64.deb
powershell
```
### Run PowerShell in latest Kali (Kali GNU/Linux Rolling) without installing it
```sh
# Grab the latest App Image
wget https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.18/PowerShell-6.0.0-alpha.18-x86_64.AppImage
# Make executable
chmod a+x PowerShell-6.0.0-alpha.18-x86_64.AppImage
# Start PowerShell
./PowerShell-6.0.0-alpha.18-x86_64.AppImage
```
### Uninstallation - Kali
```sh