9

I am currently referring to the Obsidian note taking app. (see www.obsidian.md).

The Obsidian AppImage did not work for me. Ubuntu Software Center just could not open it. Same goes for the Snap or Flatpak package.

Anything I did wrong besides just trying to open the files and launching die Ubuntu Software Center?

Edit: If there are suggestions to make it work with snap, they are welcome. If I find the answer to that option as well I will post it here.

Software version and Ubuntu version are as mentioned in the title.

iguanahay
  • 149

5 Answers5

11

There is a Snap version of Obsidian now:

Get it from the Snap Store

If you prefer using the command line, you can run this command:

sudo snap install obsidian --classic

This snap version of Obsidian is not sandboxed, which is why the --classic flag needs to be passed.

Flimm
  • 44,031
5

I dived into the Terminal and installed Flatpak.

  1. Install flatpak sudo apt install flatpak
  2. Check version to make sure it is installed flatpak --version
  3. Enable Flathub to search apps from command line flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
  4. Search is done by flatpak search <app_name>
  5. Check the Application ID and run the installation with the application ID. I found it easier than choosing the right name. flatpak install <app-id>

Then I went on to look for Obsidian from Flathub.

  1. Search Obsidian: flatpak search obsidian
  2. Look for md.obsidian.Obsidian application ID flatpak install md.obsidian.Obsidian

After system restart Obsidian showed up in the application launcher.

DONE.

NOTE: Obsidian only works with locally available files. e.g. GoogleDrive via Gnome Online Accounts only offers access to the cloud service without actually downloading the files locally.

iguanahay
  • 149
1

Obsidian provides deb package now from their github repo.

You can download the latest release from their GitHub releases page: https://github.com/obsidianmd/obsidian-releases/releases

There is also a link to all available binaries from their downloads page: https://obsidian.md/download

GMaster
  • 222
  • 2
  • 13
0

use chmod +x "filename.appimage" to get it executable first mate :)

0

I am still using ubuntu 20.04 and installed obsidian through snap and it stared crashing this is how I manually updated it

$ sudo snap download obsidian
Fetching snap "obsidian"
Fetching assertions for "obsidian"
Install the snap with:
   snap ack obsidian_22.assert
   snap install obsidian_22.snap
sudo snap install --dangerous --classic obsidian_22.snap
obsidian 1.5.3 installed

That's how I recovered it back. Sharing maybe it could help someone.