2016-01-17 23:25:48 +00:00
|
|
|
# PowerShell on Linux / OS X / Windows
|
2015-07-01 22:06:29 +00:00
|
|
|
|
2016-01-22 19:36:23 +00:00
|
|
|
| |Ubuntu 14.04 |Windows |
|
|
|
|
|---------|:------:|:------:|
|
2016-02-05 18:18:23 +00:00
|
|
|
|master|[![Build Status](https://travis-ci.com/PowerShell/PowerShell.svg?token=31YifM4jfyVpBmEGitCm&branch=master)](https://travis-ci.com/PowerShell/PowerShell)|[![Build status](https://ci.appveyor.com/api/projects/status/wb0a0apbn4aiccp1/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/powershell-linux/branch/master)|
|
2016-01-22 19:36:23 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
## [Waffle.io scrum board](https://waffle.io/PowerShell/PowerShell)
|
2016-01-22 19:36:23 +00:00
|
|
|
|
2015-10-08 20:44:37 +00:00
|
|
|
## Obtain the source code
|
2015-07-01 22:06:29 +00:00
|
|
|
|
2015-10-08 20:44:37 +00:00
|
|
|
### Setup Git
|
2015-07-01 22:06:29 +00:00
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
Install [Git][], the version control system.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo apt-get install git
|
|
|
|
```
|
|
|
|
|
2016-01-15 19:56:08 +00:00
|
|
|
If you do not have a preferred method of authentication, enable the storage
|
|
|
|
credential helper, which will cache your credentials in plaintext on your
|
|
|
|
system, so use a [token][].
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git config --global credential.helper store
|
|
|
|
```
|
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
See the [Contributing Guidelines](CONTRIBUTING.md) for more Git information.
|
2015-07-01 22:06:29 +00:00
|
|
|
|
2015-10-08 20:25:59 +00:00
|
|
|
[Git]: https://git-scm.com/documentation
|
2016-01-15 19:56:08 +00:00
|
|
|
[token]: https://help.github.com/articles/creating-an-access-token-for-command-line-use/
|
2016-01-12 20:20:54 +00:00
|
|
|
|
2015-10-08 20:44:37 +00:00
|
|
|
### Download source code
|
2015-07-01 22:06:29 +00:00
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
Clone this repository recursively, as it's the superproject with a number of
|
2016-01-15 19:56:08 +00:00
|
|
|
submodules.
|
2015-07-01 22:06:29 +00:00
|
|
|
|
|
|
|
```sh
|
2016-02-05 18:18:23 +00:00
|
|
|
git clone --recursive https://github.com/PowerShell/PowerShell.git
|
2015-07-01 22:06:29 +00:00
|
|
|
```
|
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
The `src/omi` submodule requires your GitHub user to have joined the Microsoft
|
|
|
|
organization. If it fails to check out, Git will bail and not check out further
|
|
|
|
submodules either.
|
|
|
|
|
|
|
|
On Windows, many fewer submodules are needed, so don't use `clone --recursive`.
|
|
|
|
|
2016-01-20 00:10:19 +00:00
|
|
|
Instead run:
|
|
|
|
|
|
|
|
```
|
2016-02-05 18:18:23 +00:00
|
|
|
git clone https://github.com/PowerShell/PowerShell.git
|
2016-01-20 00:10:19 +00:00
|
|
|
git submodule update --init --recursive -- src/monad src/windows-build test/Pester
|
|
|
|
```
|
|
|
|
|
2015-10-08 20:44:37 +00:00
|
|
|
## Setup build environment
|
2015-07-06 18:56:29 +00:00
|
|
|
|
2016-01-12 20:20:54 +00:00
|
|
|
We use the [.NET Command Line Interface][dotnet-cli] (`dotnet-cli`) to build
|
2016-01-17 23:25:48 +00:00
|
|
|
the managed components, and [CMake][] to build the native components (on
|
2016-01-21 20:25:48 +00:00
|
|
|
non-Windows platforms). Install `dotnet-cli` by following their [documentation][]
|
2016-01-20 19:33:57 +00:00
|
|
|
(make sure to install the `dotnet-nightly` package on Linux to get the latest
|
2016-01-21 20:25:48 +00:00
|
|
|
version).
|
2016-01-17 23:25:48 +00:00
|
|
|
|
|
|
|
> Note that OS X dependency installation instructions are not yet documented,
|
2016-02-05 18:18:23 +00:00
|
|
|
> and Core PowerShell on Windows only needs `dotnet-cli`.
|
2016-01-17 23:25:48 +00:00
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
> Previous installations of DNX or `dnvm` can cause `dotnet-cli` to fail.
|
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
[dotnet-cli]: https://github.com/dotnet/cli#new-to-net-cli
|
|
|
|
[documentation]: https://dotnet.github.io/getting-started/
|
|
|
|
[CMake]: https://cmake.org/cmake/help/v2.8.12/cmake.html
|
|
|
|
|
2016-01-17 23:25:48 +00:00
|
|
|
### Linux
|
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
Tested on Ubuntu 14.04.
|
2016-01-17 23:25:48 +00:00
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
```sh
|
|
|
|
sudo sh -c 'echo "deb [arch=amd64] http://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
|
|
|
|
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install dotnet-nightly
|
|
|
|
```
|
|
|
|
|
|
|
|
Then install the following additional build / debug tools:
|
2016-02-05 18:18:23 +00:00
|
|
|
|
2015-12-09 21:38:03 +00:00
|
|
|
```sh
|
2016-01-12 20:20:54 +00:00
|
|
|
sudo apt-get install g++ cmake make lldb-3.6 strace
|
2015-12-09 21:38:03 +00:00
|
|
|
```
|
2015-07-06 18:56:29 +00:00
|
|
|
|
2016-01-17 23:25:48 +00:00
|
|
|
#### OMI
|
2015-07-06 18:56:29 +00:00
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
To develop on the PowerShell Remoting Protocol (PSRP) for Linux, you'll need to
|
|
|
|
be able to compile OMI, which additionally requires:
|
2015-07-06 18:56:29 +00:00
|
|
|
|
2015-12-09 21:38:03 +00:00
|
|
|
```sh
|
2016-02-05 18:18:23 +00:00
|
|
|
sudo apt-get install libpam0g-dev libssl-dev libcurl4-openssl-dev libboost-filesystem-dev
|
2015-12-09 21:38:03 +00:00
|
|
|
```
|
2015-07-06 18:56:29 +00:00
|
|
|
|
2015-10-08 20:44:37 +00:00
|
|
|
## Building
|
2015-07-01 22:06:29 +00:00
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
**The command `dotnet restore` must be done at least once from the top directory
|
|
|
|
to obtain all the necessary .NET packages.**
|
2015-12-17 19:29:12 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
Build with `./build.sh` on Linux and OS X, `./build.ps1` for Core PowerShell on
|
|
|
|
Windows, and `./build.FullCLR.ps1` for Full PowerShell on Windows.
|
2015-12-17 19:29:12 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
Specifically:
|
|
|
|
|
|
|
|
### Linux
|
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
In Bash:
|
2016-01-20 20:29:06 +00:00
|
|
|
```sh
|
2016-02-05 18:18:23 +00:00
|
|
|
cd PowerShell
|
2016-01-20 20:29:06 +00:00
|
|
|
dotnet restore
|
|
|
|
./build.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
In PowerShell:
|
2016-01-20 20:29:06 +00:00
|
|
|
```powershell
|
2016-02-05 18:18:23 +00:00
|
|
|
cd PowerShell
|
2016-01-20 20:29:06 +00:00
|
|
|
dotnet restore
|
|
|
|
./build.ps1
|
|
|
|
```
|
|
|
|
|
2016-01-17 23:25:48 +00:00
|
|
|
## Running
|
|
|
|
|
2016-01-20 20:33:42 +00:00
|
|
|
If you encounter any problems, see the [known issues](KNOWNISSUES.md),
|
|
|
|
otherwise open a new issue on GitHub.
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
The local managed host has built-in documentation via `--help`.
|
|
|
|
|
2016-01-17 23:25:48 +00:00
|
|
|
### Linux / OS X
|
|
|
|
|
|
|
|
- launch local shell with `./bin/powershell`
|
2016-02-05 18:18:23 +00:00
|
|
|
- run tests with `./pester.sh`
|
2016-01-17 23:25:48 +00:00
|
|
|
- launch `omiserver` for PSRP (and in LLDB) with `./prsp.sh`, and connect with `Enter-PSSession` from Windows
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
- launch `./bin/powershell.exe`
|
|
|
|
- run tests with `./bin/powershell.exe -c "Invoke-Pester test/powershell"`
|
2016-02-04 03:07:36 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
## PowerShell Remoting Protocol
|
|
|
|
|
|
|
|
PSRP communication is tunneled through OMI using the `omi-provider`.
|
|
|
|
|
|
|
|
> PSRP has been observed working on OS X, but the changes made to OMI to
|
|
|
|
> accomplish this are not even beta-ready and need to be done correctly. They
|
|
|
|
> exist on the `andschwa-osx` branch of the OMI repository.
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
### Building
|
2016-01-20 20:29:06 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
**PSRP support is not built by `./build.sh`**
|
2016-01-20 20:29:06 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
Build with `./omibuild.sh`.
|
2016-01-20 20:29:06 +00:00
|
|
|
|
|
|
|
### Running
|
|
|
|
|
|
|
|
Some initial setup on Windows is required. Open an administrative command
|
|
|
|
prompt and execute the following:
|
|
|
|
|
|
|
|
```cmd
|
|
|
|
winrm set winrm/config/Client @{AllowUnencrypted="true"}
|
|
|
|
winrm set winrm/config/Client @{TrustedHosts="*"}
|
|
|
|
```
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
> You can also set the `TrustedHosts` to include the target's IP address.
|
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
Then on Linux, launch `omiserver` in the debugger (after building with the
|
|
|
|
instructions above):
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./psrp.sh
|
|
|
|
run
|
|
|
|
```
|
|
|
|
|
|
|
|
> The `run` command is executed inside of LLDB (the debugger) to start the
|
|
|
|
`omiserver` process.
|
|
|
|
|
|
|
|
Now in a PowerShell prompt on Windows (opened after setting the WinRM client
|
|
|
|
configurations):
|
|
|
|
|
|
|
|
```powershell
|
|
|
|
Enter-PSSession -ComputerName <IP address of Linux machine> -Credential $cred -Authentication basic
|
|
|
|
```
|
2016-01-17 23:25:48 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
> The `$cred` variable can be empty; a credentials prompt will appear, enter
|
|
|
|
> any fake credentials you wish as authentication is not yet implemented.
|
2016-01-17 23:25:48 +00:00
|
|
|
|
2016-01-21 20:25:48 +00:00
|
|
|
The IP address of the Linux machine can be obtained with:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
ip -f inet addr show dev eth0
|
|
|
|
```
|
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
### Desired State Configuration
|
2016-01-20 19:33:57 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
> DSC support is in its infancy.
|
2016-01-20 19:33:57 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
DSC also uses OMI, so build it first, then build DSC against it. Unfortunately,
|
|
|
|
DSC cannot be configured to look for OMI elsewhere, so for now you need to
|
|
|
|
symlink it to the expected location.
|
2016-01-20 19:33:57 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
```sh
|
|
|
|
ln -s ../omi/Unix/ omi-1.0.8
|
|
|
|
./configure --no-rpm --no-dpkg --local
|
|
|
|
make -j
|
|
|
|
```
|
2016-01-20 19:33:57 +00:00
|
|
|
|
2016-01-20 20:29:06 +00:00
|
|
|
## Detailed Build Script Notes
|
2016-01-17 23:25:48 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
> This sections explains the build scripts.
|
2016-01-17 23:25:48 +00:00
|
|
|
|
|
|
|
The variable `$BIN` is the output directory, `bin`.
|
2015-12-16 21:57:13 +00:00
|
|
|
|
2016-01-15 19:56:08 +00:00
|
|
|
### Managed
|
|
|
|
|
|
|
|
Builds with `dotnet-cli`. Publishes all dependencies into the `bin` directory.
|
2016-02-05 18:18:23 +00:00
|
|
|
Emits its own native host as `bin/powershell`. Uses a `Linux` configuration to
|
|
|
|
add a preprocessor definition. The `CORECLR` definition is added only when
|
|
|
|
targeting the `dnxcore50` framework.
|
2016-01-15 19:56:08 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
cd src/Microsoft.PowerShell.Linux.Host
|
2016-02-05 18:18:23 +00:00
|
|
|
dotnet publish --framework dnxcore50 --output $BIN --configuration Linux
|
2016-01-15 19:56:08 +00:00
|
|
|
# Copy files that dotnet-publish doesn't currently deploy
|
|
|
|
cp *.ps1xml *_profile.ps1 $BIN
|
|
|
|
```
|
|
|
|
|
2015-12-09 21:38:03 +00:00
|
|
|
### Native
|
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
- `libpsl-native.so`: native functions that `CorePsPlatform.cs` P/Invokes
|
2015-12-16 21:57:13 +00:00
|
|
|
- `api-ms-win-core-registry-l1-1-0.dll`: registry stub to prevent missing DLL error on shutdown
|
|
|
|
|
2016-01-15 19:56:08 +00:00
|
|
|
#### libpsl-native
|
2015-12-16 21:57:13 +00:00
|
|
|
|
|
|
|
Driven by CMake, with its own unit tests using Google Test.
|
|
|
|
|
2015-12-09 21:38:03 +00:00
|
|
|
```sh
|
2016-01-15 19:56:08 +00:00
|
|
|
cd src/libpsl-native
|
2015-12-09 21:38:03 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug .
|
2015-12-16 21:57:13 +00:00
|
|
|
make -j
|
2015-12-09 21:38:03 +00:00
|
|
|
ctest -V
|
2016-01-15 19:56:08 +00:00
|
|
|
# Deploy development copy of libpsl-native
|
|
|
|
cp native/libpsl-native.* $BIN
|
2015-12-16 21:57:13 +00:00
|
|
|
```
|
|
|
|
|
2016-01-20 19:33:57 +00:00
|
|
|
The output is a `.so` on Linux and `.dylib` on OS X. It is unnecessary for Windows.
|
|
|
|
|
2015-12-16 21:57:13 +00:00
|
|
|
#### registry-stub
|
|
|
|
|
|
|
|
Provides `RegCloseKey()` to satisfy the disposal of `SafeHandle` objects on shutdown.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd src/registry-stub
|
|
|
|
make
|
|
|
|
cp api-ms-win-core-registry-l1-1-0.dll $BIN
|
2015-12-09 21:38:03 +00:00
|
|
|
```
|
2016-02-04 03:07:36 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
### PSRP
|
|
|
|
|
|
|
|
#### OMI
|
|
|
|
|
|
|
|
Build OMI from source in developer mode:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd src/omi/Unix
|
|
|
|
./configure --dev
|
|
|
|
make -j
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Provider
|
|
|
|
|
|
|
|
The provider uses CMake to build, link, and register with OMI.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd src/omi-provider
|
|
|
|
cmake .
|
|
|
|
make -j
|
|
|
|
```
|
|
|
|
|
|
|
|
The provider also maintains its own native host library to initialize the CLR,
|
|
|
|
but there are plans to refactor .NET's packaged host as a shared library.
|
|
|
|
|
2016-02-04 03:07:36 +00:00
|
|
|
# FullCLR PowerShell
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
On Windows, we also build Full PowerShell for .NET 4.5.1
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
## Setup environment
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
* You need Visual Studio to compile the native host `powershell.exe`.
|
2016-02-04 03:07:36 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
If you don't have any visual studio installed, you can use [Visual Studio 2013
|
|
|
|
Community edition][vs].
|
2016-02-04 03:07:36 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
* Add `msbuild` to `PATH` / create PowerShell alias to it.
|
|
|
|
|
|
|
|
* Install CMake and add it to `PATH.`
|
|
|
|
|
|
|
|
You can install it from [Chocolatey][] or [manually][].
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
choco install cmake.portable
|
|
|
|
```
|
2016-02-05 18:18:23 +00:00
|
|
|
|
|
|
|
* Install dotnet-cli via their [documentation][]
|
|
|
|
|
|
|
|
[vs]: https://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx
|
|
|
|
[chocolately]: https://chocolatey.org/packages/cmake.portable
|
|
|
|
[manually]: https://cmake.org/download/
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
```powershell
|
|
|
|
.\build.FullCLR.ps1
|
|
|
|
```
|
|
|
|
|
|
|
|
**Troubleshooting:** the build logic is relatively simple and contains following steps:
|
2016-02-05 18:18:23 +00:00
|
|
|
- building managed DLLs: `dotnet publish --runtime dnx451`
|
2016-02-04 03:07:36 +00:00
|
|
|
- generating Visual Studio project: `cmake -G "$cmakeGenerator"`
|
2016-02-05 18:18:23 +00:00
|
|
|
- building `powershell.exe` from generated solution: `msbuild powershell.sln`
|
2016-02-04 03:07:36 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
All this steps can be run separately from `.\build.FullCLR.ps1`, don't hesitate
|
|
|
|
to experiment.
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
## Running
|
|
|
|
|
|
|
|
Running FullCLR version is not as simple as CoreCLR version.
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
If you just run ~~`.\binFull\powershell.exe`~~, you will get a `powershell`
|
|
|
|
process, but all the interesting DLLs (i.e. `System.Management.Automation.dll`)
|
|
|
|
would be loaded from the GAC, not your `binFull` build directory.
|
2016-02-04 03:07:36 +00:00
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
[@lzybkr](https://github.com/lzybkr) wrote a module to deal with it and run
|
|
|
|
side-by-side.
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
```powershell
|
|
|
|
Import-Module .\PowerShellGithubDev.psm1
|
|
|
|
Start-DevPSGithub -binDir $pwd\binFull
|
|
|
|
```
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
**Troubleshooting:** default for `powershell.exe` that **we build** is x86.
|
|
|
|
|
|
|
|
There is a separate execution policy registry key for x86, and it's likely that
|
|
|
|
you didn't ~~bypass~~ enable it. From **powershell.exe (x86)** run:
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
Set-ExecutionPolicy Bypass
|
|
|
|
```
|
|
|
|
|
|
|
|
## Running from CI server
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
We publish an archive with FullCLR bits on every CI build with [AppVeyor][].
|
2016-02-04 03:07:36 +00:00
|
|
|
|
|
|
|
* Download zip package from **artifacts** tab of the particular build.
|
2016-02-05 18:18:23 +00:00
|
|
|
* Unblock zip file: right-click in file explorer -> properties -> check
|
|
|
|
'Unblock' checkbox -> apply
|
2016-02-04 03:07:36 +00:00
|
|
|
* Extract zip file to `$bin` directory
|
|
|
|
* `Start-DevPSGithub -binDir $bin`
|
|
|
|
|
2016-02-05 18:18:23 +00:00
|
|
|
[appveyor]: https://ci.appveyor.com/project/PowerShell/powershell-linux
|