# Transfering games

LudOS will only be able to launch games copied to the computer it is running on.

You need to transfer these games using one of the recommended methods.

## Over network, using Windows Shares (SAMBA)

The most convenient way to transfer games is to connect your computer to the local network and transfer games using Windows Share protocol.

You need to enable SAMBA in the settings interface:

![](/files/-MbQGDzaCcgorhA84XYj)

Then from another computer, you should see a network drive appear in your file explorer:

TODO

You can open LudOS network share and you will see a folder called ROMs. This is where you copy your roms.

## Over network, using SSH

This is for more advanced users who already know how to use SSH.

First thing you will need is the IP address of the LudOS computer. From another Linux machine, you can do:

```
sudo arp-scan -l
```

You can also find the IP by looking in your router web interface.

Once you know your the LAN IP of your LudOS box, you can SSH in this way:

```
ssh root@192.168.0.101
```

The IP used here is an example. Please use yours instead.

SSH default credentials are `root:ludos`

We recommend that you change them if you intend to keep SSH open, for security reasons.

If you can successfully connect, then transferring ROMs become possible using SCP. For this, logout of SSH using the `exit` command and start transferring ROMs this way:

```
scp -r path/to/roms root@192.168.0.101:roms/
```

## What ROMs to use

Please refer to Ludo documentation on which roms to use:

{% content-ref url="/pages/-Mas2mx8PBgFa3ls\_jvn" %}
[Launching games](/ludo/launching-games.md)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jean-andre-santoni.gitbook.io/ludo/ludos/transfering-games.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
