Owen Ou

Results 107 comments of Owen Ou

I saw this error the other day. I think it's related to the RSA issue mentioned here: https://github.com/owenthereal/upterm/issues/93#issuecomment-1045387517. Could you back up your `~/.ssh` dir with something like `mv ~/.ssh...

Could you try another key type, e.g. Ed25519, as described here: https://github.com/owenthereal/upterm#a-note-about-rsa-keys. Please make sure the rsa key is purged from `~/.ssh` and the ssh agent.

Could you share the output of the `ssh` command with the `-vv` flags? For example, `ssh [email protected] -vv`

You are using the `id_ed25519` public key (`-i id_ed25519.pub`) instead of the private key for the `ssh` command. This also reflects in your logs: > debug1: Will attempt key: id_ed25519.pub...

You should be able to download the [ARMv6 Go compiler](https://go.dev/dl/), compile this project from source, and run the built binary on ARMv7. As far as I know, ARMv6 binaries also...

Could elaborate your use case of mosh?

@mweinelt: What command did you run? For example, if you run `bash` (e.g., `upterm host -- bash`) and the client types `exit`, the `exit` is sent to the `bash` command,...

This is related to https://github.com/owenthereal/upterm#a-note-about-rsa-keys. I recommend deleting the RSA key in your `~/.ssh/id_rsa` and generating an ed25519 key with something like `ssh-keygen -o -a 100 -t ed25519`

I agree this could be handled more gracefully, e.g. having a useful message saying RSA key issue etc. I'm closely monitoring the underlying Go crypto issue and will merge in...

> My agent still has RSA keys in it, might that be the issue? Yes, that's the issue. `ssh` will first attempt keys in the SSH agent if there is...