<?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: Vinicius Feitosa da Silva</title>
    <description>The latest articles on DEV Community by Vinicius Feitosa da Silva (@oviniciusfeitosa).</description>
    <link>https://dev.to/oviniciusfeitosa</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1807797%2Faa244346-a449-47bf-b006-b0d73c050ce8.jpg</url>
      <title>DEV Community: Vinicius Feitosa da Silva</title>
      <link>https://dev.to/oviniciusfeitosa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/oviniciusfeitosa"/>
    <language>en</language>
    <item>
      <title>How to install latest Obsidian on Ubuntu 24.04 or older versions</title>
      <dc:creator>Vinicius Feitosa da Silva</dc:creator>
      <pubDate>Sat, 24 Aug 2024 04:22:17 +0000</pubDate>
      <link>https://dev.to/oviniciusfeitosa/how-to-install-latest-obsidian-on-ubuntu-2404-or-older-versions-9n</link>
      <guid>https://dev.to/oviniciusfeitosa/how-to-install-latest-obsidian-on-ubuntu-2404-or-older-versions-9n</guid>
      <description>&lt;p&gt;There are currently some limitations commonly encountered when installing Obsidian via &lt;code&gt;snap&lt;/code&gt; or &lt;code&gt;flatpak&lt;/code&gt; packages.&lt;/p&gt;

&lt;p&gt;In this tutorial, I will show you two quick and easy ways to install Obsidian without any problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 1 - &lt;a href="https://github.com/oviniciusfeitosa/obsidian-ubuntu-installer" rel="noopener noreferrer"&gt;Automatic mode&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Install the latest version of Obsidian on Ubuntu with just the command below:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/oviniciusfeitosa/obsidian-ubuntu-installer/main/install.sh | sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;By installing this way, you can enjoy the full functionality, including the use of plugins and custom configurations, which are usually restricted in other installation methods.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 2 - Manual mode
&lt;/h2&gt;

&lt;p&gt;If you prefer a manual installation, just follow the steps below:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Choose your preferred directory to download Obsidian. In my case I chose the &lt;code&gt;/tmp/obsidian-install&lt;/code&gt; directory.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  &lt;span class="nb"&gt;mkdir&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; /tmp/obsidian-install
  &lt;span class="nb"&gt;cd&lt;/span&gt; /tmp/obsidian-install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Download the &lt;code&gt;.AppImage&lt;/code&gt; file of the latest available release:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  wget &lt;span class="si"&gt;$(&lt;/span&gt;curl &lt;span class="nt"&gt;-s&lt;/span&gt; https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest | &lt;span class="nb"&gt;grep&lt;/span&gt; &lt;span class="s2"&gt;"browser_download_url.*AppImage"&lt;/span&gt; | &lt;span class="nb"&gt;grep&lt;/span&gt; &lt;span class="nt"&gt;-v&lt;/span&gt; &lt;span class="s2"&gt;"arm64"&lt;/span&gt; | &lt;span class="nb"&gt;cut&lt;/span&gt; &lt;span class="nt"&gt;-d&lt;/span&gt; : &lt;span class="nt"&gt;-f&lt;/span&gt; 2,3 | &lt;span class="nb"&gt;tr&lt;/span&gt; &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="se"&gt;\"&lt;/span&gt;&lt;span class="si"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Extract the &lt;code&gt;.AppImage&lt;/code&gt; file
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  ./Obsidian-1.6.7.AppImage &lt;span class="nt"&gt;--appimage-extract&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Move the &lt;code&gt;squashfs-root&lt;/code&gt; folder to &lt;code&gt;/opt/Obsidian&lt;/code&gt; folder
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  &lt;span class="nb"&gt;sudo mv &lt;/span&gt;squashfs-root /opt/Obsidian
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Set the permissions that correctly run the application
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  &lt;span class="nb"&gt;sudo chown&lt;/span&gt; &lt;span class="nt"&gt;-R&lt;/span&gt; root: /opt/Obsidian
  &lt;span class="nb"&gt;sudo chmod &lt;/span&gt;4755 /opt/Obsidian/chrome-sandbox
  &lt;span class="nb"&gt;sudo &lt;/span&gt;find /opt/Obsidian &lt;span class="nt"&gt;-type&lt;/span&gt; d &lt;span class="nt"&gt;-exec&lt;/span&gt; &lt;span class="nb"&gt;chmod &lt;/span&gt;755 &lt;span class="o"&gt;{}&lt;/span&gt; &lt;span class="se"&gt;\;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Create a symbolic link:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  &lt;span class="nb"&gt;ln&lt;/span&gt; &lt;span class="nt"&gt;-s&lt;/span&gt; /opt/Obsidian/AppRun /usr/local/bin/obsidian
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Create a application desktop launcher file &lt;code&gt;~/.local/share/applications/obsidian.desktop&lt;/code&gt;:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  &lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"[Desktop Entry]
  Name=Obsidian
  Comment=A powerful knowledge base that works on top of a local folder of plain text Markdown files
  Exec=/usr/local/bin/obsidian
  Icon=/opt/Obsidian/obsidian.png
  Terminal=false
  Type=Application
  Version=1.5.11
  Categories=Office;Utility;
  MimeType=x-scheme-handler/obsidian;text/html;"&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; ~/.local/share/applications/obsidian.desktop
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;And there you have it—two simple and effective methods to install Obsidian on Ubuntu, ensuring you get the most out of this powerful note-taking tool without any of the usual installation headaches. Whether you prefer the hands-off automatic method or enjoy getting your hands dirty with the manual approach, you're now fully equipped to set up Obsidian on your system.&lt;/p&gt;

&lt;p&gt;If you found this tutorial helpful, be sure to check out my &lt;a href="https://github.com/oviniciusfeitosa" rel="noopener noreferrer"&gt;GitHub profile&lt;/a&gt; for more useful tools and scripts. And don't forget to give a ⭐ to the &lt;a href="https://github.com/oviniciusfeitosa/obsidian-ubuntu-installer" rel="noopener noreferrer"&gt;obsidian-ubuntu-installer repository&lt;/a&gt; if this script made your life a little easier today!&lt;/p&gt;

&lt;p&gt;Happy note-taking, and welcome to a smoother, more streamlined Obsidian experience on Ubuntu!&lt;/p&gt;

</description>
      <category>ubuntu</category>
      <category>obsidian</category>
      <category>productivity</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
