Bandicam screen recorder installation problem

Questions about Wine on Linux
Locked
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Bandicam screen recorder installation problem

Post by saar »

I managed to install bandicam screen recorder on zorin os 12 via wine once
but after reinstall the os it cannot be installed.
The bandicam instllation process completed but the software
is not opening and cannot be find by search.

Thanks in advance
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Bandicam screen recorder installation problem

Post by jkfloris »

You didn't give us a lot of information, but you could try the next steps:
1. Find your Bandicam directory

Code: Select all

find ./ -iname bdcam.exe
./bandicam/drive_c/Program Files/Bandicam/bdcam.exe
In this example Bandicam is installed in ./bandicam/drive_c/Program Files/Bandicam/

2. Run Bandicam

Code: Select all

cd "./bandicam/drive_c/Program Files/Bandicam/"
wine bdcam.exe
You will see some lines of text scrolling on your screen, if the program doesn't start you could post these lines.
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

I got:

find: ‘iname’: No such file or directory
find: ‘bdcam.exe’: No such file or directory

so I perform custom install to /home/i as can be seen in the attached file.
How the line:
cd "./bandicam/drive_c/Program Files/Bandicam/"
should be updated ?
Attachments
Screenshot_2018-09-09_13-24-05.png
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

Ok , after:

cd /home/i/Bandicam
wine bdcam.exe

I get:

000d:err:module:load_builtin_dll failed to load .so lib for builtin L"windowscodecs.dll": /lib/i386-linux-gnu/libm.so.6: version `GLIBC_2.27' not found (required by /usr/lib/wine/../i386-linux-gnu/wine/windowscodecs.dll.so)
000d:err:module:import_dll Loading library windowscodecs.dll (which is needed by L"C:\\windows\\system32\\winemenubuilder.exe") failed (error c000007a).
000d:err:module:attach_dlls Importing dlls for L"C:\\windows\\system32\\winemenubuilder.exe" failed, status c0000135
0009:err:module:load_builtin_dll failed to load .so lib for builtin L"gdiplus.dll": /lib/i386-linux-gnu/libm.so.6: version `GLIBC_2.27' not found (required by /usr/lib/wine/../i386-linux-gnu/wine/gdiplus.dll.so)
0009:err:module:import_dll Loading library gdiplus.dll (which is needed by L"Z:\\home\\i\\Bandicam\\bdcam.exe") failed (error c000007a).
0009:err:module:attach_dlls Importing dlls for L"Z:\\home\\i\\Bandicam\\bdcam.exe" failed, status c0000135
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Bandicam screen recorder installation problem

Post by jkfloris »

find: ‘iname’: No such file or directory
find: ‘bdcam.exe’: No such file or directory
Probably you forgot the - (dash) before iname

Sorry, my example with "./bandicam/drive_c/Program Files/Bandicam/" wasn't a smart one (because I used a different WINEPREFIX)
So lets start over again.

1. backup your old Wineprefix

Code: Select all

mv .wine .wine-old
2. Install Bandicam

Code: Select all

cd Downloads
wine bdcamsetup.exe
Bandicam should be installed in /home/<username>/.wine/drive_c/ (Mind the . (dot) before wine)

3. Run Bandicam

Code: Select all

cd /home/<username>/.wine/drive_c/Program<-bla-bla->/Bandicam
wine bdcam.exe
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

After:
wine bdcamsetup.exe

I get the error note:
wine: created the configuration directory '/home/i/.wine'
0012:err:ole:marshal_object couldn't get IPSFactory buffer for interface {00000131-0000-0000-c000-000000000046}
0012:err:ole:marshal_object couldn't get IPSFactory buffer for interface {6d5140c1-7436-11ce-8034-00aa006009fa}
0012:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hres=0x80004002
0012:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, 80004002
0012:err:ole:get_local_server_stream Failed: 80004002
0014:err:ole:marshal_object couldn't get IPSFactory buffer for interface {00000131-0000-0000-c000-000000000046}
0014:err:ole:marshal_object couldn't get IPSFactory buffer for interface {6d5140c1-7436-11ce-8034-00aa006009fa}
0014:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hres=0x80004002
0014:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, 80004002
0014:err:ole:get_local_server_stream Failed: 80004002
Could not load wine-gecko. HTML rendering will be disabled.
0010:err:module:load_builtin_dll failed to load .so lib for builtin L"windowscodecs.dll": /lib/i386-linux-gnu/libm.so.6: version `GLIBC_2.27' not found (required by /usr/lib/wine/../i386-linux-gnu/wine/windowscodecs.dll.so)
wine: configuration in '/home/i/.wine' has been updated.
wine: cannot find L"C:\\windows\\system32\\dbcamsetup.exe"
i@i-3000-N200:~/Downloads$ wine bdcamsetup.exe
000d:err:module:load_builtin_dll failed to load .so lib for builtin L"windowscodecs.dll": /lib/i386-linux-gnu/libm.so.6: version `GLIBC_2.27' not found (required by /usr/lib/wine/../i386-linux-gnu/wine/windowscodecs.dll.so)
000d:err:module:import_dll Loading library windowscodecs.dll (which is needed by L"C:\\windows\\system32\\winemenubuilder.exe") failed (error c000007a).
000d:err:module:attach_dlls Importing dlls for L"C:\\windows\\system32\\winemenubuilder.exe" failed, status c0000135
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Bandicam screen recorder installation problem

Post by jkfloris »

How did you installed the Wine packages?
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

Zorin os has a built in Wine
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Bandicam screen recorder installation problem

Post by jkfloris »

What is the output of:

Code: Select all

apt-cache policy libc6 libc6:i386
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

libc6:
Installed: 2.23-0ubuntu10
Candidate: 2.23-0ubuntu10
Version table:
*** 2.23-0ubuntu10 500
500 http://il.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages
500 http://security.ubuntu.com/ubuntu xenial-security/main i386 Packages
100 /var/lib/dpkg/status
2.23-0ubuntu3 500
500 http://il.archive.ubuntu.com/ubuntu xenial/main i386 Packages
libc6:
Installed: 2.23-0ubuntu10
Candidate: 2.23-0ubuntu10
Version table:
*** 2.23-0ubuntu10 500
500 http://il.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages
500 http://security.ubuntu.com/ubuntu xenial-security/main i386 Packages
100 /var/lib/dpkg/status
2.23-0ubuntu3 500
500 http://il.archive.ubuntu.com/ubuntu xenial/main i386 Packages
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Bandicam screen recorder installation problem

Post by jkfloris »

Could you install the Wine packages from the WineHQ repo and try again?
https://wiki.winehq.org/Ubuntu
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

I managed to install bandicam after installing winehq in accordance to:
https://wiki.winehq.org/Ubuntu
During the first from two bandicam installations
(right click on the .exe file and open with winehq)
I get a wine gecko installation error.
For now,I can open bandicam but it not functioning properly,
attached the error note that i get after trying to play the program .
Attachments
Screenshot.png
saar
Level 1
Level 1
Posts: 8
Joined: Sat Sep 08, 2018 12:03 pm

Re: Bandicam screen recorder installation problem

Post by saar »

Don't know what has been changed but for now the program works without
the previous error although I still can't use it due to
'Bandicam Failed to capture audio' error,
but that is for another forum,so thank you very much for the support.
Locked