Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 45

Thread: Wine and USB 2.0 Support

  1. #21
    Join Date
    Nov 2009
    Location
    Stockholm
    Beans
    6
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Wine and USB 2.0 Support

    Quote Originally Posted by MrVas View Post
    Thank you all for the hints to get me where I needed to get (Wine with USB support). The notes below are based on building Wine on a virtual 32-bit Ubuntu 9.10 (Karmic Koala) system running in a VirtualBox session on 64-bit Ubuntu 10.04 (Lucid Lynx).

    Code:
    cd ~
    mkdir wine-git
    cd wine-git
    
    sudo apt-get build-dep wine
    
    git clone git://source.winehq.org/git/wine.git .
    git checkout wine-1.3.3
    wget ftp://ftp.etersoft.ru/pub/people/amorozov/usb/1.3.3/*.txt
    git am *.txt
    You may have noticed that I skipped installing Ubuntu's libusb-1.0.0-dev package. I did this on purpose, since that package is old and does not work with Wine/USB patches provided by Alexander Morozov. Download the latest libusb package and build it from scratch:
    Code:
    mkdir ~/libusb
    cd ~/libusb  
    wget http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.8/libusb-1.0.8.tar.bz2/download
    tar jxvf libusb-1.0.8.tar.bz2
    cd libusb-1.0.8
    ./configure
    ./make
    sudo ./make install
    Create symbolic links for newly installed libusb:
    Code:
    sudo ln -s /usr/local/lib/libusb-1* /lib
    Now you should be able to start building the Makefile for Wine:
    Code:
    cd ~/wine-git
    ./tools/make_makefiles
    ./configure
    Verify that libusb is being used:
    Code:
    grep libusb config.log
    ..and now build Wine.
    Code:
    make depend && make
    Enjoy!!!

    Vas

    PS. Here are other links that helped me:

    http://forum.winehq.org/viewtopic.ph...&view=previous
    http://forum.winehq.org/viewtopic.php?t=9463
    http://wiki.winehq.org/WineOn64bit
    A few minor corrections / spellings:
    wget from sourceforge: remove the "/download" at the end. Else wget catches the wrong content.
    "./make" should be "make"
    libusb: no need to create symbolic links, they're already there.

    Otherwise a nice guide. Thanks.
    Last edited by sysghost; November 8th, 2010 at 01:28 AM. Reason: "miswordning"

  2. #22
    Join Date
    Jan 2011
    Beans
    1

    Re: Wine and USB 2.0 Support

    I hate to sound like a newbie but do I need to run a "make install" after MrVas's instructions? Or does the "make depend && make" command cover that?

  3. #23
    Join Date
    Jun 2009
    Location
    Barcelona, Venezuela
    Beans
    14
    Distro
    Ubuntu 17.04 Zesty Zapus

    Re: Wine and USB 2.0 Support

    Followed the instructions and installed the patched wine via playonlinux according to this. POL recognizes the wine version (supposedly patched). Still dont know how to use usb; cant see the device im plugging with wine.

    Any help?

  4. #24
    Join Date
    Jun 2010
    Beans
    196
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Wine and USB 2.0 Support

    I have compiled wine 1.3.10 with usb patches to use with my hercules mp3e2 console and still, i don't know how to check wether or not is working.
    I beleive there are a few things to be done from this point, but for this we 'll need some help.
    So, ubuntu gurus, bring the light to us..!

  5. #25
    Join Date
    Nov 2009
    Location
    Croatia/Hrvatska
    Beans
    492
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Wine and USB 2.0 Support

    ok, so i followed build instructions (a bit altered) and successfully built wine 1.3.11 with usb patches.

    the problem is that every time i run program in wine i get error message that wine failed to load Usbhub.sys, but i have the right path in registry and a file in c drive. i want to try load windows' usbhub.sys but i have 64 bit windows and get error message that 64 bit app cannot be loaded.

    now i'm waiting for a friend to send me proper files and then i will see what happens.

    after i get usbhub working, i will need to work on driver location for mass storage.

    cross your fingers guys and i hope someone will get inspired by this and make something ridiculous, like making this to work

  6. #26
    Join Date
    Jun 2010
    Beans
    196
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Wine and USB 2.0 Support

    marin123, good luck! i only know a few things, perhaps you need to load 32bit version of the sys. file you need first? just a thought. Also, any suggestion, on a way to check if my installation is work or not? hercules mp3e2 does give me some error report in the log file viewer, but nothing from wine.
    Lastly, getting this to work isn't an easy task. Otherwise, there would be packages precompiled for every wine version available. Many guys around here had put a lot of effort on this, but with no luck.
    It is up to wine developers to finally deal with amorozov's patches or whatever, and add usb support. I think they keep rescheduling this.

  7. #27
    Join Date
    Jun 2010
    Beans
    196
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Wine and USB 2.0 Support

    Well, all of you who seeking for usb support in wine, may want to read the release criteria for version 1.4, and smile...!
    http://wiki.winehq.org/WineReleaseCriteria

  8. #28
    Join Date
    Nov 2009
    Location
    Croatia/Hrvatska
    Beans
    492
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Wine and USB 2.0 Support

    Quote Originally Posted by philnice View Post
    Well, all of you who seeking for usb support in wine, may want to read the release criteria for version 1.4, and smile...!
    http://wiki.winehq.org/WineReleaseCriteria
    i have already read that, but we will have to wait and see will it happen and will it work.

    if it does, then:

    Code:
    sudo apt-get install wine1.4
    sudo apt-get remove windows

  9. #29
    Join Date
    Jun 2010
    Beans
    196
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Wine and USB 2.0 Support

    marin123 wrote:
    "sudo apt-get install wine1.4
    sudo apt-get remove windows"

    Seriously, perhaps this could be the main reason for any delays in wine - usb support...

  10. #30
    Join Date
    Oct 2007
    Location
    Titletown, USA
    Beans
    411
    Distro
    Xubuntu 17.04 Zesty Zapus

    Re: Wine and USB 2.0 Support

    Code:
    git clone git://source.winehq.org/git/wine.git .
    git checkout wine-1.3.3
    When I get to here, this is what happens;

    wolf@server:~/wine-git$ git clone git://source.winehq.org/git/wine.git .
    Cloning into ....
    source.winehq.org[0: 209.46.25.134]: errno=Connection refused
    fatal: unable to connect a socket (Connection refused)
    wolf@server:~/wine-git$ git clone git://source.winehq.org/git/wine.git
    Cloning into wine...
    source.winehq.org[0: 209.46.25.134]: errno=Connection refused
    fatal: unable to connect a socket (Connection refused)
    wolf@server:~/wine-git$ git checkout wine-1.3.3
    fatal: Not a git repository (or any of the parent directories): .git

Page 3 of 5 FirstFirst 12345 LastLast

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
  •