Facebook X (Twitter) Instagram
    TecAdmin
    • Home
    • FeedBack
    • Submit Article
    • About Us
    Facebook X (Twitter) Instagram
    TecAdmin
    You are at:Home»Linux Tutorials»How to Install Wine 8.x on CentOS, RHEL and Fedora

    How to Install Wine 8.x on CentOS, RHEL and Fedora

    By RahulJanuary 27, 20232 Mins Read

    With the increasing popularity of Linux desktops, There is another requirement occurred that we should have an application that can be used to run Windows applications. Windows has a long list of beautiful applications for users which are not available to Linux users. As we know that Linux does not support windows executables so WineHQ is a solution to run Windows applications and Linux systems.

    The latest version of Wine 8.0 stable has been released on January 24, 2023. You can read about main highlights of this version from WINE announcement page. This article will help you to install Wine 8.0 stable release on RHEL-based systems by compiling it from the source code.

    Step 1: Install Requierd Packages

    Wine required many development packages. First, we recommend upgrading all system packages using the following commands.

    yum clean all 
    yum update 
    

    Now install the required packages for Wine using the yum package manager using the following commands.

    yum groupinstall 'Development Tools' 
    yum install libX11-devel freetype-devel zlib-devel libxcb-devel \ 
          libxslt-devel libgcrypt-devel libxml2-devel gnutls-devel \
          libpng-devel libjpeg-turbo-devel libtiff-devel gstreamer-devel \ 
          dbus-devel fontconfig-devel 
    

    Step 2: Installing Wine from Sources

    RPM packages for wine are not available for the latest versions, So we need to download the wine source code. Use the below commands to download it.

    wget https://dl.winehq.org/wine/source/8.0/wine-8.0.tar.xz 
    tar -Jxf wine-8.0.tar.xz -C /tmp 
    cd /tmp/wine-8.0 
    

    Use the ./configure script to prepare the source for the installation based on the system hardware. This will create the Makefile for the compilation and set the installation environment for Wine according to your system.

    ## For 32-Bit Systems:
    ./configure 
    
    ## For 64-Bit Systems:
    ./configure  --enable-win64 
    

    Finally, run the make and make install command to compile the wine source and install it on your system.

    make 
    make install 
    

    Source code compilation will be some time to complete based on the system resources. Wait for the installation to complete successfully.

    Step 3: Verify Installation

    Use the following command to check the version of wine installed on your system

    ## On 32-Bit Systems:
    wine --version 
    
    ## On 64-Bit Systems:
    wine64 --version 
    
    

    Step 3: Running Windows Application with Wine

    To use wine we need to log in to the GUI desktop. After that Download a windows executable (.exe) file like PuTTY on your system and open it with Wine as below screenshot or use the following command.

    wine ~/Downloads/putty.exe 
    

    Install Wine

    Install software wine winehq
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp

    Related Posts

    What is Software? – Definition & Types

    Understanding the LD_LIBRARY_PATH Environment Variable

    The Beginner’s Guide to Building Your First RPM Package

    View 81 Comments

    81 Comments

    1. Sencer on May 24, 2020 12:59 pm

      Hi

      Reply
    2. Daniel Murguia on August 4, 2019 6:14 pm

      when i run ./configure i don’t get a Makefile file just a Makefile.in file and then when i run the make command i get the message “make: *** No targets specified and no makefile found. Stop.”

      plz help

      Reply
    3. Clemens on July 14, 2019 5:01 pm

      Hi there!

      This is really a nice site, – thanks Rahul. 🙂

      However, there exist now a somewhat easier install method from EPEL. And for all those who need also the 32bit Wine variant on latest CentOS 7.x check the harbottle REPO, https://gitlab.com/harbottle/wine32. Most recent version (for July 2019) is Wine 4.0.2.

      In short:

      # Install repos
      sudo yum -y install epel-release https://harbottle.gitlab.io/wine32/7/i386/wine32-release.rpm

      # Install Wine 64 bit and 32 bit
      sudo yum -y install wine wine.i686

      # Run Wine 64 bit, for example:
      wine64 cmd

      # Run Wine 32 bit, for example:
      wine32 cmd

      Reply
    4. Jaideep Singh on July 12, 2019 7:15 am

      Thank You

      Reply
    5. Faizan on August 24, 2017 7:59 am

      Hi
      please tell me how i will open winbox ? i haven’t get any option as given in the image .

      Reply
    6. Vitisha on April 25, 2017 12:18 pm

      Hi, Do you have Idea how to install .Net Framework on wine. ?

      Reply
    7. Fiki Hafana on September 23, 2016 3:12 pm

      What should i do if i got libxml2 multilib protected??

      Reply
    8. gabe on August 8, 2016 5:53 pm

      do this and you will be able to install it

      RHEL/CentOS 6 32-64 Bit

      ## RHEL/CentOS 6 32-Bit ##

      # wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
      # rpm -ivh epel-release-6-8.noarch.rpm

      ## RHEL/CentOS 6 64-Bit ##
      # wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
      # rpm -ivh epel-release-6-8.noarch.rpm

      Reply
    9. pettet on April 7, 2016 10:18 pm

      i am rocking a i7-4790k, and i’m on my second coffee –> LOL

      Reply
    10. Arvind on April 4, 2016 11:41 am

      Seriously why its taking to much of hours to compile wine ?

      Reply
    11. Arvind on April 4, 2016 11:39 am

      How much time it will take to compile wine ?

      I have Intel i3 , 4 GB machine

      Reply
    12. imnotabot on March 16, 2016 9:04 am

      Before the “make” command I was 24yo and single. After I have now several granchildren.

      Reply
      • Tintoy on April 5, 2016 10:30 am

        you nailed it hehehe

        Reply
    13. huzaifa on March 1, 2016 6:59 am

      will whatsapp work with wine?

      Reply
    14. huzaifa on March 1, 2016 6:51 am

      Will Bluestacks work in wine?
      I want to use whatsapp in bluestacks.

      Reply
    15. Dhasthakir on January 28, 2016 12:45 pm

      After followed all steps, i got bash: wine: command not found…

      Appreciate help

      Reply
      • blah on February 29, 2016 11:52 am

        me too

        Reply
      • Priyanshu on November 23, 2016 5:57 am

        If you have 64 bit machine then “wine” won’t work.
        Write wine64 –version

        Reply
    16. RCB on November 26, 2015 12:04 am

      It FAILED at the “make” command. Nothing to make. Stop.

      Reply
    17. Mioslaw Slawinski on November 5, 2015 10:56 am

      Thank you for this article. Work fine but make continue very long 🙂

      (Work in CentOS 7)

      Cheers

      Reply
    18. Murpholino Peligro on October 25, 2015 2:18 am

      And….how to uninstall?
      That version of wine was not good to install TomTom programs in Fedora 22.
      🙁

      Reply
    19. neha on October 11, 2015 6:10 pm

      Hello sir,
      I sucessfully installed wine but while running wine putty.exe – it shows winr command not found. I am having centos 7 64 bit. What to do?
      Thanks

      Reply
    20. rio on October 11, 2015 4:14 am

      aftar this step “make” is so damn long!!

      Reply
    21. ali on September 21, 2015 5:40 am

      how to uninstall wine complatly ..? cent os 6

      Reply
    22. payam on August 21, 2015 10:20 pm

      hi
      I got these errors:

      winebuild: task.o is an empty file
      winegcc: ../../tools/winebuild/winebuild failed
      make[1]: *** [taskschd.dll.so] Error 2
      make[1]: Leaving directory ‘/usr/src/wine-1.7.45/dlls/taskschd’
      make: *** [dlls/taskschd] Error 2

      How can I fix this?

      Reply
    23. Apollo on August 20, 2015 1:32 pm

      it doesnt work on Centos 7 dont even try it as the comand make will take ages ha ha but at the end no solution

      Reply
    24. Joshua on July 22, 2015 6:12 am

      i have a problem after installing wine

      “Could not find ‘wine'”

      please help me.

      Reply
      • DURAI C on August 22, 2015 5:10 am

        Hello,

        I have same problem. I don’t know what to do ???

        Reply
    25. arjun on June 27, 2015 6:34 am

      Take too much time to make the source and from last hour it is still running

      Reply
      • arjun on June 27, 2015 6:35 am

        Is there is any solution

        Reply
    26. jerry on May 26, 2015 8:37 pm

      Thank you so much for this article, but it seems like, i did something wrong

      root@localhost wine-1.7.42]# wine64 –version

      fixme:service:scmdatabase_autostart_services Auto-start service L”MountMgr” failed to start: 2
      wine: cannot find L”C:\windows\system32\2013version.exe”

      Reply
      • Carlos on May 28, 2015 9:15 pm

        Did you find the solution?

        Reply
        • jerry on June 2, 2015 5:42 pm

          Not yet

          Reply
          • Damiano on June 18, 2015 6:41 pm

            wine64 –version

            Reply
    27. Jim on March 11, 2015 10:28 am

      hello, I use RHEL 6.5, when I type ./configure –enable-win64, it will show as follows:
      configure: OpenCL development files not found, OpenCL won’t be supported.
      configure: OSS sound system found but too old (OSSv4 needed), OSS won’t be supported.

      After I make install and type wine64 putty.exe, it doesn’t work as follows:
      fixme:urlmon:InternetBindInfo_GetBindString not supported string type 20
      fixme:wininet:set_cookie Unknown additional option L”Max-Age=315360000; Path=/”
      fixme:wininet:set_cookie Unknown additional option L”Max-Age=315360000; Path=/”
      fixme:wininet:set_cookie Unknown additional option L”Max-Age=315360000; Path=/”
      fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
      fixme:urlmon:InternetBindInfo_GetBindString not supported string type 20
      fixme:wininet:set_cookie Unknown additional option L”Max-Age=315360000; Path=/”
      fixme:wininet:set_cookie Unknown additional option L”Max-Age=315360000; Path=/”
      fixme:wininet:set_cookie Unknown additional option L”Max-Age=315360000; Path=/”
      fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
      fixme:dwmapi:DwmIsCompositionEnabled 0x6d1e8a90
      fixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x69e5e647, context 0x7a13b0, init_notify 0, handle 0x102e160): stub
      fixme:iphlpapi:CancelMibChangeNotify2 (handle (nil)): stub
      wine: configuration in ‘/root/.wine’ has been updated.

      Did you encounter this kind of bug? Thanks in advance.

      Reply
    28. Jed on January 16, 2015 12:30 am

      Hi Rahul,

      Thanks for this excellent article – I hope you will be able to help:
      – I have followed steps above methodically for OS Linux 6.6 64bit
      – Everything seems to be installed perfectly as I went through all the steps without any issues
      – However I could not run wine64 -version (single dash) or wine -version, wine64 –version returns wine-1.7.34
      – When I double clicked on .exe file nothing happens (including putty.exe)
      – I tried right clicked on “open with wine windows program loader” it is not doing anything too
      – I then tried command wine64 (as wine itself is not a recognisable command) start /Unix “$root/Desktop/putty.exe” it gives error “Application could not be started, or no application associated with the specified file. ShellExecuteEx failed: Internal error.”

      Can you please help?

      Thanks,

      Jed

      Reply
      • Aaron Moffatt on July 17, 2015 1:22 am

        I Jed, I tried doing that and I received these error messages over and over:

        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
        err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
        fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
        err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder

        Reply
        • Kedr on September 1, 2015 7:32 pm

          Hi, Did you fix this error ?

          Reply
          • Aaron on September 21, 2015 11:24 pm

            Hi,

            No I haven’t fixed this error yet.

            Reply
            • john on March 16, 2016 9:44 am

              Hi Aaron, I get the same output, did you fix it somehow ?

              Reply
    29. Santosh on January 4, 2015 9:57 pm

      Actually I wanted to run vlc and for that I need to install wine. After following steps, it is working successfully. Thanks for sharing with us.

      Reply
    30. Rohit Khirid on December 18, 2014 6:10 am

      bzip2: (stdin) is not a bzip2 file.
      tar: Child returned status 2
      tar: Error is not recoverable: exiting now

      How do i go about this??

      Reply
      • Rahul on December 18, 2014 7:48 am

        Hi Rohit,

        I have again checked and successfully extracted file. Might be your download was not completed properly. Please download archive file again.

        Reply
    31. Syber Raith on November 24, 2014 9:42 pm

      GNUTLS headers are being found although GNUTLS libraries are evading detection. They are located on my system in /usr/lib/x86_64-linux-gnu, and even with the LDFLAGS or GNUTLS_LIBS environment varible set to that directory, configure still fails to find the libraries.

      I am building with Debian Jessie on an AMD64 system.
      I have installed debian packages for:
      libgnutls-deb0-28
      libgnutls-openssl27
      libgnutlsxx28
      libgnutls28-dev

      Reply
    32. Alexis on November 23, 2014 5:22 am

      Hi, I have a question: How long?… I mean, I’ve did it some hours ago, but it sill doing that:
      (insert a lot of code here LOL)
      ../../tools/winegcc/winegcc -o ieframe.dll.fake -B../../tools/winebuild -fasynchronous-unwind-tables -shared ieframe.spec
      classinfo.o client.o dochost.o events.o frame.o ie.o ieframe_main.o iehtmlwnd.o iexplore.o
      intshcut.o navigate.o oleobject.o persist.o shellbrowser.o shelluihelper.o urlhist.o view.o
      webbrowser.o ieframe.res ieframe_v1_t.res ieframe_v1_r.res -luuid -lurlmon -lshell32 -lcomctl32
      -lshlwapi -loleaut32 -lole32 -luser32 -lgdi32 -ladvapi32 -lwine ../../libs/port/libwine_port.a -lm

      make[1]: Leaving directory `/usr/src/wine-1.7.28/dlls/ieframe'
      config.status: creating dlls/ieframe/tests/Makefile
      make[1]: Entering directory `/usr/src/wine-1.7.28/dlls/ieframe/tests'
      gcc -c -o ie.o ie.c -I. -I../../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe
      -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers
      -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith
      -gdwarf-2 -gstrict-dwarf -fno-omit-frame-pointer -g -O2
      gcc -c -o intshcut.o intshcut.c -I. -I../../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe
      -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers
      -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith
      -gdwarf-2 -gstrict-dwarf -fno-omit-frame-pointer -g -O2
      gcc -c -o webbrowser.o webbrowser.c -I. -I../../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe
      -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers
      -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith
      -gdwarf-2 -gstrict-dwarf -fno-omit-frame-pointer -g -O2" etc...

      Thanks =)

      Reply
      • pavel on April 30, 2015 3:28 pm

        Hi Alexis, I get the same problem. How did you deal with it?
        Thanks!

        Reply
    33. Sumit on October 26, 2014 9:28 am

      Hi,

      I am beginner to linux, It shows an error message “not acceptable C compiler found in $PATH”.

      Pls suggest me.
      Thanks in advance

      Reply
      • Rahul on October 28, 2014 4:54 pm

        Hi Sumit,

        Please check if you have gcc libraries installed in your system.

        Reply
        • savita on March 16, 2021 10:17 am

          hi,i have installed wine-5.0.2 but i don’t know how to install tally erp9 multiuser with wine. please help me guide me steps

          Reply
    34. vaibhav atalkar on October 7, 2014 1:50 pm

      grate it’s work
      thank you very much …….

      Reply
    35. saikrishna on September 30, 2014 7:50 am

      how to install ip msg in redhat linux?

      Reply
    36. Mr P on September 13, 2014 1:42 pm

      Doesn’t work on CentOS 7 64bit, unable to run any EXE. 🙁

      Reply
    37. molz on September 13, 2014 1:18 pm

      Hello,
      the line *# ./configure –enable-win64*
      give me this answer : “configure: error: no suitable flex found. Please install the ‘flex’ package.”
      then, make and make install answer “makefile hasn’t been found”…
      thx you

      Reply
      • Sanchez on October 1, 2014 9:23 pm

        Hi, U need to install “flex” by:
        sudo yum install flex

        and eventually another things you get noticed like: Please install the ‘……..’ .

        Reply
    38. Shashi on August 21, 2014 9:14 pm

      how to uninstall wine? I followed the steps on Centos 6.5 final 64bit but when i tried checking the version it says

      [root@superserver wine-1.7.23]# wine
      bash: wine: command not found

      Reply
    39. G Murakami on August 12, 2014 8:38 pm

      I am running 64bit RHEL but want to make the 32 bit version of wine. What is the procedure for that?

      Reply
    40. Kamran Tayyab on August 3, 2014 7:58 pm

      Hey I get this error;

      configure: WARNING: prelink not found, base address of core dlls won’t be set correctly.

      configure: WARNING: libxrender development files not found, XRender won’t be supported.

      configure: WARNING: No OpenGL library found on this system.
      OpenGL and Direct3D won’t be supported.

      configure: WARNING: libxslt development files not found, xslt won’t be supported.

      configure: WARNING: libgnutls development files not found, no schannel support.

      configure: WARNING: libjpeg development files not found, JPEG won’t be supported.

      configure: WARNING: libpng development files not found, PNG won’t be supported.

      configure: WARNING: No sound system was found. Windows applications will be silent.

      Could you help me solve this? Thanks

      Reply
      • töns on July 31, 2015 4:19 pm

        same thing with my machine, any solutions yet?

        Reply
    41. santhoshram on July 17, 2014 6:34 am

      Hi, sir
      am new bea for redhat linux6…before installation wine package is neccessary to install any “Development tool” or libx11-devel*** package but i tried with yum install utility but it shown me “No Package available”…..where should i get these packages….please suggest me.

      Reply
      • Rahul on July 17, 2014 2:40 pm

        Hi Santhoshram,

        Add some more yum repositories in your system.
        Reg: http://tecadmin.net/top-5-yum-repositories-for-centos-rhel-systems/

        Reply
    42. ajeet on June 14, 2014 10:04 am

      Hello sir,
      I sucessfully installed wine but run wine –version command them it showing command not found.

      Reply
      • Rahul on June 16, 2014 7:52 am

        Hi Ajeet,

        Please check if wine command exists at /usr/local/bin/wine ?

        Reply
        • Aaron Moffatt on July 17, 2015 12:40 am

          I don’t have wine in that forlder, but I have:

          – wine64
          – wine64-preloader
          – winebuild
          – winedump
          – wineg++
          – winegcc
          – wineserver

          Reply
      • Leo on July 24, 2014 12:01 pm

        For 64 bit systems run wine64 –version

        [leo@omega wine-1.7.22]$ /usr/local/bin/wine64 –version
        wine-1.7.22
        [leo@omega wine-1.7.22]$ wine64 –version
        wine-1.7.22

        Reply
        • Aaron Moffatt on July 17, 2015 12:42 am

          When I run these commands, I get all these error messages over and over

          fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
          err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
          err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
          fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
          err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
          err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
          fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
          err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
          err:wincodecs:PngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
          fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
          err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder

          Reply
    43. walterbyrd on June 12, 2014 5:27 pm

      According to the README file I need to run.

      ./tools/wineinstall

      But when I try, I get this:

      > The source directory is not writable. You probably extracted the sources as root.
      > You should remove the source tree and extract it again as a normal user.

      I don’t understand. This tutorial shows doing everything as root. What exactly is involved in
      “remove the source tree and extract it again” ?

      Shouldn’t I be able to just do a chown, and a chmod?

      When I try to run wine as root I get:

      > You are running wineinstall as root, this is not advisable. Please rerun as a user.
      > Aborting.

      Any advice?

      Reply
      • Aaron Moffatt on July 17, 2015 12:10 am

        I get the same problem as you

        Reply
    44. walterbyrd on June 12, 2014 5:17 pm

      Does not work for me.

      Followed every step, everything seemed to work, but then I get this:

      [root@fir wine-1.7.19]# /usr/src/wine-1.7.19/wine –version
      wine: could not find the Wine loader in /usr/src/wine-1.7.19

      Reply
    45. Code on June 7, 2014 6:16 pm

      No work for me, i have centos 6.5 64 bit,
      my aplications open and close automatic
      i install all ok but dnt work
      need previus versions install to install this?

      Reply
    46. root@michelsons on May 26, 2014 4:22 pm

      i m a beginner to RHEL i want to ask i have created yum server on my system using my DVD
      as soon as i input yum command for the group install it shows
      ‘Setting up Group Process
      Warning: Group Development tools does not exist.
      No packages in any requested group available to install or update’
      please solve my issue

      Reply
    47. Mesaj on May 20, 2014 10:52 am

      configure: error: X development files not found. Wine will be built
      without X support, which probably isn’t what you want. You will need
      to install development packages of Xlib/Xfree86 at the very least.
      Use the –without-x option if you really want this.

      when I’m trying to build on 64bit centos

      Reply
      • Rahul on May 20, 2014 10:59 am

        Hi Mesaj,

        It looks you do not have installed X Window on your system. So install it first.

        For CentOS/RHEL 6:
        # yum groupinstall “Desktop”

        For CentOS/RHEL 5:
        # yum groupinstall “GNOME Desktop Environment”

        Reply
        • Anwar on July 21, 2014 3:02 am

          and how to install X Window on Debian Wheezy?
          I have same problem with Mesaj
          ————–
          configure: error: X development files not found. Wine will be built
          without X support, which probably isn’t what you want. You will need
          to install development packages of Xlib/Xfree86 at the very least.
          Use the –without-x option if you really want this.

          Reply
          • Mesaj on December 18, 2014 10:01 pm

            http://mesaj.ct8.pl/wp-content/uploads/2014/12/wine17deps.txt for debian deps list

            Reply
    48. JustRosy on May 18, 2014 2:48 pm

      Thank you so much for this article! It’s the only one I’ve been able to find that works, after a long week of searching for answers! You should package this somehow and get CentOS to include it in their next build! (I’m new, so I don’t know if that’s possible, but if it is, you should!) Thank you!!!

      Reply
    49. Alexey on May 6, 2014 12:01 pm

      Step 4:
      For 32-Bit Systems:
      # wine –version
      For 64-Bit Systems:
      # wine64 –version

      Reply
    50. Raul on May 2, 2014 3:43 pm

      On 64bits OS add –enable-win64 before make
      $ ./configure –enable-win64

      Reply
      • Rahul on May 3, 2014 2:59 am

        Thanks Raul,

        We have updated article accordingly…

        Reply
    51. amir on April 30, 2014 7:53 pm

      this does not work in 64bit Linux machines. when compiling. it gives a error unable to compile 32bit program. needs 32bit libraries.

      Reply
      • Aaron Moffatt on July 16, 2015 11:53 pm

        Hey Amir, did you get it to work on yours? I haven’t been able to get it to work on my CentOS 6.6 64bit.

        Reply
    52. K.Sudhakar on April 25, 2014 12:34 pm

      Good work sir. Thanks for helpful material you have provided for resolving my wine. Keep good work.

      Reply

    Leave A Reply Cancel Reply

    Advertisement
    Recent Posts
    • Difference Between Full Virtualization vs Paravirtualization
    • Virtualization vs. Containerization: A Comparative Analysis
    • Using .env Files in Django
    • Using .env File in FastAPI
    • Setting Up Email Notifications for Django Error Reporting
    Facebook X (Twitter) Instagram Pinterest
    © 2023 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.