Copy files from laptop to Steam Deck
• 78 words • 1 min • updated
⚠️ This post is over one year old. It may no longer be up to date or relevant. Opinions may have changed.
Let’s say the files you want to copy are in ~/Downloads.
Start a local HTTP server on your laptop:
$ cd ~/Downloads
$ python3 -m http.server
Serving HTTP on :: port 8000 (http://[::]:8000/) ...Find the IP address of your laptop within your LAN:
$ ifconfig # macOS
$ ip addr # linuxNow go to your Steam Deck, access http://<ip>:8000 via the installed web
browser, and download your files.
Alternatively, run wget / curl in a terminal.