Skip to content

Known Issues

Travis Plunk edited this page Jul 29, 2020 · 12 revisions

Known Issues

PowerShell

Start-Process

There is no -verb on the Start-Process cmdlet.

NanoServer Release Notes

General

NanoServer is affected by changes to the user subsystem. See [known issues with nano-server][user-subsystem-issue].

PowerShell Get

Only works with CurrentUser Scope

Due to [known issues with the nano-server][user-subsystem-issue], you must specify -Scope CurrentUser when using Install-Module. Example:

Install-Module <ModuleName> -Scope CurrentUser

May require -SkipPublisherCheck

PowerShell get uses an API to verify signing that is unavailable on nanoserver. You may have to run the command with the following paramaters to get certain modules to install:

Install-Module -Name Pester -Force -SkipPublisherCheck

user-subsystem-issue

ARM and Qemu not supported

Running an ARM image in QEMU is not supported.
This in a .NET Core requirement. https://github.com/dotnet/dotnet-docker/blob/b311acc7317d56f0ad16cc17b45d552503871bc4/samples/dotnetapp/README.md#build-an-image-for-arm32-and-arm64

You can build ARM32 and ARM64 images on x64 machines, but you will not be able to run them. Docker relies on QEMU for this scenario, which isn't supported by .NET Core. You must test and run .NET Core images on actual hardware for the given processor type. A common pattern for this situation is building on x64, pushing images to a registry, and then pulling the image from an ARM device.

Clone this wiki locally