Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Cider

Prepare for a fresh, reimagined experience with Cider – your favorite Apple Music client! · By Cider Collective

Issues installing on Debian Stable and Testing

A topic by rspagnola created 37 days ago Views: 178 Replies: 7
Viewing posts 1 to 6

I've tried installing the .deb package on both Debian Stable and Testing and both have the issue where after the installation the app doesn't show up in the applications screen, however I can launch the app from the terminal. As another test I tried installing the flatpak download from itch.io and this adds the app to the app screen however it doesn't provide an icon just the generic missing icon image. If i install from the flathub repo added to Debian it installs with the icon but takes a very long time to load.

I commented here how to fix it.

It is a bug in the desktop file of the package

https://github.com/ciderapp/Cider-2/issues/906

Thanks! I was able to get it working based on the info in the bug. Changed the capitalization and the Exec line to include /usr/bin

(2 edits)

The exec line does not need the /usr/bin/

The reason for the bug is that the executeable is in /usr/lib/cider/Cider

and this is not in the path

/usr/bin/cider is in the path (symlink to  /usr/lib/cider/Cider) - so "cider" in exec without path is fine

interesting. it didn't work for me until i changed the exec path. i started with changing the capitalization and it still didn't show up in the gnome applications page. i even upacked the deb package and changed the capitalization there then repacked and then changed the symlink after reinstall since the symlink was pointing to /usr/lib/cider/Cider instead of /usr/lib/cider/cider.

Strange.

/usr/lib/cider/Cider is from their build and its upper case in any OS they support. Which is fine.

The /usr/bin/cider symlink is lower case (everything in /usr/bin/ is lowercase)

So for my I just changed the desktop file as described in github issue. Nothing more to do.

The only reason you need absolute path in desktop file is that the location of the executable is not in the path.

This is the case here but /usr/bin/cider symlink should solve this. Its not wrong to put /usr/bin/cider in exec but should not be needed.

/usr/bin is in the path of every linux distro.

Thanks, got it! Reinstalled with only changing the .desktop capitalization and it works great.

You are welcome