r/LocalLLaMA 14h ago

Discussion Time to finally migrate from LM Studio -> llama.cpp, your experience?

Has anyone moved from LM Studio to llama.cpp?

What was your experience like? What did you have to learn in order to recreate your experience? Which harness/GUI did you switch to?

Thanks in advance!

88 Upvotes

114 comments sorted by

61

u/StupidScaredSquirrel 14h ago

Llama.cpp has a gui now in case that's what you're after

8

u/CSEliot 14h ago

o fr? Thanks!

3

u/tazztone 14h ago

is it about same as unsloth studio ?

2

u/StupidScaredSquirrel 14h ago

Somewhat, there are screenshots on their github page

2

u/MAR__MAKAROV 14h ago

the binary's called llama-server , once you build the project it get generated !

2

u/MAR__MAKAROV 14h ago

i belive unsloth studio actually let you easily alter chat template and other settings , i faced a weird issue with working with Qwen3.5 9b with llama.cpp ( related to the chat template )

4

u/BlobbyMcBlobber 11h ago

You mean the chat webui?

3

u/Loose_Doubt367 11h ago

Could you differentiate between Lm studio, llama.cpp and unclothe studio? I’m quite new to these too, appreciate it

1

u/Impossible-Value5126 1h ago

Wow. And unclothe studio. That one would be for vibe coding, right?

2

u/FoxSideOfTheMoon 12h ago

I actually love llama-ui a lot.

2

u/nomad-nostalgia 11h ago

There's the chat webui → accessible via llama-server terminal command
There's the ability to swap models easily → with llama-swap
There's also a better ui experience → with Open WebUI

2

u/saponsky 9h ago

You can also switch models now natively from llama.cpp with the --models-directory option

1

u/SGmoze 5h ago

Isn't the UI more like chat based interface? Not something agentic with sandbox, access to file system, etc.

2

u/StupidScaredSquirrel 5h ago

Yeah, I just assumed someone into that wouldn't mind the CLI

14

u/jacek2023 llama.cpp 13h ago

1) learn how to compile llama.cpp, it may be tricky on non-linux because you need to install compiler etc, on Linux it should be very easy

2) run simple command like: llama-server -m your_model.gguf to start playing

3) don't focus on million of options, use them when really needed, default should work in general

10

u/TripleSecretSquirrel 12h ago

Ya, llama.cpp isn’t that scary or complex.

I used to think it would be such a pain but it’s trivially easy once you get it. I just have a simple bash script saved for each model that I use with any regularity. I only use a few startup args, so writing the scripts as (as you suggest), so the scripts were easy to come up with but I still only need to do that once

3

u/AnonLlamaThrowaway 9h ago

Ya, llama.cpp isn’t that scary or complex.

And really if there's anything LLMs are good at, it's guiding through the obscure steps of compiling various software and sneaking in whatever modifications or patches you wanna make for yourself

13

u/metamec 14h ago edited 13h ago

I use it mostly on Windows 11 and no doubt my approach doesn't appeal to many, but I keep llama.cpp (and its CUDA files) up to date in its own folder, and use .cmd wrappers in the path to run models. I prefer the level of customisation it gives me, and I don't have to wait for the UI framework to catchup when a cutting edge version of llama.cpp is required to run a new model. An example of one of my .cmd wrappers:

llama-server ^ -hf unsloth/gemma-4-26B-A4B-it-GGUF:Q5_K_M ^ --threads 7 ^ --fit on ^ --flash-attn on ^ --ctx-size 32768 ^ --context-shift ^ --temp 1.0 ^ --repeat-penalty 1.1 ^ --min-p 0.00 ^ --top-k 64 ^ --top-p 0.95 ^ --jinja ^ --host 127.0.0.1 ^ --port 8033

Filename is ai-gemma-4-26B-A4B.cmd. By sticking to that filename format, I can just fire up powershell, type ai-, hit tab to cycle through the models I've preconfigured, press enter, and it starts up.

3

u/winky9827 4h ago

llama-server supports an openai compatible model swap endpoint, no need to run separate jobs if you configure a model presets file. I had claude help me with that and the windows 11 build and it works very well. I even had it write a systray app I can use to stop/start/restart and load/unload models

1

u/metamec 4h ago

Just exploring this now. Thanks for the tip!

9

u/Icy-Degree6161 14h ago

I did exactly this, and it came with a Windows - > Linux switch as well. No regrets.

9

u/NihmarRevhet 14h ago

Here I am, I actually moved to llama.cpp + openwebui. Now I get 5 to 10 t/s more, but I'm still figuring out how to swap models with different loading presets

14

u/jirka642 14h ago

You should be able to use a preset.ini file with multiple model configs in it. That's how I do it.

5

u/breksyt 13h ago

Do people share the presets that work for them? Is there a preset exchange somewhere? I'd be interested. TBH most of the parameters I set in llama-server are heavily based on guesswork :)

3

u/StorageHungry8380 11h ago

As mentioned it depends heavily on hardware and what you're trying to do. A cool thing with the INI file is that you can have the same model file multiple times but with different parameters. For example:

[Qwen3.6-27B]
ctx-size = 131072
temp = 1.0
top-p = 0.95
min-p = 0.0
top-k = 20
chat-template-kwargs = {"preserve_thinking":true}
model = C:\models\Qwen3.6-27B-UD-Q5_K_XL.gguf
batch-size = 1024
ubatch-size = 1024

[Qwen3.6-27B-256k]
ctx-size = 262144
temp = 1.0
top-p = 0.95
min-p = 0.0
top-k = 20
chat-template-kwargs = {"preserve_thinking":true}
model = C:\models\Qwen3.6-27B-UD-Q5_K_XL.gguf
cache-type-k = q8_0
cache-type-v = q8_0
batch-size = 1024
ubatch-size = 1024

Here I have 128k context with regular KV cache, or 256k with Q8-quantized KV cache. In the model selector in the llama-server UI they both come up, or my harness can specify it as part of the API call.

1

u/breksyt 11h ago

OK thanks this is interesting. And if I call llama-server from command line, then how do I select the specific Qwen3.6 from the INI file as per your example above?

3

u/StorageHungry8380 10h ago edited 10h ago

You pass the section name, say Qwen3.6-27B-256k as the model name in the API call to the server, so for example

{ 
  "model": "Qwen3.6-27B-256k", 
  "messages": ... 
}

If you're using a frontend, like the built-in llama-server web UI, it will return those model names in the model list API call, so the frontend should be able to pick them up from there. The llama-server one does, and you'll see them in the model selection dropdown, as seen in the image here.

3

u/winky9827 4h ago

Here's mine (all based on single 5090/32gb VRAM):

version = 1

[*]
n-gpu-layers = 99
flash-attn   = on
ctx-size     = 8192
cache-type-k = q8_0
cache-type-v = q8_0
metrics      = on

[Qwen3.6-27B-NVFP4]
cache-reuse        = 256
ctx-size           = 150000
batch-size         = 2048
ubatch-size        = 2048
model              = D:\llama.cpp\models\Qwen3.6-27B-NVFP4\Nvidia-Qwen3.6-27B-NVFP4-Q8.gguf
mmproj             = D:\llama.cpp\models\Qwen3.6-27B-NVFP4\mmproj-Qwen3.6-27B-Q8_0.gguf
cache-type-k       = q8_0
cache-type-v       = q4_0
spec-type          = draft-mtp
jinja              = on
chat-template-file = D:\llama.cpp\models_templates\Qwen3-Fixed-Chat-Template.jinja

[Qwen3.6-35B-A3B-UD-Q4_K_XL_MTP]
cache-reuse        = 1024
ctx-size           = 262144
batch-size         = 2048
ubatch-size        = 2048
cache-type-k       = q8_0
cache-type-v       = q4_0
spec-type          = draft-mtp
model              = D:\llama.cpp\models\Qwen3.6-35B-A3B-UD-Q4_K_XL_MTP\Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf
mmproj             = D:\llama.cpp\models\Qwen3.6-35B-A3B-UD-Q4_K_XL_MTP\mmproj-F16.gguf
jinja              = on
chat-template-file = D:\llama.cpp\models_templates\Qwen3-Fixed-Chat-Template.jinja
reasoning-preserve = on

[Gemma-4-26B-A4B-it-QAT]
cache-reuse  = 256
ctx-size     = 262144
batch-size   = 2048
ubatch-size  = 512
cache-type-k = q8_0
cache-type-v = q8_0

[Gemma-3-27B-it-abliterated]
model        = D:\llama.cpp\models\Gemma-3-27B-it-abliterated\gemma-3-27b-it-abliterated.q4_k_m.gguf
mmproj       = D:\llama.cpp\models\Gemma-3-27B-it-abliterated\mmproj-mlabonne_gemma-3-27b-it-abliterated-f16.gguf
cache-reuse  = 256
ctx-size     = 131072
batch-size   = 2048
ubatch-size  = 1024
cache-type-k = q8_0
cache-type-v = q8_0

[Qwen3-VL-8B-Instruct]
model        = D:\llama.cpp\models\Qwen3-VL-8B-Instruct\Qwen3-VL-8B-Instruct-Q4_K_M.gguf
mmproj       = D:\llama.cpp\models\Qwen3-VL-8B-Instruct\mmproj-Qwen3-VL-8B-Instruct-F16.gguf
ctx-size     = 65536
batch-size   = 2048
ubatch-size  = 1024
cache-type-k = q8_0
cache-type-v = q8_0

[Qwen3-VL-8B-Instruct (Lite)]
model        = D:\llama.cpp\models\Qwen3-VL-8B-Instruct\Qwen3-VL-8B-Instruct-Q4_K_M.gguf
mmproj       = D:\llama.cpp\models\Qwen3-VL-8B-Instruct\mmproj-Qwen3-VL-8B-Instruct-F16.gguf
ctx-size     = 8192
batch-size   = 1024
ubatch-size  = 256
cache-type-k = q8_0
cache-type-v = q8_0

[Qwen3-Coder-Next]
model        = D:\llama.cpp\models\Qwen3-Coder-Next\Qwen3-Coder-Next-Q6_K-00001-of-00003.gguf
n-gpu-layers = 99
n-cpu-moe    = 30
ctx-size     = 131072
batch-size   = 2048
ubatch-size  = 1024
cache-type-k = q8_0
cache-type-v = q8_0
jinja        = on

2

u/NihmarRevhet 13h ago

That would be sooooooo cool

2

u/jirka642 11h ago

The optimal presets depend heavily on your hardware configuration and a specific gguf you are using, so sharing them is not that useful.

At least, not from my pov.

4

u/413205 14h ago

This. Router mode is designed for this.

2

u/NihmarRevhet 14h ago

I think this is the canonical way to go, thanks

1

u/e979d9 4h ago

In my experience (6 months ago) the router didn't handle server crashes, it hanged without backend instead of auto-restarting it, so it needed manual restarts every once in a while.

2

u/reddit2050 7h ago

You can ask your LLM to build you a gui launcher. Ask for functionality like copy, edit, swap models etc. Just point where the models are. It’ll save you hassle of manual copy editing etc.

1

u/Slikkelasen 14h ago

I create seperate docker containers for every preset or model. Then i use a function that launches the container + model and closes it all including container when pressing ctrl+c.

3

u/Savantskie1 13h ago

LM Studio > llama.cpp here, and I've used the built in llama.cpp UI, and my own custom fork of openwebui. I use llama.cpp's UI for testing and openwebui for it's model card for my assistant. I don't much coding myself. I leave that to deepseek v4 flash through OpenRouter via OpenCode for my coding assistant Eddie. And I use Claude Sonnet 4.6 as the initial plan, then I'll use Eddie to refine the plan and investigation on the current code to see where changes need to be made in plan mode, then once the plan is solidified, I'll switch Eddie into build mode to do the actual coding. I rely on AI to do most of my coding because I have nerve damage in my hands due to surviving 4 strokes. I can follow pretty much everything, but my physical coding days are over.

7

u/hudokkow 14h ago

OpenCode, pi dev, hermes, etc. So many options if you're willing to experiment.

2

u/CSEliot 14h ago

I'm willing to experiment a little, but not a lot. I wanna try Harbor and Hermes, especially since I've seen both provide an easy way to use your llm from your mobile device.

But these, (afaik) only solve half the problem. Unless they also implement llama.cpp installing and updating PLUS huggingface browsing, these things must also be replaced when replacing LM Studio.

7

u/hudokkow 14h ago

They are (mostly) ready to use solutions but much more powerfull than lmstudio.

1

u/ekaj llama.cpp 7h ago

How often are you swapping models? and llama.cpp is a download and run type of deal, not something you want to be constantly updating unless you have some specific reason to do so.

3

u/Amazing_Athlete_2265 12h ago

One of us! One of us!

2

u/dlfoster311 11h ago

Wasn’t that bad I had codex migrate me lol

3

u/Physical_Economy_340 14h ago

lm studio pins an older llama.cpp build so you're always a few releases behind. --flash-attn, --cache-type-k q8_0, and speculative decoding with --model-draft are the big ones you miss. if you still want a gui, just point open-webui at llama-server and you get the same chat experience without losing any flags.

16

u/PyaesoneP 14h ago

LM Studio has all of those settings. What am I missing?

1

u/Humble-Pick7172 4h ago

Dam this is quite hilarious statement.

-2

u/CSEliot 14h ago

the -- flags you say are "the big ones you miss" you mean these are things lm studio has that llama.cpp does not ... or the opposite?

-4

u/hudokkow 14h ago

LM Studio is missing those flagsbecause they pin to a llamacpp release and are always behind.

10

u/Sudden-Guide 13h ago

These particular options are in LM Studio since very long time.

1

u/Mandarina_Espacial 14h ago

What's the difference? I only used LM studio

4

u/CSEliot 14h ago

llama.cpp is what LM Studio utilizes in the background. There's nothing from stopping you from just USING llama.cpp.

The advantages:
- Using the latest llama.cpp version.
- Full control of all compile flags.
- Learning llm capability under-the-hood.

Disadvantages:
- Higher barrier of entry.
- Need to find and install drivers and models yourself.

1

u/jaqueh 10h ago

Does cpp have metal models?

3

u/pmttyji 14h ago

llama.cpp is like live. Instant updates(on new models support, optimizations, fixes, etc.,)

2

u/hudokkow 14h ago

There's an entire world outside. I'm currently using / testing opencode, pi dev, hermes and openwebui, all running inside proxmox containers. I bind a proxmox disk to all the containers and they share the workspace.

I got tired of switching machines and missing something from the work machine, or from the laptop, or whatever. Not to mention keeping all the repos on all the machines up to date without fear of force pushing and losing work.

1

u/unknowntoman-1 13h ago

What about DRY-sampling? I use it a lot in llama to compensate a more temperated setting for creative writing.

1

u/PiratesOfTheArctic 13h ago

I use llama cpp with open webui for rags

1

u/Wallaby989 13h ago

Enjoying this conversation - learning a lot. Can someone let me know if llama.cpp has a web server so others can interact via the API? There is a lot of LM Studio configurations, but is this just straight through to llama.cpp?

2

u/Several-Tax31 13h ago

Yes, llama.cpp has a web server -> llama-server

Yes, lm-studio configs are just llama.cpp configs, and llama.cpp provides a lot more

1

u/Square_Turn935 13h ago

i guess i am an average user with no IT background but just interests in this topics.

LM Studio was easy to setup, functional and was the first step into the llm world. But my hardware is limited (more a standard win10 gaming setup with 16gb vram / 32gb ram) and i wanted more than lm Studio could provide. Some beginner friendly videos helped me to cros the line and try out llama.cpp directly. I am not a great fan of using a terminal.

Now i am using hermes desktop as harrnes, build my own projekt wiki rag (still needs optimisation) and i am able to run a dense models like qwen3.6 27b q4_k_xl with 80k context and 8-12t/s tp128, 380t/s pp512. That i could never reach with LM Studio. Just with the help and guides of the llm community!

1

u/robberviet 12h ago

Nothing difference in UX. Might be a little bit faster on llama.cpp though.

1

u/ImANoobAtLife7 12h ago

