Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for ClearLinux? #7276

Closed
ThatRendle opened this issue Jan 23, 2017 · 6 comments
Closed

Support for ClearLinux? #7276

ThatRendle opened this issue Jan 23, 2017 · 6 comments
Labels
area-Meta question Answer questions and provide assistance, not an issue with source code or documentation. untriaged New issue has not been triaged by the area owner
Milestone

Comments

@ThatRendle
Copy link

Just been reading up on ClearLinux after an official VM image for Azure was published. It looks great, an Intel-optimized Linux designed for (a) running containers and (b) being the base image for containers.

Obviously I can run the existing Debian-based microsoft/dotnet image on a ClearLinux host, possibly to great effect, but I guess the CoreCLR build and native-compiled libraries wouldn't be taking advantage of whatever the Intel optimizations are? Or would it? I don't know about these things.

Assuming there would be performance benefits, can ClearLinux be added to the never-ending list of "please support this Linux"?

@shahid-pk
Copy link
Contributor

👍 for the last question.

@gkhanna79
Copy link
Member

wouldn't be taking advantage of whatever the Intel optimizations are

What specific optimizations are you referencing to @markrendle? Also, have you tried using https://dotnetcli.blob.core.windows.net/dotnet/master/Binaries/Latest/dotnet-linux-x64.latest.tar.gz on ClearLinux?

@danmoseley
Copy link
Member

@markrendle did you get a chance to try @gkhanna79 's suggestion?

@joefeser
Copy link

@markrendle Did you try what @gkhanna79 mentioned?

@ghost
Copy link

ghost commented Mar 9, 2018

in new clear linux box, run this once

# installation

# add some bundles
swupd bundle-add curl dev-utils

# download dotnet sdk 2.0
curl -O https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.0.0/dotnet-sdk-latest-linux-x64.tar.gz

# extract and set PATH
mkdir -p /usr/bin/dotnet
tar -xzvf dotnet-sdk-latest-linux-x64.tar.gz -C /usr/bin/dotnet
export PATH=$PATH:/usr/bin/dotnet
rm dotnet-sdk-latest-linux-x64.tar.gz

now create apps

console

# create, build and run console app
dotnet new console -n testconsole
dotnet run -p testconsole

mvc web

# create, build and run mvc
dotnet new mvc -n testmvc
cd testmvc
dotnet run

@msftgits msftgits transferred this issue from dotnet/coreclr Jan 31, 2020
@msftgits msftgits added this to the Future milestone Jan 31, 2020
@maryamariyan maryamariyan added the untriaged New issue has not been triaged by the area owner label Feb 26, 2020
@danmoseley
Copy link
Member

There seems no more action here.

@ghost ghost locked as resolved and limited conversation to collaborators Dec 26, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-Meta question Answer questions and provide assistance, not an issue with source code or documentation. untriaged New issue has not been triaged by the area owner
Projects
None yet
Development

No branches or pull requests

7 participants