<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.rhlug.org//api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andrew</id>
	<title>RHLUG Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.rhlug.org//api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andrew"/>
	<link rel="alternate" type="text/html" href="https://wiki.rhlug.org//index.php/Special:Contributions/Andrew"/>
	<updated>2026-04-08T01:53:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.rhlug.org//index.php?title=Installing_MATLAB&amp;diff=895</id>
		<title>Installing MATLAB</title>
		<link rel="alternate" type="text/html" href="https://wiki.rhlug.org//index.php?title=Installing_MATLAB&amp;diff=895"/>
		<updated>2025-10-14T01:12:33Z</updated>

		<summary type="html">&lt;p&gt;Andrew: code blocks&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install MATLAB: ==&lt;br /&gt;
&lt;br /&gt;
=== Install with MATLAB package manager ===&lt;br /&gt;
Replace `/usr/local/MATLAB/` with whatever you want, it may make more sense to have it in your home directory.&lt;br /&gt;
&lt;br /&gt;
It needs to run with permission to edit files for authorization, if it is not owned by you run: &amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;chmod -R 777 /usr/local/MATLAB/&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Install your preferred release ====&lt;br /&gt;
you can make a new folder for each and have multiple or just use a single folder and overwrite your previous install&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;mpm install --release=R2025b --destination=/usr/local/MATLAB/R2025b MATLAB Simulink Control_System_Toolbox&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== General install tips ===&lt;br /&gt;
&lt;br /&gt;
==== gnutls breaking changes ====&lt;br /&gt;
If you are running a bleeding edge distro you will have to downgrade gnutls to 3.8.9, can be found here for arch: https://archive.archlinux.org/packages/g/gnutls/gnutls-3.8.9-1-x86_64.pkg.tar.zst&lt;br /&gt;
&lt;br /&gt;
Simply unzip all the *.so.[number] files into some sort of library directory specifically for MATLAB to preload it when launching MATLAB, something like `/usr/local/MATLAB/R2025b/lib` will do. Then in your .desktop file prepend &amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;LD_LIBRARY_PATH=/usr/lib/dri/:/usr/local/MATLAB/R2025b/lib/&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== .desktop file tips ====&lt;br /&gt;
Copy the desktop file to your personal desktop file area to customize how it launches&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;sudo cp /usr/share/applications/matlab.desktop ~/.local/share/applications/matlab.desktop &amp;amp;&amp;amp; sudo chown [user] [user] ~/.local/share/applications/matlab.desktop&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
change the exec line to keep existing preloads, directly call the the file, and have the startup folder preference be respected:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;Exec=env &#039;LD_PRELOAD=/usr/lib/libfreetype.so:/usr/lib/libstdc++.so:/usr/lib/libfontconfig.so&#039; LD_LIBRARY_PATH=/usr/lib/dri/ /usr/local/MATLAB/R2025b/bin/matlab -desktop -useStartupFolderPref&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== UI size ==&lt;br /&gt;
In some 2025 release the ui zoom was disabled, you can set it in the MATLAB command window with:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;settings().matlab.desktop.Zoom.PersonalValue=150&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if you want to tab through the possible settings you can change run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
s=settings&lt;br /&gt;
s.[ctrl+space/tab]&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andrew</name></author>
	</entry>
	<entry>
		<id>https://wiki.rhlug.org//index.php?title=Installing_MATLAB&amp;diff=894</id>
		<title>Installing MATLAB</title>
		<link rel="alternate" type="text/html" href="https://wiki.rhlug.org//index.php?title=Installing_MATLAB&amp;diff=894"/>
		<updated>2025-10-14T01:05:25Z</updated>

		<summary type="html">&lt;p&gt;Andrew: ui size&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install MATLAB: ==&lt;br /&gt;
