It look like Final Fantasy XIV A Realm Reborn Beta does not work under Wine (or Crossover). It installs from the downloaded installer fine but when it tries to open the launchpad it bombs out.
Friday, July 12, 2013
Wednesday, July 10, 2013
Crossover Wine Steam Nvidia Fedora 19 x64 Helper Post
On my Fedora 19 x64 system I needed to install a few extra i686 (or 32-bit) packages to get my gaming softwares to work. To do so I used the below yum command (it's a LONG one).
yum install isdn4k-utils.i686 cups-libs.i686 dbus-libs.i686 fontconfig.i686 mesa-libGLU.i686 gstreamer-plugins-base.i686 gstreamer.i686 gnutls.i686 libgphoto2.i686 gsm.i686 libjpeg-turbo.i686 openldap.i686 lcms-libs.i686 libmpg123.i686 openal-soft.i686 libpng.i686 sane-backends-libs.i686 libv4l.i686 libXcomposite.i686 libXcursor.i686 libXinerama.i686 libxml2.i686 libxslt.i686 openssl-libs.i686 nss-mdns.i686 gnupg:i686 gnupg xorg-x11-drv-nvidia-libs.i686
The gaming apps in question were Wine, Crossover and Steam. I suppose it'd apply to any other 32-bit game or OpenGL app.
yum install isdn4k-utils.i686 cups-libs.i686 dbus-libs.i686 fontconfig.i686 mesa-libGLU.i686 gstreamer-plugins-base.i686 gstreamer.i686 gnutls.i686 libgphoto2.i686 gsm.i686 libjpeg-turbo.i686 openldap.i686 lcms-libs.i686 libmpg123.i686 openal-soft.i686 libpng.i686 sane-backends-libs.i686 libv4l.i686 libXcomposite.i686 libXcursor.i686 libXinerama.i686 libxml2.i686 libxslt.i686 openssl-libs.i686 nss-mdns.i686 gnupg:i686 gnupg xorg-x11-drv-nvidia-libs.i686
The gaming apps in question were Wine, Crossover and Steam. I suppose it'd apply to any other 32-bit game or OpenGL app.
Pithos Pandora Client in Fedora 19 / 20
I had a dickens of a time trying to find Pithos packages for Fedora 19. At a loss for answers I figured I'd build it myself. After searching Google for a bit I came up with
http://blog.seventhmoon.info/blog/2012/07/31/getting-pithos-to-work-in-fedora-16-17/12/07/31/getting-pithos-to-work-in-fedora-16-17/
It's for Fedora 16 and 17 but it worked for Fedora 19 just fine. Below is a rehash of the steps needed to download and compile Pithos.
Step 1 - Input this command to add the rpmfusion repositories. One long command.
yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
Step 2 - Input this yum command to install dependencies for Pithos. One long command.
yum install python pyxdg pygobject2 pylast gstreamer-python notify-python gtk2-python dbus-python gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-ugly python-distutils-extra git python-setuptools
Step 3 - Where the magic happens. We download the source, compile and install. Three seperate commands, one on each line.
git clone https://github.com/kevinmehall/pithos.git
cd pithos
sudo python setup.py install --prefix=/usr
http://blog.seventhmoon.info/blog/2012/07/31/getting-pithos-to-work-in-fedora-16-17/12/07/31/getting-pithos-to-work-in-fedora-16-17/
It's for Fedora 16 and 17 but it worked for Fedora 19 just fine. Below is a rehash of the steps needed to download and compile Pithos.
Step 1 - Input this command to add the rpmfusion repositories. One long command.
yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
Step 2 - Input this yum command to install dependencies for Pithos. One long command.
yum install python pyxdg pygobject2 pylast gstreamer-python notify-python gtk2-python dbus-python gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-ugly python-distutils-extra git python-setuptools
Step 3 - Where the magic happens. We download the source, compile and install. Three seperate commands, one on each line.
git clone https://github.com/kevinmehall/pithos.git
cd pithos
sudo python setup.py install --prefix=/usr
Also, I think the original author sums it up best with...
Saturday, July 6, 2013
Dolphin Emulator 3.5 Fedora 19 Build Instructions
This little ditty is based on the official Dolphin Emulator Linux build guide located at https://code.google.com/p/dolphin-emu/wiki/Linux_Build . The official guide is for Debian, Ubuntu and variants. This one is NOT, it's for Fedora 19.
Introduction
Dolphin Emulator runs on 32 and 64 bit Fedora 19 installs. The below instructions explain how to build Dolphin Emulator on Fedora 19 using the cmake system.
Setting up to Build
First you'll need to install the libraries to compile Dolphin Emu. Use the below yum commmand to install all of them.
yum install git cmake-fedora gcc-c++ wxGTK-devel SDL-devel Cg bluez-libs-devel readline-devel alsa-lib-devel pulseaudio-libs-devel libao-devel glib2-devel openal-soft-devel ffmpeg-devel glew-devel lzo-devel portaudio-devel pango-devel
Next you'll want to pull down the source.
git clone https://code.google.com/p/dolphin-emu/ dolphin-emu
Next you'll want to change into the created directory:
cd dolphin-emu
Later if you want to update your local source issue the command:
git pull origin
Building
Create a build subdirectory, and change into it:
mkdir Build && cd Build
Configure the build:
cmake ..
You may also want to change the install prefix by adding "-D CMAKE_INSTALL_PREFIX=/new/path". Note that this path does not need to be absolute. cmake will complete it to its absolute equivalent. The default prefix is "/usr". This means that the executable will be installed as "/usr/bin/dolphin-emu", the plugins will be installed into "/usr/lib/dolphin-emu", and the shared data files will be installed into "/usr/share/dolphin-emu".
From here build and install in the standard make way:
make && make install
Note that you may need superuser privileges for the last command.
Running Dolphin
You can run dolphin from anywhere by typing:
dolphin-emu
If you changed the prefix and $prefix/bin is not in your path, then you will have to precede this with the path to the executable.
Introduction
Dolphin Emulator runs on 32 and 64 bit Fedora 19 installs. The below instructions explain how to build Dolphin Emulator on Fedora 19 using the cmake system.
Setting up to Build
First you'll need to install the libraries to compile Dolphin Emu. Use the below yum commmand to install all of them.
yum install git cmake-fedora gcc-c++ wxGTK-devel SDL-devel Cg bluez-libs-devel readline-devel alsa-lib-devel pulseaudio-libs-devel libao-devel glib2-devel openal-soft-devel ffmpeg-devel glew-devel lzo-devel portaudio-devel pango-devel
Next you'll want to pull down the source.
git clone https://code.google.com/p/dolphin-emu/ dolphin-emu
Next you'll want to change into the created directory:
cd dolphin-emu
Later if you want to update your local source issue the command:
git pull origin
Building
Create a build subdirectory, and change into it:
mkdir Build && cd Build
Configure the build:
cmake ..
You may also want to change the install prefix by adding "-D CMAKE_INSTALL_PREFIX=/new/path". Note that this path does not need to be absolute. cmake will complete it to its absolute equivalent. The default prefix is "/usr". This means that the executable will be installed as "/usr/bin/dolphin-emu", the plugins will be installed into "/usr/lib/dolphin-emu", and the shared data files will be installed into "/usr/share/dolphin-emu".
From here build and install in the standard make way:
make && make install
Note that you may need superuser privileges for the last command.
Running Dolphin
You can run dolphin from anywhere by typing:
dolphin-emu
If you changed the prefix and $prefix/bin is not in your path, then you will have to precede this with the path to the executable.
Wednesday, June 26, 2013
Quick word for sub Tier 1 freshness (DC Universe Online)
Just a little heads up for the fresh level 30's in the house. If you are free to play and can afford the $9.99 you really should purchase the Battle for Earth DLC. This DLC gives you access to the South Gotham Union daily quests which yield about 20 Triumph marks a day. Purchasing a DLC also upgrades your account from Free to Premium which has it's own benifets.
Tier 1 iconic sets cost between 26 to 39 marks each, so in theory you can get a piece of Tier 1 gear every two days without doing anything else besides the South Gotham Union quests. If this isn't fast enough for you then throw in the weekly solo challenges, there are 5 of them, and you'll be able to get an extra piece of Tier 1 per week. If you are completely lazy like me you can have full T1 in a maximum of14 days if you do all your solo chalenges once per week. This may seem like a long time but keep in mind any duos or alerts you complete will also yield Triumph marks. The more triumphs you compile the faster you'll get to Tier 1.
What I did when my hero hit 30 was head to the PvP vendor and purchase two DPS rings, the DPS neck piece, a DPS trinket, a DPS mask and a DPS PvP weapon. The above items will not contribute to your combat rating at all. What it will do is keep you alive while you earn Marks of Triumph to purchase the rest of your gear. I do not recommend using a full PvP gear set for PvE questing, PvP gear has toughness on it and no defense. Enemies will cut thru you like wet paper when you have no defense to protect yourself. So avoid the tempting and affordable full PvP set for questing. Be mindful this is for a DPS (damage) set, you can focus on your speciality role when you actually start to purchase your Tier 1 gear (or stick with DPS if you like).
Next I chose to run a couple of solo challenges. I picked the solo challenge based on what renown I needed to get cooperative with. After I finished the challenges I used the renown tokens and was deemed cooperative with the sentinels of magic (the faction I chose). I then high tailed it to the Magic Wing of the JLA Watchtower to purchase CR34 gear form the Sentinels vendor. The full set of CR34 gear cost 8 triumph marks and some cash. Using the CR34 gear and PvP accessories as a foundation I was able to easily complete South Gotham and the rest of the solo challenges.
On a side note DO NOT throw away any gear you get from solos, duos or alerts. Put them in your bank as they can positively affect your CR. Once you purchase a Tier 1 gear piece you can sell the duplicate slot items from your inventory.
Side note #2: If you get any purple "integrate on equip" items form solo or duos do not equip them. They are inferior quality to Tier 1 gear and usually sell/trade for a fairly good amount to people looking for their styles. Just because it's a purple doesn't make it good gear. Think profit!
Tier 1 iconic sets cost between 26 to 39 marks each, so in theory you can get a piece of Tier 1 gear every two days without doing anything else besides the South Gotham Union quests. If this isn't fast enough for you then throw in the weekly solo challenges, there are 5 of them, and you'll be able to get an extra piece of Tier 1 per week. If you are completely lazy like me you can have full T1 in a maximum of14 days if you do all your solo chalenges once per week. This may seem like a long time but keep in mind any duos or alerts you complete will also yield Triumph marks. The more triumphs you compile the faster you'll get to Tier 1.
What I did when my hero hit 30 was head to the PvP vendor and purchase two DPS rings, the DPS neck piece, a DPS trinket, a DPS mask and a DPS PvP weapon. The above items will not contribute to your combat rating at all. What it will do is keep you alive while you earn Marks of Triumph to purchase the rest of your gear. I do not recommend using a full PvP gear set for PvE questing, PvP gear has toughness on it and no defense. Enemies will cut thru you like wet paper when you have no defense to protect yourself. So avoid the tempting and affordable full PvP set for questing. Be mindful this is for a DPS (damage) set, you can focus on your speciality role when you actually start to purchase your Tier 1 gear (or stick with DPS if you like).
Next I chose to run a couple of solo challenges. I picked the solo challenge based on what renown I needed to get cooperative with. After I finished the challenges I used the renown tokens and was deemed cooperative with the sentinels of magic (the faction I chose). I then high tailed it to the Magic Wing of the JLA Watchtower to purchase CR34 gear form the Sentinels vendor. The full set of CR34 gear cost 8 triumph marks and some cash. Using the CR34 gear and PvP accessories as a foundation I was able to easily complete South Gotham and the rest of the solo challenges.
On a side note DO NOT throw away any gear you get from solos, duos or alerts. Put them in your bank as they can positively affect your CR. Once you purchase a Tier 1 gear piece you can sell the duplicate slot items from your inventory.
Side note #2: If you get any purple "integrate on equip" items form solo or duos do not equip them. They are inferior quality to Tier 1 gear and usually sell/trade for a fairly good amount to people looking for their styles. Just because it's a purple doesn't make it good gear. Think profit!
Monday, June 24, 2013
Marvel - War of Heroes v1.4.0 APK for Android
For those who have an "unsupported device" here is the Marvel - War of Heroes v1.4.0 apk for Android. Just download and install.
Download APK
Download APK
Hosting back on Google's Blogger
After using Godaddy's hosting for a little over a year I'm bringing my blog back to Google's Blogger hosting. Who'd have thought $8.99 a month would break the bank :)
Subscribe to:
Posts (Atom)