on ubuntu 17.04 winehq install not work

Questions about Wine on Linux
Locked
user4711
Level 1
Level 1
Posts: 6
Joined: Mon May 29, 2017 5:55 am

on ubuntu 17.04 winehq install not work

Post by user4711 »

i copy all from your install page text and execute it
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
for the wget need write sudo before or a permission denied come. apt-add do not find the package. error unable to locate package. the other commands before do no error output

wy this not work ?
I use ubuntu 17.04 and there is very old 1.8.7 wine onboard
how can the new get working ?
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: on ubuntu 17.04 winehq install not work

Post by Bob Wya »

@user4711

The wget command will fail - if you don't have write access to your present working directory.

So just to be clear you are doing something like:

Code: Select all

cd    # Move to your user's home directory - avoids directory write permission issues
sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
sudo apt-get update
sudo apt-get install --install-recommends winehq-devel
Yes??
What command is actually failing?

Ta
Bob
user4711
Level 1
Level 1
Posts: 6
Joined: Mon May 29, 2017 5:55 am

Re: on ubuntu 17.04 winehq install not work

Post by user4711 »

thanks, that i need cd to home directory did not stand in the install instructions. see here on this page https://wiki.winehq.org/Ubuntu
and after i change to home directory i can do wget without sudo and then, install work ok. so please update this page and add that must be in home directory
user4711
Level 1
Level 1
Posts: 6
Joined: Mon May 29, 2017 5:55 am

Re: on ubuntu 17.04 winehq install not work

Post by user4711 »

when i open a shell (with menu open terminal) then i come to a dir in which i can create directory, add files. i use vmware on windows with this image http://www.osboxes.org/category/ubuntu/ here can see the 17.04 image i use, that ubuntu installer offer only a very old version.
User avatar
mainliner
Level 2
Level 2
Posts: 19
Joined: Thu Feb 09, 2017 11:42 am

Re: on ubuntu 17.04 winehq install not work

Post by mainliner »

So ignore the Ubuntu version if you want to use the latest version of Wine (recommended) follow these instructions instead:

https://wiki.winehq.org/Ubuntu

I've seen some crazy things but running Windows applications in a Virtual Machine on Windows running Ubuntu...? I'm sure you have a good use case for this...but...it looks odd.
user4711
Level 1
Level 1
Posts: 6
Joined: Mon May 29, 2017 5:55 am

Re: on ubuntu 17.04 winehq install not work

Post by user4711 »

mainliner wrote:So ignore the Ubuntu version if you want to use the latest version of Wine (recommended) follow these instructions instead:

https://wiki.winehq.org/Ubuntu

I've seen some crazy things but running Windows applications in a Virtual Machine on Windows running Ubuntu...? I'm sure you have a good use case for this...but...it looks odd.
the reason is the new version of tracktion have lots of bugs and the developer tell they can not reproduce it and ask for help. see this thread.
http://www.kvraudio.com/forum/viewtopic ... 2&t=484873


i like leave windows but go to linux my music software need work, acdsee pro as imageprocessing. I do lots of music have lots of plugins, and do much image processing so i can not use linux currently
harald
Newbie
Newbie
Posts: 2
Joined: Sat Mar 17, 2018 5:58 am

Re: on ubuntu 17.04 winehq install not work

Post by harald »

hi,

I am trying to install wine using the commands from the 2nd post here. The last one fails with message:
"E: Paket winehq-devel kann nicht gefunden werden."
This means the package could not be found, I also tried with winehq-stable.

At the ad repositorz command I tried several paths, as I am using Linux mint 18:
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubunt ... nial/main/
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/xenial main' as indicated on the installation page (https://wiki.winehq.org/Ubuntu ) returns an error , I checked the website an the path for xenial is as above in the "dists" folder.


Am I doing something wrong here? What else can I try to have wine installed?

uname -a:
Linux LinuxMint 4.4.0-21-generic #37-Ubuntu SMP Mon Apr 18 18:34:49 UTC 2016 i686 i686 i686 GNU/Linux

Thank you.
User avatar
dimesio
Moderator
Moderator
Posts: 13204
Joined: Tue Mar 25, 2008 10:30 pm

Re: on ubuntu 17.04 winehq install not work

Post by dimesio »

harald wrote:sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/xenial main' as indicated on the installation page
That is not what the wiki says. What it says is

Code: Select all

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'
Note the space between the slash and xenial.
harald
Newbie
Newbie
Posts: 2
Joined: Sat Mar 17, 2018 5:58 am

Re: on ubuntu 17.04 winehq install not work

Post by harald »

thank you for the quick answer.
now it has worked :)
Locked