Help getting Adobe Air loaded on Wine 6.0.3

Questions about Wine on Linux
Post Reply
surfrock66
Newbie
Newbie
Posts: 3
Joined: Fri Sep 22, 2023 4:32 pm

Help getting Adobe Air loaded on Wine 6.0.3

Post by surfrock66 »

I apologize if these are simple questions; I've been googling but I don't interact with wine much and nothing I've found has helped yet.

I am trying to install an application with an Adobe Air dependency (Netgear ProSafe Plus Utility). I have various Adobe Air runtime installers from oldversions.com, but can't get any to install.

I've created a new 32 bit wine prefix at ~/.wine32 and run "winetricks wininet" and "winetricks ie8" per recommendations, but when I run this:

Code: Select all

WINEPREFIX=~/.wine32 WINEARCH=win32 wine adobe-air-2-6-0-19140-AdobeAIRInstaller.exe
I get the following in the console, then the attached stack trace:

Code: Select all

wine: Unhandled page fault on read access to 00000000 at address 05BD9B92 (thread 00fc), starting debugger...
Here's the head of the stack trace:

Code: Select all

Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x05bd9b92).
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:006b GS:0063
 EIP:05bd9b92 ESP:0062ec20 EBP:0062ed2c EFLAGS:00010246(  R- --  I  Z- -P- )
 EAX:00000000 EBX:05e1a6cc ECX:05e114b0 EDX:00000000
 ESI:00000000 EDI:05e56eb8
Stack dump:
0x0062ec20:  05e1a600 05e56eb8 05b471be 05e55444
0x0062ec30:  00000000 05b473b2 05e55444 05c0d914
0x0062ec40:  0062ee10 0062ee78 05e1a600 f7cc3b98
0x0062ec50:  f7ce1ce4 ff9d0b44 05e22c00 0062ec80
0x0062ec60:  00000002 0062ec80 0062ecd8 7bc2a3b1
0x0062ec70:  05e00000 00000002 05e00000 7bc2a3b1
Backtrace:
=>0 0x05bd9b92 EntryPoint+0xffffffff() in webkit (0x0062ed2c)
  1 0x05e1a6cc (0x05e1a600)
  2 0x05e551f8 (0x05d37dc0)
  3 0x05ac36d9 EntryPoint+0xffffffff() in webkit (0x05c21571)
  4 0xfff40d0e (0xe8f18b56)
0x05bd9b92 EntryPoint+0xffffffff in webkit: movl	0x0(%esi),%eax
This is an Ubuntu 22.04.3 LTS VM running on Proxmox 8.1. I'm way out of my depth here, so any help is appreciated.
Attachments
backtrace.zip
backtrace of error
(1.77 KiB) Downloaded 110 times
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Help getting Adobe Air loaded on Wine 6.0.3

Post by jkfloris »

If I remember correctly you can install Adobe Air on older Wine versions with the -silent option.

Code: Select all

# Create a clean 32-bit prefix and set the Windows version to Windows XP
WINEPREFIX=~/netgear WINEARCH=win32 winecfg

# Install Adobe Air
WINEPREFIX=~/netgear wine AdobeAIRInstaller.exe -silent
You can also update Wine to version 9.0.
Post Reply