Results 1 to 30 of 62

Thread: for the Linux experts, WINE problem

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    The very model of a modern Moderator Xiahou's Avatar
    Join Date
    Aug 2002
    Location
    in the cloud.
    Posts
    9,007

    Default Re: for the Linux experts, WINE problem

    Have you run 'winecfg' yet? Part of what that program does is create a directory structure inside of a .wine folder that you'll find in your home directory.

    Also, use Windows.
    Last edited by Xiahou; 04-02-2010 at 21:18.
    "Don't believe everything you read online."
    -Abraham Lincoln

  2. #2
    Iron Fist Senior Member Husar's Avatar
    Join Date
    Jan 2003
    Location
    Germany
    Posts
    15,617

    Default Re: for the Linux experts, WINE problem

    Yes, I have, created a drive in my folder, but whenever I select it in the installer and click OK, it says C\Windows again.


    "Topic is tired and needs a nap." - Tosa Inu

  3. #3

    Default Re: for the Linux experts, WINE problem

    Did you download the latest wine or did you install the one from the repos?

    Did you install i386 or amd64 distro?
    Last edited by caravel; 04-03-2010 at 00:33.
    “The majestic equality of the laws prohibits the rich and the poor alike from sleeping under bridges, begging in the streets and stealing bread.” - Anatole France

    "The law is like a spider’s web. The small are caught, and the great tear it up.” - Anacharsis

  4. #4

    Default Re: for the Linux experts, WINE problem

    Are you on Wine 1.1.41? There is a regression that prevents installers from running properly: http://bugs.winehq.org/show_bug.cgi?id=22066
    According to a bug report there should be a new version (1.1.42) out in “two weeks”:
    It's a development release, things are often broken. 1.1.42 should be out in
    two weeks, so either use 1.1.40, patch 1.1.41 manually, or wait for 1.1.42
    (assuming this patch makes it in).
    Patch:
    Which is reported to fix the issue; if you can't wait, can't downgrade but are up to compiling from git...
    - Tellos Athenaios
    CUF tool - XIDX - PACK tool - SD tool - EVT tool - EB Install Guide - How to track down loading CTD's - EB 1.1 Maps thread


    ὁ δ᾽ ἠλίθιος ὣσπερ πρόβατον βῆ βῆ λέγων βαδίζει” – Kratinos in Dionysalexandros.

  5. #5

    Default Re: for the Linux experts, WINE problem

    Quote Originally Posted by Yohei View Post
    Did you download the latest wine or did you install the one from the repos?

    Did you install i386 or amd64 distro?
    Should not be relevant as Wine is i386 exclusively and pulls in ia32libs and so on.
    - Tellos Athenaios
    CUF tool - XIDX - PACK tool - SD tool - EVT tool - EB Install Guide - How to track down loading CTD's - EB 1.1 Maps thread


    ὁ δ᾽ ἠλίθιος ὣσπερ πρόβατον βῆ βῆ λέγων βαδίζει” – Kratinos in Dionysalexandros.

  6. #6

    Default Re: for the Linux experts, WINE problem

    Quote Originally Posted by Xiahou View Post
    Also, use Windows ReactOS.
    http://www.reactos.org/en/index.html

    Be pretty interesting to see how that works out if and when it matures a bit.
    - Tellos Athenaios
    CUF tool - XIDX - PACK tool - SD tool - EVT tool - EB Install Guide - How to track down loading CTD's - EB 1.1 Maps thread


    ὁ δ᾽ ἠλίθιος ὣσπερ πρόβατον βῆ βῆ λέγων βαδίζει” – Kratinos in Dionysalexandros.

  7. #7

    Default Re: for the Linux experts, WINE problem

    FWIW: If you hadn't already and you want to have the most current wine; you can add the Wine deb repository to your APT sources (lists). If you have a recent Ubuntu (like 9.10 or newer) it is a simple:
    Code:
    sudo apt-add-repository ppa:ubuntu-wine/ppa
    Which will import the archive PGP key and source list. Then you can update your software sources (sudo aptitude update) and your system should know about the latest wine versions available as debian packages.
    - Tellos Athenaios
    CUF tool - XIDX - PACK tool - SD tool - EVT tool - EB Install Guide - How to track down loading CTD's - EB 1.1 Maps thread


    ὁ δ᾽ ἠλίθιος ὣσπερ πρόβατον βῆ βῆ λέγων βαδίζει” – Kratinos in Dionysalexandros.

  8. #8
    Iron Fist Senior Member Husar's Avatar
    Join Date
    Jan 2003
    Location
    Germany
    Posts
    15,617

    Default Re: for the Linux experts, WINE problem

    Thanks Tellos Athenaios, I already added the upgrade path but not via console, did it in the software repositories window, that's how I got 1.1.41 in the first place.
    Wouldn't know how to downgrade or apply that fix, just had a look at Linux for about a week and it wasn't a very deep look either, google provided a bit of help and fortunately it's very automatic by now, the console gives me nightmares, I'd need a course to learn how it works ( I know, you type things into it, but I mean how the commands work, yesterday I learned "cd home" doesn't work, has to be "cd /home", my luck that it was "cd" at all ). Sudo, judo, budo, ppa, etc. doesn't tell me anything(yet).


    "Topic is tired and needs a nap." - Tosa Inu

  9. #9

    Default Re: for the Linux experts, WINE problem

    If you need to know how a command works there is usually a help screen for it; or better yet a manual or info page. You can type man <man_page> to access a manual page; and info <info_page> to access an info page (for some programs there is a difference between the two, apparently). Typically <man_page> or <info_page> is the same name as the program you want to read up on; e.g.
    Code:
    man sudo
    .

    For a start try reading
    Code:
    man builtins
    ; which details the standard commands the bash shell recognizes without additional programs.
    EDIT: If you are really interested a Bash scripting guide such as this: http://tldp.org/LDP/abs/html/ should prove useful.

    PPA is quite specific to Ubuntu and means Personal Package Archive. Canonical (the company behind Ubuntu) have this project site called Launchpad (which is similar to SourceForge) and PPA's are essentially the archives of projects hosted on Launchpad. The program add-apt-repository knows how to obtain PGP keys from the Launchpad server and how to resolve the name of a PPA archive to something that can be used by the other software package management tools on the system.

    And sudo is a program which is used to temporarily grant you administrative powers which is required if you want to fiddle with system software and system wide configuration settings.
    Last edited by Tellos Athenaios; 04-03-2010 at 12:17.
    - Tellos Athenaios
    CUF tool - XIDX - PACK tool - SD tool - EVT tool - EB Install Guide - How to track down loading CTD's - EB 1.1 Maps thread


    ὁ δ᾽ ἠλίθιος ὣσπερ πρόβατον βῆ βῆ λέγων βαδίζει” – Kratinos in Dionysalexandros.

  10. #10
    Iron Fist Senior Member Husar's Avatar
    Join Date
    Jan 2003
    Location
    Germany
    Posts
    15,617

    Default Re: for the Linux experts, WINE problem

    Thanks for the help, Tellos!

    Just got the update for Wine and all the installers seem to be working now, even got Steam to work, which feels kinda surreal in Linux.


    "Topic is tired and needs a nap." - Tosa Inu

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
  •  
Single Sign On provided by vBSSO