惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
博客园 - 叶小钗
V
V2EX
博客园 - Franky
博客园_首页
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
S
SegmentFault 最新的问题
B
Blog RSS Feed
博客园 - 【当耐特】
D
Docker
N
Netflix TechBlog - Medium

Runpod Blog.

DeepSeek V4 in the wild, and how to run it on Runpod New Runpod datacenter now live: AP-IN-1 Track GPU spend across your team with Cost Centers The GPU supply supercycle is here. Here’s what AI builders need to know. Community Spotlight: One-click AI image and video generation on Runpod with SwarmUI | Runpod Blog Community Spotlight: LoRA Pilot Data Prep to Inference Introducing the Runpod Assistant: Manage Your Cloud GPU Resources with Natural Language OpenAI's Parameter Golf: Train the Best Language Model That Fits in 16MB on Runpod LLM inference optimization: techniques that actually reduce latency and cost Pruna P-Video and Vidu Q3 public endpoints now available on Runpod Runpod brand spelling guide Quickstart - Runpod Documentation The AI market looks nothing like the narrative Training StyleGAN3 with Vision-Aided GAN on Runpod KoboldAI – The Other Roleplay Front End, And Why You May Want to Use It How to Connect Cursor to LLM Pods on Runpod for Seamless AI Dev Community Spotlight: How AnonAI Scaled Its Private Chatbot Platform with Runpod Prompt Scheduling with Disco Diffusion on Runpod Runpod's Latest Innovation: Dockerless CLI for Streamlined AI Development Run Your Own AI from Your iPhone Using Runpod Introducing Flash: Run GPU workloads on Runpod Serverless: No Docker required Use Claude Code with your own model on Runpod: No Anthropic account required Avoid Errors by Selecting the Proper Resources for Your Pod What hackers built on Runpod at TreeHacks 2026 Easily Back Up and Restore Your Pod with Cloud Sync + Backblaze B2 The Complete Guide to GPU Requirements for LLM Fine-Tuning AI Guides, Tutorials & GPU Infrastructure Insights | Runpod Your first Claude Code project within Runpod: a complete setup guide 10 billion Serverless requests and counting Building for resilience: Runpod’s response to the AWS us-east-1 outage
How Do I Transfer Data Into My Runpod?
Brendan McKeag · 2025-01-17 · via Runpod Blog.

We've got a number of questions recently about how to transfer data into pods, and while do we have some transfer methods in our docs we'd like to go into a bit more detail on how to upload files into your pod.

In general, for large files, you'll want to ensure that they are hosted on the Internet before sending to your pod - simply because if you upload from your local computer you will be limited to whatever upload speed your local internet connection is capable of, and for home-based Internet this may not be fast enough to transfer multiple gigabyte files, especially on a regular basis. This may work fine for smaller files or as one-offs, but for routinely sending large models, for example, we would recommend uploading to Huggingface once so you can repeatedly pull files from there instead.

Without further ado, here's a rundown of the most popular methods.

runpodctl

runpodctl is our simple little official commandline utility that you can use to send files back and forth between the pod and your local computer, or to send files back and forth between pods.

- Instructions for Windows, Linux, and macOS

- Video tutorial for Stable Diffusion via Web UI on Runpod cloud services

To summarize, you use runpodctl with a send command in the terminal where the file is:

It will give you a command and a passphrase to run where the file is to be sent:

Note that you do not need to open any HTTP or TCP ports to use runpodctl - terminal access is enough. You don't need to download locally from one pod to send to another - you can just run runpodctl on the pod itself to send files directly without using your local computer as a middleman.

Drag and drop through VSCode / Jupyter Notebook

If your code has one of these editors enabled, you can drag and drop straight from your desktop straight into the file structure of the pod with a supported browser- or failing that, use the upload function from the menu in the editor.

macOS Finder window next to the VS Code file explorer with hyvideo_t2v_example_01.json selected

wget

If the file is out there retrievable on the Internet, you can use wget in the pod terminal to pull the file straight from that server.

Note that certain sites like CivitAI require an API key to download files from their servers, so special utilities like the CivitAI downloader may needed instead.

git

You can git clone repositories from git or Huggingface including large models by cloning the repo:

Remember to install and initialize git lfs if you intend on bringing down any files over 100mb:

scp / rsync

The general syntax for sending files to a Pod with SCP is as follows (execute this on your local machine, and replace the x's with your Pod's external TCP port and IP; for this example, they are 43201 and 194.26.196.6, respectively):

Example of sending a file to a Pod:

If you want to receive a file from your Pod, switch the source and destination arguments:

The general syntax for sending files to a Pod with rsync is as follows (execute this on your local machine, and replace the x's with your Pod's external TCP port and IP):

Learn more about scp and rsync.

Package-specific methods

If you're using a pre-built package, these often have methods to download files provided. This will vary depending on the package. For example, text-generation-webui has a download-model.py you can call with a neat threaded downloader:

RFC 1149

If you've got enough carrier pigeons or other suitably equipped birds available, feel free to print packet data out, attach it to their leg, and direct them towards your host's server's physical location. Note that this may not be particularly viable if you are on a different continent than the host as severe packet loss may occur.

Photo of a yellow canary perched on a tree branch against a blue sky

(... okay, no, that's not a thing. There are no plans to implement RFC 1149 at Runpod at this time.)

But if you have any questions on specific transfer methods, feel free to refer to our docs!

Author profile: Brendan McKeag