Add key in known_hosts file in ChromeOS [closed] - ssh

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
With the very limited ChromeOS crosh shell, how do I add a host key to my known_hosts file in ChromeOS.

I don't believe it is possible to add your key to the Chrome OS shell. If you are in developer mode you can add your key. You can also install the Secure Shell app from the Chrome Web Store and add your key within that app. The app is the best way to go if you don't want to use developer mode, although it still has some bugs to work out.

Related

Problem with my mc server created on google vps [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I have mc server and when I closing the console my server has stopping, What can I do to keep it active 24/7
This question isn't suited for StackOverflow but more of superuser.
You can try using docker containers for the server.
You can do this on all platforms with docker desktop for windows
You can use the screen command on Linux.
It's also recommended to seek a Minecraft host.

How to browse the file system in WSL 2 in Windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I used to be able to access the filesystem of WSL in Windows (such as via File Explorer) via a local file path.
I recently upgraded to WSL 2, and from what I've heard, the file system is on the network. Does anyone know how I could access files from within WSL2 from the Windows side?
Just type in the explorer: \\wsl$\

Delete SSH key without SSH access [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
My sshd is refusing to restart because of the following error:
# WARNING: UNPROTECTED PRIVATE KEY FILE! #
However, i cant figure out how to delete the unsafe ssh keys without having the ssh access. What to do?
You need to chmod 600 ~/.ssh/rsa_key.
This protects the keyfile from other users on the same system beeing able to read/steal it.

SSH - Wrong AllowUsers can't connect anymore [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I appended AllowUsers with the wrong user to my /etc/ssh/sshd_config then restarted the service. So I can't connect anymore.
Is there a way to recover without physical access ?
You would need to log in locally at the machine in order to fix it, quite simply.
If you have no local access to it, then you're in more dire straights, and need to deliberate with whomever it is that hosts the machine. If it's a server hosting firm, they often offer the possibility to reboot machines into some kind of rescue system, but you'd need to check with the hosting firm itself, since there's no universal formula for such things.

Connecting to remote server by ssh using ksh [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am trying to connect to a remote server through ssh.
$ssh "username"#host "command"
which prompts for password which can be done in interactive systems.But I want to automate this by passing the password as argument instead of typing interactively.
I am using ksh shell and I can't use expect is there any ksh specific solution to connect to remote server.
Just set up authentication keys so that you don't need passwords. See man ssh-keygen for full details.