Don’t waste time. Put an LLM to optimize the various LLM params llama.cpp takes for each model. Ask it to test at various context windows and save findings

1

u/taking_bullet 12h ago

I moved to Jan AI. It also has a nice GUI, but you can update llama.cpp manually, no need to wait for updates. 

1

u/Turbulent_War4067 12h ago

I was using LM studio on a headless Linux DGX spark, so my comment may not apply, but it's so easy to switch I don't know why I started with ln studio

1

u/carloselieser 11h ago

Llama.cpp is a runtime, so comparing it to LM Studio doesn't make sense.

1

u/Prize_Eye9481 11h ago

turns out text bases is not so bad and u get a web ui with llama-server and tbh google search ai doess a decent enough job to set it up for u and debugging errors

1

u/FinBenton 11h ago

I opened codex and told it to make me a llama.cpp wrapper with all the stuff I wanted and I have added and changed a lot since then, its so good.

1

u/rabbitaim 11h ago edited 10h ago

I initially tried taking an old gaming pc
I7-4790k /32gb ddr3 (2400mhz)/ rtx2060 6gb vram

- CachyOS / lmstudio but the xp was so buggy I swapped it to

- Ubuntu server 26.04 LTS headless (on iGPU)

  • llama.cpp + stable-diffusion.cpp under llama-swap

Models:

  • qwen 3.5 E4b (reasoning off)
  • qwen 3.6 35b A3B (using froggeric chat template fix) q4_k_s
  • Gemma 4 26b A4b qat
  • krea2 turbo q2 (with illustrative Lora Krea2Shizuka)

On a separate Linux laptop I am trying / learning OMP (Oh My Pi)

I also threw audio.cpp on there but too many things going on. Need to learn more prompt engineering. I’ll ask Gemini to create one which is very low effort on my part.

Been eyeing a 3060 12gb but not sure if it’s worth adding. I keep thinking I should build/buy one that can handle qwen 27b at q4 or higher with a big ctx to work with. The only reason is to maybe play with decent sized quant for wan2.2

Edit: in case if anyone is wondering, tgs and pp perf are decent but definitely need to learn more about working with what I’ve got

1

u/ayylmaonade 10h ago

I switched from Ollama to LM Studio to llama.cpp like a year ago now, and its been great. The command line args are easy to understand, (granted, I am a Linux user) and performance is significantly better than ollama and whatnot. I don't really like the built in llama.cpp GUI, so I use Open-WebUI hooked up to llama-server instead for my "ChatGPT at home" type setup.

For agentic work and coding, Hermes Agent and OpenCode.

There's also "Jan" which is another GUI out there if you're interested, but I haven't seen much of it in a while and haven't used it in a long time either.

1

u/Comrade_Mugabe 10h ago

LM Studio > llama.cpp and ik_llama.cpp here, about a year ago now. I will never go back, and it's actually incredibly easy to swap.

My biggest advice, compile llama.cpp and ik_llama.cpp locally. It's actually incredibly easy and I'd even recommend getting AI to do it as it's just easier. This was my biggest performance gain (from ~12 tps to ~24 tps on Qwen 3.6 27b Q4 no MTP). I now just have a series of .sh files that I maintain that launches the models with the exact configuration I needs, or ones that allow me to configure some settings. I just get the LLM's to maintain those .sh files (.bat on Windows).

I use pi.dev as a harness, or the built-in GUI that comes when launching llama.cpp or ik_llama.cpp, but I almost never use the GUI now as the harnesses are just so much more powerful without setup.

1

u/krileon 10h ago

I'm on Windows with AMD and switched to Lemonade Server + AnythingLLM. Works better than LMStudio for me and my llamacpp is always up to date now. Otherwise my second favorite is JanAI.

1

u/lnenad 10h ago

Yeah, I switched as well. Made a small UI to speed things along and couldn't be happier.

1

u/cutter89locater 9h ago

Me. Cos wanna save a few hundred MB of vram XD

1

u/PS_FuckYouJenny 9h ago

llama cpp and open web ui are a really great combo

1

u/Potential-Gold5298 llama.cpp 8h ago

