Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19

Thread: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

  1. #11
    Join Date
    Feb 2015
    Beans
    8

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    Quote Originally Posted by ciltocruz View Post
    Voy a intentar estos pasos esta tarde. Te lo diré ...




    Intentaré también instalar playonlinux


    ¡Gracias!

    This first option has not worked for me in any way. For any version of Wine that I want to install I just get to the same package whose version i: 386 uninstalls 715 packages of the system ...

  2. #12
    Join Date
    Nov 2004
    Location
    Maine
    Beans
    2,420
    Distro
    Kubuntu

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    Yes you can install both 64 and 32 bit versions.
    Wireless script
    Dave
    Registered Linux User #462608
    Morse Code an early Digital Mode.

  3. #13
    Join Date
    Feb 2015
    Beans
    8

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    I installed office 32 bits and, in spite of appearing installed in playonlinux, it does not work. It does not open the files or the program.


    Then I will try to install the 64 bit exe. But I'm afraid it will not work either.

  4. #14
    Join Date
    Feb 2015
    Beans
    8

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    I did not manage to install a 64-bit "setup.exe" (Office 2013 64 bits) manually.

  5. #15
    Join Date
    Nov 2004
    Location
    Maine
    Beans
    2,420
    Distro
    Kubuntu

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    MS Office 2013 is quite a heavy load for wine and POL. But here is a blog that may help you get there. The 64 bit version will not work with wine.
    Last edited by kc1di; February 27th, 2019 at 11:17 AM.
    Wireless script
    Dave
    Registered Linux User #462608
    Morse Code an early Digital Mode.

  6. #16
    Join Date
    Apr 2019
    Beans
    2

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    I faced the same problem of endless dependencies installing winehq-* on my Ubuntu 18.04.2 (upgraded from ubuntu 16.04). After lots of googling and trying out what worked for me at the end was to build wine locally, which was way faster than I thought.

    So here how I done it: (Token from [winehq official wiki][1])

    1. clone:

    git clone git://source.winehq.org/git/wine.git ~/wine-dirs/wine-source

    2. build 64-bit version:

    cd ~/wine-dirs/wine-build/
    ../wine-source/configure --enable-win64
    make
    DO NOT INSTALL (32-bit version should be installed first)

    3. build 32-bit verions:

    cd ~/wine-dirs/wine32-build/
    PKG_CONFIG_PATH=/path/to/pkgconfig ../wine-source/configure --with-wine64=../wine64-build
    make

    PKG_CONFIG_PATH should point to the location of the 32 bit pkgconfig files, probably /usr/lib or /usr/lib32.

    **DEPENDECIES**:

    **libfaudio**

    1. depends on SDL2-2.0.9 (follow [instruction][2])
    2. clone https://github.com/FNA-XNA/FAudio
    3. build

    cd build_faudio/
    cmake ../FAudio-master/
    make -j 4

    **i386 version of some libs**

    1. sudo apt-get install libx11-dev libx11-dev:i386 [from][3]
    2. sudo apt-get install libfreetype6-dev:i386 libfreetype6-dev [from][4]


    [1]: https://wiki.winehq.org/Building_Wine
    [2]: http://www.linuxfromscratch.org/blfs...edia/sdl2.html
    [3]: https://askubuntu.com/questions/1894...iles-not-found
    [4]: https://askubuntu.com/questions/1144...ype-using-wine

  7. #17
    Join Date
    Nov 2004
    Location
    Maine
    Beans
    2,420
    Distro
    Kubuntu

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    I think that if you want to install msoffice that virtual box may be your best bet.
    This page maybe of help.
    Wireless script
    Dave
    Registered Linux User #462608
    Morse Code an early Digital Mode.

  8. #18
    Join Date
    May 2019
    Beans
    1

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    Quote Originally Posted by idleroamer2 View Post
    I faced the same problem of endless dependencies installing winehq-* on my Ubuntu 18.04.2 (upgraded from ubuntu 16.04). After lots of googling and trying out what worked for me at the end was to build wine locally, which was way faster than I thought.

    So here how I done it: (Token from [winehq official wiki][1])

    1. clone:

    git clone git://source.winehq.org/git/wine.git ~/wine-dirs/wine-source

    2. build 64-bit version:

    cd ~/wine-dirs/wine-build/
    ../wine-source/configure --enable-win64
    make
    DO NOT INSTALL (32-bit version should be installed first)

    3. build 32-bit verions:

    cd ~/wine-dirs/wine32-build/
    PKG_CONFIG_PATH=/path/to/pkgconfig ../wine-source/configure --with-wine64=../wine64-build
    make

    PKG_CONFIG_PATH should point to the location of the 32 bit pkgconfig files, probably /usr/lib or /usr/lib32.

    **DEPENDECIES**:

    **libfaudio**

    1. depends on SDL2-2.0.9 (follow [instruction][2])
    2. clone https://github.com/FNA-XNA/FAudio
    3. build

    cd build_faudio/
    cmake ../FAudio-master/
    make -j 4

    **i386 version of some libs**

    1. sudo apt-get install libx11-dev libx11-dev:i386 [from][3]
    2. sudo apt-get install libfreetype6-dev:i386 libfreetype6-dev [from][4]


    [1]: https://wiki.winehq.org/Building_Wine
    [2]: http://www.linuxfromscratch.org/blfs...edia/sdl2.html
    [3]: https://askubuntu.com/questions/1894...iles-not-found
    [4]: https://askubuntu.com/questions/1144...ype-using-wine
    I also having trouble install wine as OP.
    Did this step, but in my case, after clone the git files, I can't find wine-build directory under wine-dirs. I got wine-dirs/wine-source
    I got stuck after make in step 2 and can't figure out what this lines mean

    Code:
    PKG_CONFIG_PATH=/path/to/pkgconfig ../wine-source/configure --with-wine64=../wine64-build
    since I dont have the wine32-build dirs, where should I run above commands.

    thanks

  9. #19
    Join Date
    Apr 2019
    Beans
    2

    Re: Problem with dependencies installing Wine 4 in Ubuntu 18.04.

    The wine-build (or any build directory mentioned) is simply the build directory, you can create it anywhere you like.

    You can find more info over PKG_CONFIG_PATH in https://wiki.winehq.org/Building_Wine

Page 2 of 2 FirstFirst 12

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •