05-16-2020, 07:08 PM
(05-16-2020, 02:32 PM)PinetopPerkins Wrote:(05-16-2020, 09:37 AM)tgv34 Wrote: Hello,
Usualy it is enough to edit /etc/ssh/sshd_config to allow access then start the service with
sudo service ssh start
May be you ca find more on
https://askubuntu.com/questions/348714/h...041#599041
it still doesn't allow access. You need the public key from your computer on the Pinephone. The instructions you mention are for Ubuntu Touch on Android phones. We have a Pinephone, so....
How do we get the public key onto the Pinephone? Anybody????
There's a couple of ways you could do it. I generated a key on my pinephone with
Code:
ssh-keygen && mv ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys
Then copied the private key to my local nextcloud instance using the web browser.
You could also generate the key on your desktop then start a simple http server. Once that's running you could just go to your desktops IP and grab the public key.
Code:
python3 -m http.server --bind 0.0.0.0