Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add initial step to connect via Wi-Fi #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ git clone --recursive https://github.com/lucasrla/remarkable-utils.git

## SSH setup

1. On your reMarkable tablet, go to `Menu > Settings > Help > About`, then tap on `Copyrights and licenses`. In `General information`, right after the section titled "GPLv3 Compliance", there will be the username (`root`), password and IP addresses needed for `SSH`.
1. Make sure your reMarkable tablet is connected to the Wi-Fi

2. Add the following lines to your `~/.ssh/config`
2. On your reMarkable tablet, go to `Menu > Settings > Help > About`, then tap on `Copyrights and licenses`. In `General information`, right after the section titled "GPLv3 Compliance", there will be the username (`root`), password and IP addresses needed for `SSH`.

3. Add the following lines to your `~/.ssh/config`

```
Host remarkable
Expand All @@ -35,11 +37,11 @@ Host remarkable
ForwardAgent no
```

3. Have a public key ready at `~/.ssh/`
4. Have a public key ready at `~/.ssh/`

4. Run `ssh-copy-id remarkable`
5. Run `ssh-copy-id remarkable`

5. Type your device password. You should see an output similar to:
6. Type your device password. You should see an output similar to:

```
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/Users/<USER>/.ssh/id_rsa.pub"
Expand All @@ -50,7 +52,7 @@ [email protected]'s password:
Number of key(s) added: 1.
```

6. Let's test it out. Type `ssh remarkable`:
7. Let's test it out. Type `ssh remarkable`:

```sh
ssh remarkable
Expand Down