No Wine Program Loader in open with menu, Ubuntu 16.10

Questions about Wine on Linux
Locked
phoen1x74
Level 2
Level 2
Posts: 10
Joined: Sun Nov 06, 2016 7:23 pm

No Wine Program Loader in open with menu, Ubuntu 16.10

Post by phoen1x74 »

I just reinstalled wine-staging from a broken package, (I know I'm on the latest version) and now I can only run wine programs through terminal. Is there any known solution for this? I do not get Wine Program Loader as an option when I right click on a .exe and click open with.
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: No Wine Program Loader in open with menu, Ubuntu 16.10

Post by Bob Wya »

phoen1x74 wrote:I just reinstalled wine-staging from a broken package, (I know I'm on the latest version) and now I can only run wine programs through terminal. Is there any known solution for this? I do not get Wine Program Loader as an option when I right click on a .exe and click open with.
You might have "lost" the symlink to the main Wine .desktop file (as the main install location: /opt/.../applications/; will not be in your xdg path):

Code: Select all

sudo ln -s /opt/wine-devel/share/applications/wine.desktop /usr/share/applications/wine.desktop
# OR for Wine-Staging...
sudo ln -s /opt/wine-staging/share/applications/wine.desktop /usr/share/applications/wine.desktop
Should fix that...

Bob
phoen1x74
Level 2
Level 2
Posts: 10
Joined: Sun Nov 06, 2016 7:23 pm

Re: No Wine Program Loader in open with menu, Ubuntu 16.10

Post by phoen1x74 »

Thanks; that worked!
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: No Wine Program Loader in open with menu, Ubuntu 16.10

Post by Bob Wya »

np 8)
Locked