RUSTBOOSTERGuides › Rust long loading times

Rust long loading times

Updated 2026-08-20 · Windows 10 / 11 · Rust

Rust loads slower than almost any modern game, and some of that is fair — the engine unpacks and warms up tens of thousands of objects. But ten minutes instead of two means a specific cause, and it is almost always one of the six below.

What healthy load times look like · 1. The game is on a hard drive · 2. RAM and the page file · 3. Antivirus scanning every file · 4. Launch options · 5. Steam overlay and background downloads · 6. Stuck on Loading Prefabs · Checklist

What healthy load times look like

Before fixing anything, know what you are aiming at. These are realistic numbers for a machine with an SSD and 16 GB of RAM:

StageNormalWhat is happening
Launch to main menu40–90 sAsset unpacking, EAC init
First join to a server2–4 minMap downloaded and generated locally
Rejoining the same server40–90 sMap comes from local cache
After a server wipe2–4 minNew map, cache no longer valid

If reaching the menu takes five minutes and rejoining a familiar server takes three, the problem is your system, not the game.

1. The game is on a hard drive

The most common cause and the one you cannot tweak away. Rust reads tens of thousands of small files while loading, and small random reads are exactly where a mechanical drive loses to an SSD by orders of magnitude. In practice: 2 minutes versus 12.

Check it in Task Manager → Performance → your drives. If disk activity sits at 100% while throughput crawls at 3–8 MB/s, you are watching an HDD bottleneck. You can move the library without reinstalling: Steam → Settings → Storage → pick the SSD folder → Move.

2. RAM and the page file

Rust can take 12–14 GB while generating a map. On an 8 GB system that means part of the data spills to the page file — that is, to disk — and load times stretch accordingly.

3. Antivirus scanning every file

Defender and third-party antivirus scan files as they are read. Rust reads tens of thousands of files during a load, and each one goes through the scanner. That adds minutes for nothing.

Add exclusions (PowerShell as administrator)
Add-MpPreference -ExclusionPath "D:\Steam\steamapps\common\Rust"
Add-MpPreference -ExclusionProcess "RustClient.exe"
Add-MpPreference -ExclusionProcess "EasyAntiCheat.exe"

Use your own path — Steam shows it under Manage → Browse local files. Excluding the game folder does not meaningfully lower your protection: those files are still scanned when they are downloaded.

4. Launch options

Steam → right-click Rust → Properties → Launch Options:

Rust launch options
-high -malloc=system -nolog -window-mode exclusive
OptionWhat it does
-highHigh process priority — loading gets CPU time first
-malloc=systemSystem allocator instead of the internal Unity one; noticeably faster loads on most systems
-nologSkips verbose logging, which is thousands of disk writes per load
-window-mode exclusiveExclusive fullscreen: faster loads and lower input lag

What not to add: -cpuCount and -maxMem by hand. The engine detects both, and guessed values usually make things worse.

5. Steam overlay and background downloads

6. Stuck on Loading Prefabs

Different problem: the bar stops on "Loading Prefabs" and never moves. That is a fault, not slowness. In order:

  1. Actually wait it out first — on the first launch after a major update this stage legitimately takes up to 10 minutes.
  2. Verify game files: Steam → Properties → Installed Files → Verify integrity of game files.
  3. Delete the settings and asset cache: close the game and remove %LOCALAPPDATA%\Facepunch\Rust. Settings reset, so copy your client.cfg first.
  4. Repair Easy Anti-Cheat: run EasyAntiCheat\EasyAntiCheat_Setup.exe from the game folder → Repair.
  5. Turn off Discord and GeForce Experience overlays — they are a frequent cause of hanging at exactly this stage.

Checklist

  1. Game on an SSD? If not, everything else is worth single-digit percentages.
  2. Page file enabled and on the SSD?
  3. Game folder excluded from antivirus?
  4. Launch options set?
  5. Steam overlay off, browser closed?

A typical result on an SSD system after all of this: 50–90 seconds to the menu and around two minutes to join a server you have played on before.

Do it in one click instead RUSTBOOSTER applies 160+ of these tweaks for you — graphics, network stack, power plan and background processes — and shows the honest FPS cost of each one. Windows 10 and 11, from 150 ₽. Get RUSTBOOSTER →

FAQ

Why does Rust load slower than other games?

Because of the procedural map. Rust does not load a prebuilt level — it generates terrain, vegetation and player structures locally from the server seed. That work lands on your CPU and disk, which is why it takes longer than games shipping fixed levels.

Does -malloc=system actually help?

On most systems yes, and noticeably — 20–40% faster to the menu. It makes Unity use the system memory allocator instead of its own. There are no known side effects, and if you see no gain you can simply remove it.

Should I delete the Rust folder in AppData?

Only as a fix for a hang, not as a speed-up. It wipes all settings including client.cfg, so back the config up first. On a healthy install that folder slows nothing down.

Will an NVMe drive load Rust faster than a SATA SSD?

Barely. Once you are off a mechanical drive, most of the remaining time goes to CPU-side unpacking and map generation, not reads. The difference between SATA and NVMe in Rust is a few seconds.

Rust can’t connect to server → Rust audio settings for footsteps → Rust Easy Anti-Cheat error → Rust high RAM usage →
© 2026 RUSTBOOSTER · rustbooster.ru · Questions: @CODER_PROJECT