21 lines
498 B
Markdown
21 lines
498 B
Markdown
---
|
|
layout: Website.PostLayout
|
|
title: Faster Steam Downloads
|
|
date: 2024-02-28
|
|
categories: blog
|
|
permalink: /blog/faster-steam-downloads
|
|
---
|
|
|
|
To get faster steam downloads in linux:
|
|
|
|
create `~/.steam/steam/steam_dev.cfg` and add:
|
|
|
|
```elixir
|
|
@nClientDownloadEnableHTTP2PlatformLinux 0
|
|
@fDownloadRateImprovementToAddAnotherConnection 1.0
|
|
```
|
|
|
|
restart steam, start a download, and you should notice a better download rate.
|
|
|
|
for me it went from capping at 100mbps to now going 500+mbps like it should.
|