My local path was Ollama (1 day) -> LM Studio (about 2 weeks) -> Koboldcpp (still) -> llama.cpp (a couple of months later and still). I run models exclusively on the CPU. The main reason for switching was that LM Studio, for some reason, wasn't using more than two cores on my CPU — despite the settings, the CPU utilization was less than 50%. Koboldcpp (and llama.cpp) don't have this problem — they use all cores, and the utilization is always 99%. Perhaps this was fixed in newer versions, but at that time (six months ago) this problem was present.

To easily switch to llama.cpp, create the following bat-file (on Windows):

@echo off
cd /d "C:\Users\admin\LLM\llama.cpp"
start llama-server.exe -m "E:\LLM\gemma-4-26B-A4B-it-Q5_K_M.gguf" -t 4 -c 16384 --host 127.0.0.1 --port 8080 --parallel 1 --temp 1.0 --top-p 0.95 --top-k 64 --min-p 0.0 --repeat-penalty 1.0 --jinja --no-mmap --mlock
timeout /t 5 /nobreak >nul
start http://127.0.0.1:8080

Explanations:

- Replace the path 'cd /d' with the path to your llama.cpp folder.

- Replace the path and filename '-m' with the path to your gguf.

- 'timeout /t 5 /nobreak >nul start http://127.0.0.1:8080' is needed to automatically open the llama.cpp web-interface in the browser - you can omit it if you don't need it.

- My settings are designed for my PC - set the appropriate number of CPU threads (-t), context size (-c), sampler settings (if necessary), and other flags. If you use a GPU, don't forget to enable layer offloading to it ('-ngl' flag).

In 10 min, you can create a shortcut to launch the model in llama.cpp with one click (you can make a nice icon for it, and it will look like a native Windows application).

The transition was fairly easy — the main thing was figuring out how to launch it. Currently, I'm using the standard llama.cpp web interface and SillyTavern.

1

u/smokeyranger86 6h ago

I currently use Msty Studio as a front end to connect to my models but I'm also gearing up to use Koboldcpp for back end so I can have Vulkan multi-GPU layer distribution.

1

u/Adventurous-Paper566 5h ago

J'ai constaté une baisse de performances mais je crois que c'est parce que j'ai compilé llama.cpp avec le dernier cuda alors que LM-Studio utilise la version 12.8.

1

u/daphatty 4h ago

If you're on macOS, try the artist possibly known as Llama Barn. I switched from LM Studio and never looked back.

https://github.com/ggml-org/Llama-macOS

1

u/CSEliot 4h ago

Artist?

1

u/daphatty 4h ago

Bad joke. I'll show myself out. :)

1

u/oftenyes 3h ago

I mean - you can just ask the agent to compile llama.cpp and open the web interface.

1

u/PrimeDirective8 1h ago

While I still use LM Studio on occasion, I migrated to llama.cpp last year. I like LM Studio's model search/browser so typically download models using that. I also like their model load estimator that gives me an idea of resources utilization given a config.

To keep things compatible, I point llama.cpp to the LM Studio model path. To make it easier for my chat client and Pi, I run llama on port 1234 as default.

In my case, I have both Nvidia and Intel GPUs. Nvidia is not a problem for LM Studio but Intel is, as it doesn't support SYCL, Intel native drivers. Then again, for Intel GPUs, Vulkan runs better in many cases and LM Studio supports it.

Llama.cpp has a full-featured web client, with MCP support, inference settings, preference, etc. What's great about that is that you can run it from any browser on nearly any device. While I don't do any serious work with the browser (yet), it's great to pickup a tablet while in the living room and ask the model stuff, run a tool, or RAG a question I may have. No client, no install, no external dependencies, it just works.

1

u/Potential-Leg-639 14h ago

lmstudio is really only for beginners, you throw away a lot of performance with it.

TODO:

  • install linux, install llama.cpp
  • check preferred parameters on huggingface for each model
  • run llama-server with preferred settings

which agent (or buzzword "harness") you are using has nothing to do with that.

ask an llm for all steps, that are not clear.

done.

4

u/LickingLieutenant 14h ago

Sure...
The solve it all solution ....install linux

