How to use Putty for SSH connection to Ubuntu installed as an app from Microsoft Store
My question is about Accessing ubuntu app from putty.
I have Installed ubuntu command line in my Windows 10 System .
Here is the Link :-
https://www.microsoft.com/en-in/p/ubuntu/9nblggh4msv6?activetab=pivot:overviewtab
I want to use this installed ubuntu from putty SSH.
I have done this before but when it was installed inside a virtual machine.
But this time ubuntu is installed as an Microsoft Store app.
This is the ipconfig command result for my windows machine (Real PC)
Result of ipconfig
And This is the result of ifconfig on ubuntu (Installed as an App)
Result of ifconfig
Please help me in connecting (logging in ) to the ubuntu.
networking ssh putty
add a comment |
My question is about Accessing ubuntu app from putty.
I have Installed ubuntu command line in my Windows 10 System .
Here is the Link :-
https://www.microsoft.com/en-in/p/ubuntu/9nblggh4msv6?activetab=pivot:overviewtab
I want to use this installed ubuntu from putty SSH.
I have done this before but when it was installed inside a virtual machine.
But this time ubuntu is installed as an Microsoft Store app.
This is the ipconfig command result for my windows machine (Real PC)
Result of ipconfig
And This is the result of ifconfig on ubuntu (Installed as an App)
Result of ifconfig
Please help me in connecting (logging in ) to the ubuntu.
networking ssh putty
add a comment |
My question is about Accessing ubuntu app from putty.
I have Installed ubuntu command line in my Windows 10 System .
Here is the Link :-
https://www.microsoft.com/en-in/p/ubuntu/9nblggh4msv6?activetab=pivot:overviewtab
I want to use this installed ubuntu from putty SSH.
I have done this before but when it was installed inside a virtual machine.
But this time ubuntu is installed as an Microsoft Store app.
This is the ipconfig command result for my windows machine (Real PC)
Result of ipconfig
And This is the result of ifconfig on ubuntu (Installed as an App)
Result of ifconfig
Please help me in connecting (logging in ) to the ubuntu.
networking ssh putty
My question is about Accessing ubuntu app from putty.
I have Installed ubuntu command line in my Windows 10 System .
Here is the Link :-
https://www.microsoft.com/en-in/p/ubuntu/9nblggh4msv6?activetab=pivot:overviewtab
I want to use this installed ubuntu from putty SSH.
I have done this before but when it was installed inside a virtual machine.
But this time ubuntu is installed as an Microsoft Store app.
This is the ipconfig command result for my windows machine (Real PC)
Result of ipconfig
And This is the result of ifconfig on ubuntu (Installed as an App)
Result of ifconfig
Please help me in connecting (logging in ) to the ubuntu.
networking ssh putty
networking ssh putty
asked Jan 31 at 20:11
Deepak KumarDeepak Kumar
11
11
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The way I understand this app, there is no VM to ssh into. It use the Windows subsystem for Linux. In other words, you can't access it from putty. It's sorta like asking how do you access cmd.exe from putty. Hope that helps.
https://docs.microsoft.com/en-us/windows/wsl/about
add a comment |
You need to try to install sshd
You can do it by typing apt install sshd .
Then go to /etc/ssh/sshd_config and configure in a way you want.
After that execute sudo service sshd restart or simply restart you Ubuntu subsystem to make configuration operational.
You can find more about sshd_config here:
https://www.ssh.com/ssh/sshd_config/
Eddited:
Your question answered here:
https://superuser.com/q/1111591
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1114541%2fhow-to-use-putty-for-ssh-connection-to-ubuntu-installed-as-an-app-from-microsoft%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The way I understand this app, there is no VM to ssh into. It use the Windows subsystem for Linux. In other words, you can't access it from putty. It's sorta like asking how do you access cmd.exe from putty. Hope that helps.
https://docs.microsoft.com/en-us/windows/wsl/about
add a comment |
The way I understand this app, there is no VM to ssh into. It use the Windows subsystem for Linux. In other words, you can't access it from putty. It's sorta like asking how do you access cmd.exe from putty. Hope that helps.
https://docs.microsoft.com/en-us/windows/wsl/about
add a comment |
The way I understand this app, there is no VM to ssh into. It use the Windows subsystem for Linux. In other words, you can't access it from putty. It's sorta like asking how do you access cmd.exe from putty. Hope that helps.
https://docs.microsoft.com/en-us/windows/wsl/about
The way I understand this app, there is no VM to ssh into. It use the Windows subsystem for Linux. In other words, you can't access it from putty. It's sorta like asking how do you access cmd.exe from putty. Hope that helps.
https://docs.microsoft.com/en-us/windows/wsl/about
answered Jan 31 at 20:53
Ryan J. YoderRyan J. Yoder
765
765
add a comment |
add a comment |
You need to try to install sshd
You can do it by typing apt install sshd .
Then go to /etc/ssh/sshd_config and configure in a way you want.
After that execute sudo service sshd restart or simply restart you Ubuntu subsystem to make configuration operational.
You can find more about sshd_config here:
https://www.ssh.com/ssh/sshd_config/
Eddited:
Your question answered here:
https://superuser.com/q/1111591
add a comment |
You need to try to install sshd
You can do it by typing apt install sshd .
Then go to /etc/ssh/sshd_config and configure in a way you want.
After that execute sudo service sshd restart or simply restart you Ubuntu subsystem to make configuration operational.
You can find more about sshd_config here:
https://www.ssh.com/ssh/sshd_config/
Eddited:
Your question answered here:
https://superuser.com/q/1111591
add a comment |
You need to try to install sshd
You can do it by typing apt install sshd .
Then go to /etc/ssh/sshd_config and configure in a way you want.
After that execute sudo service sshd restart or simply restart you Ubuntu subsystem to make configuration operational.
You can find more about sshd_config here:
https://www.ssh.com/ssh/sshd_config/
Eddited:
Your question answered here:
https://superuser.com/q/1111591
You need to try to install sshd
You can do it by typing apt install sshd .
Then go to /etc/ssh/sshd_config and configure in a way you want.
After that execute sudo service sshd restart or simply restart you Ubuntu subsystem to make configuration operational.
You can find more about sshd_config here:
https://www.ssh.com/ssh/sshd_config/
Eddited:
Your question answered here:
https://superuser.com/q/1111591
answered Feb 3 at 13:20
GravemindGravemind
857
857
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1114541%2fhow-to-use-putty-for-ssh-connection-to-ubuntu-installed-as-an-app-from-microsoft%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown