Lotro Downloading Wine Mac Never Ends

I recently decided to get LOTRO on Steam for something to do during the quarentine. I installed Wine properly and have launched the game to the download screen. The top bar says “downloading clientcell1.dat” and will fill all the way up to 100%, finalize, and then drop back to 0%.

  1. The new Mac download on 'lotro.com' is now up and running. (you can hit escape to skip to the end of it) Assorted notes about the Mac Client. Note: many of these 'notes' are 'design' items which (hopefully) will change as the Client becomes more 'mature.' However, they are currently 'issues.' If you have previously used it with a WINE.
  2. IMac (7,1) 2.4 C2D (Radeon 2600) - a bit older now Mac OSX 10.6.6 (current) CXG 10.0.1 New install yesterday from the australian installer download (had this from before, tis a long download), installed from the install software program with no issues, just pointed to my setup file (which exists on my NAS) and everything went right to work, including installing PyLOTRO.

This tutorial is for intermediate users who want to install and useWine on their computer running macOS.You should already know the basics of how to use the command line.If you don't, read this tutorial first.

What is Wine?

Official website for The Lord of the Rings Online™ with game information, developers diaries, frequently asked questions and message boards. The official LOTRO Community. Www.lotro-wiki.com is the home of the Mac Client player created and maintained documentation of the Mac Client as well as much information about LOTRO! Turbine Customer Support: Accounts For problems not specifically related to the Mac Client, but relating to the Account (myaccount.turbine.com), Financial, etc.

Wine is awesome.No, I'm not talking about the kind you drink,I mean the kind that lets you run Windows apps without theWindows operating system.It's kind of Zen, when you think about it.Oh, and did I mention it's completely free, legal, and open source?

Nowadays, Windows and Mac play nicely together.You can install Windows and Mac side by side and switch between them usingBoot Camp, but that requiresa reboot every time, and you can only use one operating system at a time.You can also use a tool likeParallels Desktop orVMware Fusionto virtualize Windows and run it together with Mac,but virtualization is slow and it takes up a lot of memory.(Your physical computer creates an imaginary 'virtual' computer within itself,and runs Windows on that. That takes a lot of resources!)On top of that, all of these solutions require you to own a legal copyof Windows, which isn't cheap!

Wine is different. When any program runs, it requests resourceslike memory and disk space from the operating system.All that Wine does is make sure that those requests get answered so thatthe program can run correctly. As far as the program knows, everythingis going smoothly because it has everything it needs.It never even realizes that it's not running on Windows!It's simpler than emulating a whole new computer, so it's faster.Since it's just translating requests, you don't need a copy ofthe actual Windows operating system. Plus, Wine is open source,which means people are continually improving it and adding new features.And you can't beat the price!

Will My Program Work With Wine?

A lot of people discover Wine because they have one specific Windows programthat they need to use, and it's the last thing preventing them from switchingto a different operating system. So, the big question is, will it work?The short answer is: probably, but it's worth checking.

The Wine project maintains a database called theAppDB that hasuser reviews of how well specific Windows programs work under Wine.Search for your program and find out! (If it's not listed, that doesn'tnecessarily mean that it won't work — only that you're apparently tryingto use a very obscure program!)

Requirements

To install Wine on your Mac, you will need the following:

  • macOS 10.10 (Yosemite) or above (but 10.15 Catalina is not recommended)
  • Access to an Admin account, with password
  • An internet connection

To check what version of macOS you're running,click on the Apple logo on the far left side of the toolbar,select 'About This Mac', and look at your versionnumber under the big 'macOS' or 'OS X'. If it's 10.10 or higher, you're all set.

Note that Wine does not work well with macOS 10.15 Catalina. Apple removed 32-bit supportin Catalina, which is a critical part of the macOS system that almost all of Wine relies on.You can run 64-bit applications through Wine on Catalina, but very few applications for Windowsare 64-bit. If you need to use Wine, you should not upgrade to Catalina.

You need an Admin account on your Mac because only Admins can install software.You will need to be logged in to this Admin account during the installation.If there is only one account on your computer, it is an Admin account.The account must have a password: if the account has no password,the sudo utility will fail. To set or change your password,go to the Accounts section in System Preferences.

Xquartz 2.7.7

Part 1: Install Homebrew

Homebrew is a package manager that makes installingopen source programs much easier. In particular, trying to installa large program like Wine without the help of a package manager would betremendously difficult.Fortunately, Homebrew itself is simple to install: just open up theTerminal and run this command:

The Terminal will tell you what it's about to do, and ask youif you want to proceed: press Enter to do so.The Terminal may then ask for a password: this is the passwordto the Admin account on your computer. As a security measure,the Terminal does not display anything as you type, not evenasterisks (*). Type your password anyway, and press Enter. If you get somekind of error, it might be because the Admin account doesn't have apassword set. Setting a password is required.

Lotro downloading wine mac never ends 2017

Installing Homebrew should only take a few seconds or minutes(depending on the speed of your internet connection). When it's done,the Terminal will say that the installation was successful, and ask you torun brew doctor. Do as it suggests:

This will make Homebrew inspect your system and make sure that everythingis set up correctly. If the Terminal informs you of any issues, you'll needto fix them yourself, and then run brew doctor again to verify that youfixed them correctly. When everything is set up correctly, you'll see themessage Your system is ready to brew, and you can move on to the next partof the tutorial.

Note: If Homebrew tells you that you need to agree to the Xcode license,you can do that by running:

The Terminal window will fill up with the Xcode license:read it, type agree and hit enter to agree to the license.

Part 2: Install Wine Using Homebrew

Now we get to actually install Wine! We'll let Homebrew do all the work,all you have to do is tell it what you want with this command:

Let's break down this command into parts. brew refers to Homebrew, whichyou just installed. cask refers toHomebrew Cask,an extension to Homebrew that is used to install GUI application on yourcomputer. (GUI stands for 'Graphical User Interface'. A GUI application isan app that you can see running, as opposed to invisibly runningin the background.) install refers to the fact that you're askingHomebrew Cask to install something on your computer, and wine-stableis the name of the thing that you want it to install. Wine has a 'stable' versionand a 'devel' version: you probably want stable, since it should have fewer bugs.

When you run this command, Homebrew will start automatically downloadingand installing software onto your computer. It might start by installingsoftware that has a totally different name: that's fine! Like most complexapplications, Wine doesn't work alone -- it relies on several other pieces of software torun correctly. These are called 'dependencies', and Homebrew is smart enoughto install them for you automatically when necessary.

While it's working, Homebrew will display messages and progress bars on the Terminal to let you know what it's doing. When it's done installing Wine, it will stop displaying messages and wait for you to type in a new command. When that happens, move on to the next step!

Part 3: Install Windows Programs Using Wine

To install a Windows program, first download the installer file:it should end with .exe. Remember the location you put it, and open upthe Terminal again. cd to the location, and use ls to make sure you cansee the installer file. (Note: if you do not know what cd and ls are,you should learn how to use the command linebefore using Wine.)

Once you are in the correct directory, run the installer through Wineby running the following command in the Terminal:

Where $INSTALLER is the name of the installer file. For example,if the installer file is named setup.exe, you would run:

A window will pop up with a regular graphical Windows installer.Click through it, and you're done!

Part 4: Run Windows Programs Using Wine

Open up the Terminal and run this to get to your Program Files folder:

Lotro downloading wine mac never ends list

Run ls to see what programs you have installed. Pick a program,and enter its directory using cd. (If the folder has a space in it,you must type a before the space. For example, Program Files.If you're having problems, try using tab autocomplete.)There should be a file that ends in .exe: this is the program file.Type this into Terminal:

Where $PROGRAM is the name of the .exe file. For example, if the programfile is named STARCRAFT.EXE, you would run:

The program will pop up in a new window, ready to use!Enjoy using Windows on your Mac, freely and legally!

Making a Dock Icon

Many people want to be able to run Windows programs the same waythey run other programs on the Mac: by clicking an icon in the Dock.Wine isn't specifically designed to support this, but with a little trickery,we can make it do what we want.

Note: Wine prints out error messages in the Terminal when something goes wrong.By launching Windows programs via a Dock icon, you are sidestepping theTerminal, which means that if something does go wrong and Wine has to quit,it will not be able to tell you what the problem was. The first stepto solving a problem is knowing what it is, so without running Winefrom the Terminal, you won't be able to fix it, and neither will anyone else.Running from the Dock is fine as long as your program seems to be workingcorrectly, but if it crashes, the first thing you should try is running itfrom the Terminal instead: it won't prevent the program from crashing,but it will give you some clues on how to fix the problem.

In order to launch a Windows program via the Dock, we're going towrite an AppleScriptthat launches the program for us, and then putthat AppleScript in the Dock. Essentially, we're writing a program ourselves!Don't worry, it's easy enough. There is a program on your computerthat is designed for helping you write AppleScripts:it's called 'Script Editor', and you can find it in the/Applications/Utilities directory of your computer,same as the Terminal itself.

Open up the Script Editor. You should see a window with a large areayou can type in near the top: this is where you write your AppleScript.In that area, type the following text:

You'll need to replace $PATH_TO_PROGRAM with the path from theProgram Files directory to your program executable. You can see thatyou're simply telling the AppleScript to run a line of code in the Terminal:the same line of code that you could run to start your Windows program.

Next, press the Compile button at the top of the window.The text should become colored to indicate that Script Editorunderstands what you wrote. You can also try pressing the Run buttonto run your script: it should open the Windows program successfully.

Lastly, save your script. You can give it whatever name you'd like,but be sure to select File Format: Application in the save options,and leave Startup Screen unchecked.

Open up the Finder, go to where you saved your script, and drag thatfile to your Dock. It should stay there, just like a real application — because it is a real application! However, all it does is runthat launcher command for you, so you can move the application around,rename it, or even delete it, and it won't affect the Windows programthat you're running.

Keeping Wine Up to Date

Xquartz 2.7.7

Wine is an open source program. That means that programmersaround the world are continually improving it, adding new featuresand squashing bugs. If you don't update Wine, though, it will neverget those improvements, so it's generally a good idea to check for updatesevery so often. We can use Homebrew to keep Wine up to date: it's easy!Just run this command:

With this command, Homebrew will first update itself, if any updatesare available. It will then find all the outdated software it knows about(including Wine) and upgrade them all to the latest version.Checking for updates isn't strictly necessary, as Wine runs quite wellcurrently. However, it's a good idea to run this command every few monthsor so.

Uninstalling Wine and Homebrew

If you try Wine and you don't like it, uninstalling it is easy.Just run this command:

And Homebrew will helpfully remove Wine from your computer.However, in order to install Wine, Homebrew also had to install many othersmall programs that Wine relies upon to work correctly.(That's why the install process takes so long!)If you want to remove these as well,run this script:

That script will remove everthing that you installed in this tutorial,including Homebrew, Wine, and all the other programs Homebrew installedto get Wine to work correctly.

Lotro Downloading Wine Mac Never Ends Lyrics

Please enable JavaScript to view the comments powered by Disqus.

Lotro Downloading Wine Mac Never Ends To Start

Throughout this tutorial I’ll assume you know how to open a terminal and run commands (lines beginning with $, but don’t include the $). You should also check to see how much video memory you have. This will come in handy later. If unsure, don’t worry about it.
Before we get started
Make sure you have Wine installed. For best results you should grab the latest version.
See: http://www.winehq.org/download/
Note: you must use Windows XP as your Windows version for this to work. Using 2000 will result in a ‘Unsupported Operating System’ error.
To switch: Open ‘winecfg’ and switch the version (The Wine default is Windows XP).
Note to 64bit users:
You should add the openal32 DLL Override in winecfg->Libraries.
Note to 64 bit Gnome users:
A new error may occur with the newer releases of 64 bit Gnome desktops (including Unity). The message is:
“64bit Error “p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directory”
It occurs after logging in. The only known solution found so far is here:
http://askubuntu.com/questions/127848/wine-cant-find-gnome-keyring-pkcs11-so
I still had problems after applying this solution.
The solution I found was to try a non-Gnome desktop. Switching from unity to kde-standard worked for me. You could also switch to the 32 bit version of Ubuntu or whichever distro you use.
Getting Started
The newer versions of wine provided by most modern GNU/Linux distributions should provide winetricks. If not you can grab it with ‘wget’ in your terminal:
$ wget http://winetricks.org/winetricks
Once you have winetricks you are ready to begin.
Install the necessary dependencies into wine
In your terminal type:
$ bash ./winetricks vcrun200{3,5,8} d3dx9 corefonts
(Nvidia users should also install physx)
Note: ‘vcrun200{3,5,8} is a bash expansion expression which returns vcrun2003, vcrun2005, and vcrun2008.
Grab the LOTRO installer
Note: If you already have LOTRO installed somewhere you can copy the ‘Turbine/The Lord of the Rings Online’ directory into your ‘.wine/drive_c’ folder (Default location is ‘Program Files’). Then skip ahead to ‘Install missing splash screens’
If you use wine 1.3 or earlier the standard LOTRO installer may not work. In this case you will need to find the full installer floating around online. As of this writing the only place I can find is atomicgamer.com.
http://www.atomicgamer.com/files/87989/the-lord-of-the-rings-online-client-high-res-free2play
http://www.atomicgamer.com/files/86523/the-lord-of-the-rings-online-client-standard-res-usa
If you use wine 1.4 or later you should be able to run the standard LOTRO installers.
You can grab either Low or High resolution installer.
Low resolution:
$ wget http://content.turbine.com/sites/clientdl/lotro/lotrostandard.exe
High resolution:
$ wget http://content.turbine.com/sites/clientdl/lotro/lotrohigh.exe
LOTRO installation (skip if you are ‘already installed’)
If you have the full installer you can start it directly using wine.
$ wine LOTROSetup.exe
If you are using the standard LOTRO installer you can start it by prefixing the wine command with ‘GC_DONT_GC=1’.
For low resolution:
$ GC_DONT_GC=1 wine lotrostandard.exe
For high resolution:
$ GC_DONT_GC=1 wine lotrohigh.exe
Note: If the downloader freezes at some point just kill the process (ctrl+c in the terminal) and start the downloader again. If you don’t remove any files it should resume the download and continue.
During the installation be sure to uncheck ‘create desktop icon’, ‘README’, the subscription, and the ‘Load Lord Of The Rings Online’ options ( Currently TurbineLauncher fails when trying to load it. We’ll be using the 3rd party client ‘Pylotro’ to load the game instead.)
Install missing splash screens
Without these you would normally see grey splash screen with white crosshatches during game load or when teleporting. Normally the TurbineLauncher would grab these. But since it doesn't work we have to download them ourselves.
These images need to be installed into “Turbine/The Lord of the Rings Online/raw/en/logo”.
First cd into The Lord of the Rings Online/raw/en/logo
32bit:
$ cd ~/.wine/drive_c/Program Files/Turbine/The Lord of the Rings Online/raw/en/logo
64bit:
$ cd ~/.wine/drive_c/Program Files (x86)/Turbine/The Lord of the Rings Online/raw/en/logo
Now download the splash screens (I have a script to simplify this)
Note: This script defaults to english if you omit the language. ‘fr’ and ‘de’ also available.
$ wget https://sites.google.com/site/leeslinuxblog/lotrosplashme.sh
$ bash lotrosplashme.sh en
Install pylotro
There’s three ways we can do this. One is installing using the source. The second is the windows exe in wine. The third is installing via Ubuntu PPA (if you use Ubuntu).
Install from source
Make sure you have python and pyqt4 installed (python-qt4?)
Download the source: (pylotro website is no more)
$ wget https://sites.google.com/site/leeslinuxblog/PyLotRO-0.1.15.zip
Unzip source & cd to the directory:
$ unzip PyLotRO-0.1.15.zip;cd PyLotRO
Run setup.py.
Via sudo (Ubuntu,debian,Mint)
$ sudo python setup.py install
Via su:
$ su -c “python setup.py install”
Install windows exe in Wine
Download the windows exe file:
$ wget http://www.mcgillsociety.org/PyLotRO/pylotro-setup.exe
Install using wine:
$ wine pylotro-setup.exe
Install using Ubuntu PPA
$ sudo add-apt-repository ppa:ajackson-bcs/ppa
$ sudo apt-get update;sudo apt-get install -y pylotro
Configure PyLotRO to run LOTRO
(Can be done via wizard or manually)
Wizard: (may not work with 64bit. Use ‘manually’)
1. Click ‘Tools’
2. Click ‘Settings Wizard’.
3. Select ‘Dungeons & Dragons Online’ and click ‘Find Games’.
4. Select “C:Program FilesTurbineDDO Unlimited”
5. Click Apply.
Manually:
1. Click ‘Tools’ on the menu bar.
2. Click ‘Options’.
3. Choose Game directory.
(32bit: /home/USERNAME/.wine/drive_c/Program Files/Turbine/The Lord of the Rings Online
64bit: /home/USERNAME/.wine/drive_c/Program Files (x86)/Turbine/The Lord of the Rings Online)
4. (optional) Enable ‘High-Res Graphics’.
5. Save the settings.
Pylotro should now fill right up with the Realm list, news, languages, etc.
Patch the game data
1. Click ‘Tools’ on menu bar.
2. Click ‘Patch’.
3. Click ‘Start’ (This can take a while).
4. When finished, click ‘Exit’.
Run LOTRO!
Select realm and login!
In the future simply load Pylotro to play the game :)
Notes
If the game ever gives you an error saying you don’t have the latest version of the client installed, simply run ‘Patch’ from the Tools menu in Pylotro
You may also get errors regarding your audio. This is normal. If you don't have sound, Go to ‘Options->Audio’ and select your 'Sound Playback' device. You can ignore the error's in the PyLotRO output window, or you can try configuring your sound in winecfg.
Fixes/Tweaks
At this point you should be able to sign in and play the game. But its normal for some performance issues to manifest here. Here are some tweaks/fixes you can try.
Set the correct video memory size in the Registry.
1. Open regedit:
$ wine regedit
2. Browse to HKEY_CURRENT_USER/Software/Wine/Direct3D/
(if this key does not exist, see ‘Missing Direct3D registry branch’ below)
3. Edit or create a key called ‘VideoMemorySize’.
Set ‘VideoMemorySize’ to the amount of video memory you have (1gb 1024).
Missing Direct3D registry branch:
1. Right click Wine key in HKEY_CURRENT_USERSoftware
2. Click New->key
3. Enter ‘Direct3D’
4. Right click the ‘Direct3D’ key
5. Click New->String Value
6. Type ‘VideoMemorySize’
7. Right click ‘VideoMemorySize’, then modify
8. Enter amount of video memory (1024 1gb)
See the 'Game Tweaks' section
The Game Tweaks are located at the bottom of this page. It includes suggestions for in game options to configure DDO for better performance.

Game Tweaks
Tweaking the game:
Setting the video memory size usually fixes most performance issues. However there is a list of things you can do to try to kick the performance up an extra notch. Of course these are just suggestions. They are all optional.
Disable desktop 3D effects (In Unity switch to 2D session)
The 3D desktop features can cause some performance issues in the game. Logging out and changing your Unity session, or disabling 3D desktop effects can greatly increase game performance.
Choose a ‘Graphics Quality’ in Options->Graphics
It’s common for the auto detection to misdetect the card since there is a wine api in the middle of everything. Select this manually to get the quality you want. (I chose ‘very high’ for my 1gb Nvidia card)
Increase ‘Texture Cache Size’ in Options->Adv. Graphics
You can increase this to improve the game performance by increasing the amount of system memory used for graphics resources. This can decrease load times and in turn increase game performance.
Enable ‘Triple Buffering’ in Options->Adv. Graphics
For video cards with extra memory you can use this setting to slightly increase rendering performance.
Disable ‘Player Mesh Combining’ in Options->Adv. Graphics
This feature not only uses up more system memory, but also video memory. Saving a little video memory can always help game performance.
Disable ‘Distant Imposters’ in Options->Adv. Graphics
This option simply allows trees and other objects to render over distant scenery. Can be disabled to increase game performance.