dcremonini commented on issue #37: URL: https://github.com/apache/openserverless/issues/37#issuecomment-2278123317
Hi, @saadmanrafat thank you for reporting this issue. @saadmanrafat you said that `multipass transfer $HOME/.ssh/id_rsa.pub openserverless:` doesn't work. You are right: I previously reproduced this as well, and it is related to this issue https://github.com/canonical/multipass/issues/1433 The command @saadmanrafat suggested `multipass exec openserverless -- bash -c "cat id_rsa.pub | tee -a .ssh/authorized_keys"` works as long as the working directory is the parent of the `.ssh` one. A possibly better version is: `multipass exec openserverless -- bash -c "cat $HOME/.ssh/id_rsa.pub | tee -a .ssh/authorized_keys"` so I will put this in the documentation (that we are revamping). We will fix the documentation accordingly. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@openserverless.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org