<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Juan JAC</title>
    <description>The latest articles on DEV Community by Juan JAC (@juan_jac_9c).</description>
    <link>https://dev.to/juan_jac_9c</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4016541%2F4fd353dc-7648-426a-b0cd-67870cd46010.png</url>
      <title>DEV Community: Juan JAC</title>
      <link>https://dev.to/juan_jac_9c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/juan_jac_9c"/>
    <language>en</language>
    <item>
      <title>How to Make LM Studio Truly Portable on Windows</title>
      <dc:creator>Juan JAC</dc:creator>
      <pubDate>Sun, 05 Jul 2026 18:08:40 +0000</pubDate>
      <link>https://dev.to/juan_jac_9c/how-to-make-lm-studio-truly-portable-on-windows-43ea</link>
      <guid>https://dev.to/juan_jac_9c/how-to-make-lm-studio-truly-portable-on-windows-43ea</guid>
      <description>&lt;p&gt;LM Studio is great for running LLMs locally, but by default it puts configs, cache, and models in your &lt;code&gt;%USERPROFILE%&lt;/code&gt; folder. If you have a small SSD or want everything on an external drive, here's the clean, official way to make it fully portable.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Models are huge (7B ≈ 4GB, 70B ≈ 40GB+)&lt;/li&gt;
&lt;li&gt;Cache and conversations pile up in &lt;code&gt;%USERPROFILE%&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Moving LM Studio's folder doesn't move the data&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Solution: &lt;code&gt;.lmstudio-home-pointer&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;LM Studio has a hidden feature — it checks for a file named &lt;code&gt;.lmstudio-home-pointer&lt;/code&gt; in your user home. If found, it treats the path inside as its home folder.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step by Step
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Step&lt;/th&gt;
&lt;th&gt;Action&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Create file &lt;code&gt;C:\Users\&amp;lt;yourname&amp;gt;\.lmstudio-home-pointer&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Write your desired path inside, e.g. &lt;code&gt;X:\LM Studio&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Install LM Studio for &lt;strong&gt;all users&lt;/strong&gt; to that exact path&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Crucial:&lt;/strong&gt; The final folder must be named exactly &lt;code&gt;LM Studio&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;Launch — all data now lives there&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Resulting Structure
&lt;/h2&gt;

&lt;p&gt;X:\LM Studio&lt;br&gt;
├── .internal\          # App state, cache, downloads&lt;br&gt;
├── bin\lms.exe         # Official CLI&lt;br&gt;
├── conversations\      # Chat history&lt;br&gt;
├── extensions\         # Backends: CPU, CUDA 11/12, Vulkan&lt;br&gt;
├── hub\                # Models from LM Studio Hub&lt;br&gt;
├── models\             # Your GGUF files&lt;br&gt;
└── LM Studio.exe       # Main app&lt;br&gt;
plain&lt;/p&gt;

&lt;h2&gt;
  
  
  Migrating to Another PC
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Copy the entire &lt;code&gt;LM Studio&lt;/code&gt; folder&lt;/li&gt;
&lt;li&gt;On the new PC, create &lt;code&gt;.lmstudio-home-pointer&lt;/code&gt; pointing to it&lt;/li&gt;
&lt;li&gt;Done — all models, settings, and conversations come with you&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Verified Setup
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Component&lt;/th&gt;
&lt;th&gt;Detail&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;OS&lt;/td&gt;
&lt;td&gt;Windows 11 23H2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPU&lt;/td&gt;
&lt;td&gt;NVIDIA RTX 3070 Ti 8GB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LM Studio&lt;/td&gt;
&lt;td&gt;v0.3.x&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Backends tested&lt;/td&gt;
&lt;td&gt;CUDA 12, Vulkan, CPU&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Full Guide
&lt;/h2&gt;

&lt;p&gt;All details: &lt;a href="https://gist.github.com/jjacmate10-ops/42b98db77dbb5bd041470089ff7bbe61" rel="noopener noreferrer"&gt;GitHub Gist&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Have you tried this? Any quirks on your setup? Let me know in the comments!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>lmstudio</category>
      <category>localai</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
