===== Warning! =====
* As this is the Linux superuser account, you are strongly encouraged to [[https://remarkablewiki.com/tech/file_transfer#making_local_backups|make backups]].
* Firmware updates and [[https://remarkablewiki.com/trouble/factory-reset|factory reset]] will change your SSH password. **Writing down your password is recommended, but not enough! It is strongly recommended that you set up a [[#Passwordless_Login_with_SSH_Keys|passwordless login with SSH keys]].**
* If your operating system is using OpenSSH 8.8 or later, you will need to [[#OpenSSH_8.8_and_later|manually enable ssh-rsa keys]].
This guide will teach you how to log into your reMarkable from your computer. There is a separate article on [[https://remarkablewiki.com/tech/file_transfer|how to transfer files]].
===== Finding your Password and IP Address =====
Connect your reMarkable to Wi-Fi or via USB (or both), and you will find your SSH password and IP address (or addresses) in the settings menu.
* Settings > Help > Copyrights and licenses > General information (scroll down)
===== Connecting via SSH =====
On Windows, you have to first enable the official [[https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse#install-openssh-using-windows-settings|OpenSSH client]]. Then open a command line prompt (Windows Key + R, type 'cmd', press Enter).
On MacOS and Linux, you already have an SSH client, so just open Terminal.
If you connected your reMarkable via USB, enter the following command:
ssh root@10.11.99.1
If you connected your reMarkable via Wi-Fi, the IP will be assigned by your router and can vary greatly depending on your network configuration. Usually it takes the form below. Replace ''x'' with the appropriate number.
ssh root@192.168.0.x
Then enter your reMarkable password. The password will not be shown as you type it.
===== Tips =====
==== SSH Config File ====
You can set up an alias that is easier to remember by adding the following lines to the ''~/.ssh/config'' file on your computer:
host rem
Hostname 10.11.99.1
User root
Port 22
IdentityFile ~/.ssh/id_rsa
The file above will allow you to login by entering ''ssh rem'' (instead of ''ssh root@10.11.99.1'') and [[https://remarkablewiki.com/tech/file_transfer|transfer files]] with ''scp