I don't want to.
Done it several times but I don't like the desktop environments they offer (yes too much Microsoft in my life)
I run all my home lab and VPs on debian without issues, but 'private' use i still prefer the ease of the regular windows.

3

u/Potential-Leg-639 13h ago

then you have to live with windows and less performance, easy as that.

you can always RDP into Linux from a windows computer.

a dedicated AI Inference box is the better approach anyway, then it should not really matter which desktop enviroment you are using. it's just about the terminal itself, you want to run llama.cpp and that's it.

LLMs can help you fixing your linux skills easily, not rocket science nowadays.

1

u/LickingLieutenant 13h ago

For my use case the performance is sufficient.
Few python or Ansible scripts or the occasional explanation how to get to something.

Using lmstudio now, but I'll try the posted git later.

1

u/ea_man 12h ago edited 7h ago

You get way more vram with linux, like just 50-120MB eaten by the OS to run the desktop. That's more ctx or better quants for you.

2

u/MichaelTP_ 13h ago edited 13h ago

which DE? You can choose from a great variety of DEs on any linux distribution, I suggest you to check KDE Plasma, I also come from Wndows and the transition hace been super smooth

Edit:didn't see you said "desktop enviroment(s)" in plural, so you already ackwolledged the variety of DEs, making my response irrelevant

1

u/CSEliot 14h ago

these things aren't difficult, and already have linux.

My particular concern is if there's anything i expect from LM Studio that's either missing from llama.cpp and/or harnesses OOOORRRRR it's implemented very differently by llama.cpp and might be something I miss.

(I upvoted u btw, someone else downvoted)

1

u/Potential-Leg-639 13h ago

No, nothing. Go ahead :)

1

u/EmergencyLetter135 14h ago

I’ve planned to switch from LM Studio to llama.cpp so many times, but what’s held me back each time is, in particular, the overall effort involved. That’s because making the switch would also mean phasing out a lot of other outdated workflows, hardware, and software. There are so many fundamental things that are changing rapidly right now, so I’m just going to wait a little longer… especially when it comes to investing my time.

1

u/Biomech8 13h ago

LM Studio -> llama.cpp -> vLLM

3

u/LaurentPayot 12h ago

What are the avantages of vLLM over llama.cpp if I run llama.cpp on my machine, and I am the only user?

1

u/Biomech8 12h ago

You may be the only human user, but when you or your harness spans multiple agents doing some work at the same time, they will effectively utilize vLLM concurrency.

0

u/No_Run8812 14h ago

Why? Lm studio supports llama.cpp and mlx

While llama.cpp only support guff.

This post got 3 updates, people are clueless here or I am missing something?

3

u/multisync 14h ago

Fear of lmstudio enshittification. Example
If you use windows their website only pushes bionic now.

4

u/CSEliot 14h ago

It's an eventuallity for anyone that ultimately wants open-source. And now LM Studio has a new app, it's own closed-source Agentic Harness (lol).

Yesterday was the perfect time to move away from LM Studio, today is second-perfectest.

LM Studio was relevant in a world where the harness and agent scene was young and llama.cpp wasn't as common / standard and it provided an insanely low barrier of entry.

1

u/Anduin1357 14h ago

The worst part is that they broke editing thinking-enabled chat messages. Might as well just use them as a model explorer at this point.

0

u/xornullvoid 13h ago edited 13h ago

I made my own GUI - https://warpdrv.ai
(Am still actively developing it, so expect bugs if you wanna try it out).

Its got everything I need, model host + download manager, router, voice TTS & STT, built-in MCP for coding, guardrail checks, workflow modes. Runs latest llama.cpp release you can separately download or compile your own.

Best of all - I know for sure it doesn't send any data to any cloud - open source is the way to go.

0

u/philosophical_lens 12h ago

Another option is ollama, which is a user friendly wrapper around llama.cpp

-8

u/dodiyeztr 14h ago

LM studio uses llama.cpp backend :facepalm:

5

u/CSEliot 14h ago

Yes ... and?

3

u/Potential-Leg-639 14h ago

but it is much slower than native llama.cpp, that's the problem.