&lt;br /&gt;
=== Install with MATLAB package manager ===&lt;br /&gt;
Replace `/usr/local/MATLAB/` with watever you want, it may make more sense to have it in your home directory.&lt;br /&gt;
&lt;br /&gt;
It needs to run with permission to edit files for authorization, if it is not owned by you run: `chmod -R 777 /usr/local/MATLAB/`&lt;br /&gt;
&lt;br /&gt;
==== Install your preferred release ====&lt;br /&gt;
you can make a new folder for each and have multiple or just use a single folder and overwrite your previous install&lt;br /&gt;
&lt;br /&gt;
`mpm install --release=R2025b --destination=/usr/local/MATLAB/R2025b MATLAB Simulink Control_System_Toolbox`&lt;br /&gt;
&lt;br /&gt;
=== General install tips ===&lt;br /&gt;
&lt;br /&gt;
==== gnutls breaking changes ====&lt;br /&gt;
If you are running a bleeding edge distro you will have to downgrade gnutls to 3.8.9, can be found here for arch: https://archive.archlinux.org/packages/g/gnutls/gnutls-3.8.9-1-x86_64.pkg.tar.zst&lt;br /&gt;
&lt;br /&gt;
Simply unzip all the *.so.[number] files into some sort of library directory specifically for MATLAB to preload it when launching MATLAB, something like `/usr/local/MATLAB/R2025b/lib` will do. Then in your .desktop file prepend `LD_LIBRARY_PATH=/usr/lib/dri/:/usr/local/MATLAB/R2025b/lib/`&lt;br /&gt;
&lt;br /&gt;
==== .desktop file tips ====&lt;br /&gt;
Copy the desktop file to your personal desktop file area to customize how it launches&lt;br /&gt;
&lt;br /&gt;
`sudo cp /usr/share/applications/matlab.desktop ~/.local/share/applications/matlab.desktop &amp;amp;&amp;amp; sudo chown [user] [user] ~/.local/share/applications/matlab.desktop`&lt;br /&gt;
&lt;br /&gt;
change the exec line to keep existing preloads, directly call the the file, and have the startup folder preference be respected:&lt;br /&gt;
&lt;br /&gt;
Exec=env &#039;LD_PRELOAD=/usr/lib/libfreetype.so:/usr/lib/libstdc++.so:/usr/lib/libfontconfig.so&#039; LD_LIBRARY_PATH=/usr/lib/dri/ /usr/local/MATLAB/R2025b/bin/matlab -desktop -useStartupFolderPref`&lt;br /&gt;
&lt;br /&gt;
== UI size ==&lt;br /&gt;
In some 2025 release the ui zoom was disabled, you can set it in the MATLAB command window with:&lt;br /&gt;
&lt;br /&gt;
`settings().matlab.desktop.Zoom.PersonalValue=150`&lt;br /&gt;
&lt;br /&gt;
if you want to tab through the possible settings you can change run:&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
s=settings&lt;br /&gt;
&lt;br /&gt;
s.[ctrl+space/tab]&lt;br /&gt;
&lt;br /&gt;
```&lt;/div&gt;</summary>
		<author><name>Andrew</name></author>
	</entry>
	<entry>
		<id>https://wiki.rhlug.org//index.php?title=Installing_MATLAB&amp;diff=893</id>
		<title>Installing MATLAB</title>
		<link rel="alternate" type="text/html" href="https://wiki.rhlug.org//index.php?title=Installing_MATLAB&amp;diff=893"/>
		<updated>2025-10-14T00:54:43Z</updated>

		<summary type="html">&lt;p&gt;Andrew: Init MATLAB&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install MATLAB: ==&lt;br /&gt;
&lt;br /&gt;
=== Install with MATLAB package manager ===&lt;br /&gt;
Replace `/usr/local/MATLAB/` with watever you want, it may make more sense to have it in your home directory.&lt;br /&gt;
&lt;br /&gt;
It needs to run with permission to edit files for authorization, if it is not owned by you run: `chmod -R 777 /usr/local/MATLAB/`&lt;br /&gt;
&lt;br /&gt;
==== Install your preferred release ====&lt;br /&gt;
you can make a new folder for each and have multiple or just use a single folder and overwrite your previous install&lt;br /&gt;
&lt;br /&gt;
`mpm install --release=R2025b --destination=/usr/local/MATLAB/R2025b MATLAB Simulink Control_System_Toolbox`&lt;br /&gt;
&lt;br /&gt;
=== General install tips ===&lt;br /&gt;
&lt;br /&gt;
==== gnutls breaking changes ====&lt;br /&gt;
If you are running a bleeding edge distro you will have to downgrade gnutls to 3.8.9, can be found here for arch: https://archive.archlinux.org/packages/g/gnutls/gnutls-3.8.9-1-x86_64.pkg.tar.zst&lt;br /&gt;
&lt;br /&gt;
Simply unzip all the *.so.[number] files into some sort of library directory specifically for MATLAB to preload it when launching MATLAB, something like `/usr/local/MATLAB/R2025b/lib` will do. Then in your .desktop file prepend `LD_LIBRARY_PATH=/usr/lib/dri/:/usr/local/MATLAB/R2025b/lib/`&lt;br /&gt;
&lt;br /&gt;
==== .desktop file tips ====&lt;br /&gt;
Copy the desktop file to your personal desktop file area to customize how it launches&lt;br /&gt;
&lt;br /&gt;
`sudo cp /usr/share/applications/matlab.desktop ~/.local/share/applications/matlab.desktop &amp;amp;&amp;amp; sudo chown [user] [user] ~/.local/share/applications/matlab.desktop`&lt;br /&gt;
&lt;br /&gt;
change the exec line to keep existing preloads, directly call the the file, and have the startup folder preference be respected:&lt;br /&gt;
&lt;br /&gt;
Exec=env &#039;LD_PRELOAD=/usr/lib/libfreetype.so:/usr/lib/libstdc++.so:/usr/lib/libfontconfig.so&#039; LD_LIBRARY_PATH=/usr/lib/dri/ /usr/local/MATLAB/R2025b/bin/matlab -desktop -useStartupFolderPref`&lt;/div&gt;</summary>
		<author><name>Andrew</name></author>
	</entry>
</feed>