Home | Webstore
Latest News: OOTP 26 Available - FHM 12 Available - OOTP Go! Available

Out of the Park Baseball 26 Buy Now!

  

Go Back   OOTP Developments Forums > Prior Versions of Our Games > Out of the Park Baseball 15 > OOTP 15 - General Discussions

OOTP 15 - General Discussions Discuss the new 2014 version of Out of the Park Baseball here!

Reply
 
Thread Tools
Old 04-18-2014, 10:20 PM   #1
kryakyu12
Major Leagues
 
Join Date: Jun 2012
Location: Outfield seating, cheering the home team
Posts: 378
Linux Installation Notes

[EDIT by admin] The mysqlclient library is no longer needed since 15.2.8

Hi all!
Just wanted to share my notes on installing OOTP on Linux, to help out anyone doing the same

- DEPENDENCIES

OOTP15 should run on most current Linux variants, however you will need to ensure that you have the following libraries available on your system
Code:
- libasound.so.2
- libc.so.6
- libdl.so.2
- libgcc_s.so.1
- libGLU.so.1
- libm.so.6
- libmysqlclient.so.18
- libpthread.so.0
- librt.so.1
- libstdc++.so.6
- libX11.so.6
- libXau.so.6
- libxcb.so.1
- libXdmcp.so.6
- libXpm.so.4
- libXxf86vm.so.1
- libz.so.1
- linux-vdso.so.1
All of the above libraries were included in my installation of Ubuntu 12.04 by default except for libmysqlclient18, which you will need to install.
Additionally, while OOTP itself is now provided as both a 32-bit and 64-bit binary, the installation program is a 32-bit binary. You will therefore need to install the following 32-bit packages (if you haven't done so for a previous version of OOTP)
Code:
- libXpm4:386
- libXxf86vm1:i386
- libasound2:i386
- libstdc++6:i386
- zlib1g:i386
You can do this by running the following command on Ubuntu, or most other Debian-based distros:
Code:
sudo apt-get install libXpm4:i386 libXxf86vm1:i386 libasound2:i386
libstdc++6:i386 zlib1g:i386 libmysqlclient18
Note that apt-get requires root access to run.
- INSTALLATION

Once you have downloaded and extracted the installation file, simply run the install program. This should extract the necessary files, as well as create a .desktop file in your Desktop directory that you can use to run OOTP15. Note that you may have to set exec permissions to use this icon (Unity needs +x, but XFCE does not ).
Alternately, you can run ootp15.sh from the command line to start OOTP15.

- LICENSE
Please note that the Linux version does not use the eSellerate licence keys; so your license should not start with OOTP15-xxxx. This means that you will not be able to use your second license to run OOTP15 on a Windows or Mac PC, and that if you did get a Windows/Mac license, you cannot use the second key to install on Linux.

- LINUX VERSIONS
I have installed on Ubuntu (unity) 12.04 and Xubuntu (XFCE) 12.04, both 32-bit and 64-bit.

Good luck, and have fun!

-kr-

Last edited by Andreas Raht; 05-19-2014 at 06:35 PM.
kryakyu12 is offline   Reply With Quote
Old 04-18-2014, 10:25 PM   #2
old timer
Hall Of Famer
 
old timer's Avatar
 
Join Date: May 2002
Posts: 2,278
Thanks so much for this! It will come in handy for us in tech support, I'm sure.
__________________
old timer is offline   Reply With Quote
Old 04-19-2014, 03:46 PM   #3
CardsFan67
Bat Boy
 
Join Date: Apr 2014
Posts: 2
I'm having trouble installing the game on Ubuntu 14.04 64 bit version, and I've been unable to find an answer.

Running the .bin file from the terminal gives this error:
Code:
error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory
Running locate libGL.so.1 shows this:
Code:
usr/lib/x86_64-linux-gnu/mesa/libGL.so.1
/usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
Is there a link I'm missing somewhere?
Thanks
CardsFan67 is offline   Reply With Quote
Old 04-19-2014, 09:50 PM   #4
brainygamer
Bat Boy
 
brainygamer's Avatar
 
Join Date: Aug 2010
Location: Indiana USA
Posts: 8
I'm having similar problems installing OOTP 14 on Ubuntu 14.04 64-bit. I suspect it's the usual issue of 32-bit dependencies on a 64-bit system. I've run OOTP on Linux since it was first available, and every year requires some kind of workaround and eventual fix from the developer. I can't seem to solve it myself this year, so I'm hoping someone steps up to help us. I'm guessing the game was tested on an earlier version of Ubuntu, and just released 14.04 is causing an unexpected problem.

Quote:
Originally Posted by CardsFan67 View Post
I'm having trouble installing the game on Ubuntu 14.04 64 bit version, and I've been unable to find an answer.

Running the .bin file from the terminal gives this error:
Code:
error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory
Running locate libGL.so.1 shows this:
Code:
usr/lib/x86_64-linux-gnu/mesa/libGL.so.1
/usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
Is there a link I'm missing somewhere?
Thanks
brainygamer is offline   Reply With Quote
Old 04-19-2014, 09:57 PM   #5
kryakyu12
Major Leagues
 
Join Date: Jun 2012
Location: Outfield seating, cheering the home team
Posts: 378
Quote:
Originally Posted by CardsFan67 View Post
I'm having trouble installing the game on Ubuntu 14.04 64 bit version, and I've been unable to find an answer.

Running the .bin file from the terminal gives this error:
Code:
error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory
Running locate libGL.so.1 shows this:
Code:
usr/lib/x86_64-linux-gnu/mesa/libGL.so.1
/usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
Is there a link I'm missing somewhere?
Thanks
CardsFan,
It looks like the problem is that you are missing the 32-bit version of libGL. Did you install the multi-arch support (which should get installed with the apt-get command I gave the OP)? I'll see if I can get 14.04 running under virtualbox today/tomorrow (if only to see if unitiy is any better ).

-kr-
kryakyu12 is offline   Reply With Quote
Old 04-19-2014, 10:58 PM   #6
CardsFan67
Bat Boy
 
Join Date: Apr 2014
Posts: 2
I do have the i386 packages installed from the OP. Checked them all again individually just to be sure.
CardsFan67 is offline   Reply With Quote
Old 04-20-2014, 05:13 AM   #7
kryakyu12
Major Leagues
 
Join Date: Jun 2012
Location: Outfield seating, cheering the home team
Posts: 378
OK, I got OOTP15 installed on Ubuntu 14.04. the tldr; is: install libgl1-mesa-glx:i386 and unless you somehow are able to manage to install libmysqlclient18 (I could not ) update ootp15.sh to use the 32-bit OOTP binary and install libglu1-mesa:i386

The long detals are as follows:

First, you will need to install the 32-bit packages listed in the OP. On my (virtualbox) system, this included the following libraries:
Code:
  gcc-4.8-base:i386 gcc-4.9-base:i386 libasound2:i386 libc6:i386 libgcc1:i386
  libstdc++6:i386 libx11-6:i386 libxau6:i386 libxcb1:i386 libxdmcp6:i386 libxext6:i386
  libxpm4:i386 libxxf86vm1:i386 zlib1g:i386
To get libGL.so.1, you will also need to install libgl1-mesa-glx.
Code:
sudo apt-get install libgl1-mesa-glx:i386
This got me the following additional packages:
Code:
  libcgmanager0:i386 libdbus-1-3:i386 libdrm-intel1:i386 libdrm-nouveau2:i386
  libdrm-radeon1:i386 libdrm2:i386 libelf1:i386 libexpat1:i386 libffi6:i386
  libgl1-mesa-dri:i386 libgl1-mesa-glx:i386 libglapi-mesa:i386 libllvm3.4:i386
  libnih-dbus1:i386 libnih1:i386 libpciaccess0:i386 libtinfo5:i386
  libtxc-dxtn-s2tc0:i386 libudev1:i386 libx11-xcb1:i386 libxcb-dri2-0:i386
  libxcb-dri3-0:i386 libxcb-glx0:i386 libxcb-present0:i386 libxcb-sync1:i386
  libxdamage1:i386 libxfixes3:i386 libxshmfence1:i386
Now you should be able to run the installer. Once that finished, I went ahead and installed libmysqlclient18:
Code:
sudo apt-get install libmysqlclient18
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libmysqlclient18:i386 : Depends: mysql-common:i386 (>= 5.5.35+dfsg-1ubuntu1) but it is not installable
E: Unable to correct problems, you have held broken packages.
Whoops! So I could not run the 64-bit version of OOTP. However I could run the 32-bit version. To do this I modified ootp15.sh to add the following:
Code:
OOTP_ARCH=i686
And I also had to install one last 32-bit library:
Code:
sudo apt-get install libglu1-mesa:i386
That seemed to work for me... well, other than no synaptic package manager, no window switcher, and NO EMACS (Oh, and no 1024x768 with virtualbox on Xubuntu; I had to run vb on windows to get it to work )

Hope the above helps.

-kr-
kryakyu12 is offline   Reply With Quote
Old 04-21-2014, 06:28 PM   #8
cwinnbari
Bat Boy
 
Join Date: Jan 2014
Posts: 7
Hi I used the installer and it ran fine....

When I try to load in the terminal i get this

/opt/Out of the Park Developments/OOTP Baseball 15/bin/ootp15_64bit: error while loading shared libraries: libchilkat-9.4.0.so: cannot open shared object file: No such file or directory

not sure what I'm missing. Thanks!
cwinnbari is offline   Reply With Quote
Old 04-21-2014, 10:18 PM   #9
kryakyu12
Major Leagues
 
Join Date: Jun 2012
Location: Outfield seating, cheering the home team
Posts: 378
Quote:
Originally Posted by cwinnbari View Post
Hi I used the installer and it ran fine....

When I try to load in the terminal i get this

/opt/Out of the Park Developments/OOTP Baseball 15/bin/ootp15_64bit: error while loading shared libraries: libchilkat-9.4.0.so: cannot open shared object file: No such file or directory

not sure what I'm missing. Thanks!
It looks like you are trying to run the program directly... You need to run ootp15.sh, which sets up the LD_LIBRARY_PATH.

Cheers,
-kr-
kryakyu12 is offline   Reply With Quote
Old 04-24-2014, 06:13 AM   #10
cktai
Bat Boy
 
Join Date: Apr 2014
Location: Apeldoorn, Netherlands
Posts: 3
I'm running Debian Wheezy on 64-bit, which means that my glibc6 version is only 2.13 while 2.15 is required for the 64 bit version. I'd rather not go through the process of upgrading glibc6 through the experimental depository because that could get rather tricky and will almost certainly mess up my linux installation. Does anyone know a work-around? Is it perhaps possible to run the 32 bit version instead, or would it help if I compile the game from source instead of using the installer?
cktai is offline   Reply With Quote
Old 04-24-2014, 08:18 AM   #11
kryakyu12
Major Leagues
 
Join Date: Jun 2012
Location: Outfield seating, cheering the home team
Posts: 378
Quote:
Originally Posted by cktai View Post
I'm running Debian Wheezy on 64-bit, which means that my glibc6 version is only 2.13 while 2.15 is required for the 64 bit version. I'd rather not go through the process of upgrading glibc6 through the experimental depository because that could get rather tricky and will almost certainly mess up my linux installation. Does anyone know a work-around? Is it perhaps possible to run the 32 bit version instead, or would it help if I compile the game from source instead of using the installer?
cktai,
You can run the 32-bit version of the game on a 64-bit machine - at least, I was able to run the 32-bit version on 64-bit Ubuntu 12.04. Simply edit ootp15.sh, set OOTP_ARCH to something. eg:
Code:
# Forcing 32-bit mode
OOTP_ARCH=i686
Cheers,
-kr-
kryakyu12 is offline   Reply With Quote
Old 04-24-2014, 05:33 PM   #12
jasonditz
Minors (Double A)
 
Join Date: Sep 2002
Posts: 121
Bought the Steam version today for linux and it's not working at all. Clicking Play in steam just starts and stops immediately. Running ootp15.sh in command line returns

jasonditz@richlanda10:~/.steam/steam/SteamApps/common/OOTP Baseball 15$ ./ootp15.shszCmd: /bin/sh -c '"/home/jasonditz/.local/share/Steam/steam.sh" "steam://run/272670"' &

Error, unable to continue...

Starting Steam client...

jasonditz@richlanda10:~/.steam/steam/SteamApps/common/OOTP Baseball 15$ Running Steam on ubuntu 14.04 64-bit
STEAM_RUNTIME is enabled automatically
jasonditz is offline   Reply With Quote
Old 04-24-2014, 05:58 PM   #13
cwinnbari
Bat Boy
 
Join Date: Jan 2014
Posts: 7
having same issue....

Is it possible that we need to put a command into steam to tell it to run the 64bit version?
cwinnbari is offline   Reply With Quote
Old 04-24-2014, 06:55 PM   #14
jasonditz
Minors (Double A)
 
Join Date: Sep 2002
Posts: 121
Quote:
Originally Posted by cwinnbari View Post
having same issue....

Is it possible that we need to put a command into steam to tell it to run the 64bit version?
I hope it's something that simple. I buy OOTP every year and I waited on the Steam version this time because I was hoping it'd solve some of the "unlicense - relicense" errors I was having with OOTP14, but now I'd welcome those, because at least that version more or less worked.
jasonditz is offline   Reply With Quote
Old 04-24-2014, 10:36 PM   #15
jasonditz
Minors (Double A)
 
Join Date: Sep 2002
Posts: 121
Update: Think I have it figured out.

I closed Steam entirely, then ran ./ootp15.sh and it popped up an "installing game data" screen. Now the game runs fine within Steam.
jasonditz is offline   Reply With Quote
Old 04-29-2014, 01:39 AM   #16
ajamesc97
Bat Boy
 
Join Date: Apr 2014
Posts: 1
Quote:
Originally Posted by jasonditz View Post
Bought the Steam version today for linux and it's not working at all. Clicking Play in steam just starts and stops immediately. Running ootp15.sh in command line returns

jasonditz@richlanda10:~/.steam/steam/SteamApps/common/OOTP Baseball 15$ ./ootp15.shszCmd: /bin/sh -c '"/home/jasonditz/.local/share/Steam/steam.sh" "steam://run/272670"' &

Error, unable to continue...

Starting Steam client...

jasonditz@richlanda10:~/.steam/steam/SteamApps/common/OOTP Baseball 15$ Running Steam on ubuntu 14.04 64-bit
STEAM_RUNTIME is enabled automatically
I'm still having this same issue on ubuntu 14,04 steam even after doing everything suggested in this thread. Could you give me a step by step of what exactly you did so I can try to fix this? edit: never mind. After restarting, using ./ootp15.sh worked for me!

Last edited by ajamesc97; 04-30-2014 at 07:28 PM. Reason: fixed issue
ajamesc97 is offline   Reply With Quote
Old 05-08-2014, 08:06 PM   #17
SilentFox
Minors (Single A)
 
Join Date: Jan 2010
Location: Naguabo, Puerto Rico, Formerly Miami, Florida
Posts: 63
I am afraid not even that has worked for me, it would not recognize that ootp15.sh even exists even though I am staring at it. I would like to know what can be done to make the terminal recognize it. In detail, it is simply that it would state that it could not be found. The checkmark in the properties of the file states that it is executable, I have read and write access to it as well. All well until I try to execute it in the terminal.

Code:
josuepineda@josuepineda-ZX4250G:~$ ./ootp15.sh
bash: ./ootp15.sh: No such file or directory
This is what I get. I am unsure how other games in Steam actually run if I couldn't get access to this. If I have done wrong, I would appreciate being let known. Running Ubuntu 14.04 as the above.


Code:
josuepineda@josuepineda-ZX4250G:~$ sudo apt-get install libgl1-mesa-glx:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libgl1-mesa-glx:i386 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
Code:
josuepineda@josuepineda-ZX4250G:~$ sudo apt-get install libmysqlclient18
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libmysqlclient18 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
[In case I am asked if I have those installed.]


Code:
josuepineda@josuepineda-ZX4250G:~$ chmod +x ootp15.sh
chmod: cannot access ‘ootp15.sh’: No such file or directory
Code:
josuepineda@josuepineda-ZX4250G:~$ ldd ootp15.sh
ldd: ./ootp15.sh: No such file or directory
josuepineda@josuepineda-ZX4250G:~$



Disregard the former, it was a matter of whitespace in the folder name. I just had to add backslashes to each occurrence of a line break once I got the directory open in the terminal.

Last edited by SilentFox; 05-09-2014 at 06:03 PM. Reason: Disregard. I fixed it.
SilentFox is offline   Reply With Quote
Old 06-10-2014, 10:56 PM   #18
obviousman
Bat Boy
 
Join Date: May 2014
Posts: 1
I've been trying for over a week to get OOTP to run on Ubuntu 14.04 with no luck. I just switched from Windows 2 weeks ago, so I'm pretty sure it's user error, but I've tried everything I can think of and the thing just won't run.

First I tried the bin file. I got the install program to run all the way through. However, at the end of the install I get a message the says:

sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found

No icons showed up on my desktop and there was no sign of the game on my computer at all.

Then, being a die-hard OOTP fan, I installed Steam and bought/installed OOTP through it. It ran the install and the icon showed up on my desktop. However, when I click it, nothing happens. When I click "Play" from within Steam, nothing happens.

If someone can provide me with a solution to either of these issues, I would be grateful.
obviousman is offline   Reply With Quote
Old 06-11-2014, 09:03 AM   #19
kryakyu12
Major Leagues
 
Join Date: Jun 2012
Location: Outfield seating, cheering the home team
Posts: 378
Quote:
Originally Posted by obviousman View Post
I've been trying for over a week to get OOTP to run on Ubuntu 14.04 with no luck. I just switched from Windows 2 weeks ago, so I'm pretty sure it's user error, but I've tried everything I can think of and the thing just won't run.

First I tried the bin file. I got the install program to run all the way through. However, at the end of the install I get a message the says:

sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found
sh: 1: /usr/bin/update-menus: not-found

No icons showed up on my desktop and there was no sign of the game on my computer at all.

Then, being a die-hard OOTP fan, I installed Steam and bought/installed OOTP through it. It ran the install and the icon showed up on my desktop. However, when I click it, nothing happens. When I click "Play" from within Steam, nothing happens.

If someone can provide me with a solution to either of these issues, I would be grateful.
Obviousman,
You should be able to ignore the "/usr/bin/update-menus" errors... What directory did you install OOTP15 into? For me the installation went into the same directory that I had extracted the install file into (ie, /home/kryakyu/OOTP15). Depending on the options you choose when you did the install, you may also have a OOTP<something>.desktop file in your ~/Desktop directory. If you have this file, check to see that it has execute permissions: "chmod 0775 FILENAME" should do the trick.

Since I have not installed Steam, I am not sure where that version would be, but I suspect that it would be something along the lines of .../steam/SteamApps/common/Out_Of_The_Park_Baseball_15/. Either way, you should find the file ootp15.sh in the root of the installation directory and be able to run it from a command (shell) window. From earlier comments in this thread, my understanding is that for the steam version you need to run ootp15.sh one time *before* starting the steam client to get it to work properly.

If you cannot find ootp15.sh, at worst, you can open a shell window and run "find . -name ootp15.sh -ls".

Hope this helps!
-kr-
kryakyu12 is offline   Reply With Quote
Old 07-04-2014, 03:12 AM   #20
robgraves
Bat Boy
 
robgraves's Avatar
 
Join Date: Jul 2014
Posts: 5
Quote:
Originally Posted by jasonditz View Post
Update: Think I have it figured out.

I closed Steam entirely, then ran ./ootp15.sh and it popped up an "installing game data" screen. Now the game runs fine within Steam.
This what I had to do to effectively get the game to install, but mine still WON'T run from steam, I have to make sure steam is closed (or it fails) and run ootp15.sh to start the game (along with steam) everytime. Any ideas?

EDIT: Btw I'm currently using ubuntu 14.04 64 bit

EDIT2:

Okay some insight here maybe, my error messages from running it from terminal:

Code:
robgraves@ubuntu-desktop [02:15:20] [~/.steam/steam/SteamApps/common/OOTP Baseball 15] 
-> % ./ootp15.sh    
szCmd: /bin/sh -c '"/home/robgraves/.local/share/Steam/steam.sh" "steam://run/272670"' &

Error, unable to continue...

Starting Steam client...

robgraves@ubuntu-desktop [02:15:28] [~/.steam/steam/SteamApps/common/OOTP Baseball 15] 
-> % Running Steam on ubuntu 14.04 64-bit
STEAM_RUNTIME is enabled automatically
[2014-07-04 02:15:29] Startup - updater built Jun 30 2014 13:21:24
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
[2014-07-04 02:15:29] Verifying installation...
[2014-07-04 02:15:29] Verification complete
Gtk-Message: Failed to load module "overlay-scrollbar"
Gtk-Message: Failed to load module "unity-gtk-module"
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
[0704/021530:WARNING:proxy_service.cc(958)] PAC support disabled because there is no system implementation
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
[HTTP Remote Control] HTTP server listening on port 27037.
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Generating new string page texture 2: 48x256, total string texture memory is 49.15 KB
Generating new string page texture 3: 256x256, total string texture memory is 311.30 KB
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Installing breakpad exception handler for appid(steam)/version(1404163764_client)
Adding licenses for the following package(s): 0, 34, 63, 123, 194, 219, 244, 287, 294, 295, 371, 593, 682, 739, 960, 1481, 1619, 1688, 1774, 1931, 2079, 2242, 4772, 4885, 6330, 6516, 6647, 6877, 6927, 7706, 7877, 8041, 8183, 8191, 8259, 8260, 8261, 8262, 8263, 8429, 8502, 8535, 8721, 11115, 11144, 11475, 11618, 11793, 11864, 11904, 11905, 12016, 12017, 12072, 12248, 12283, 12284, 12383, 12456, 12558, 12572, 12573, 13054, 13123, 13132, 13180, 13326, 13327, 13376, 13422, 13435, 13452, 13616, 14088, 14601, 14633, 14870, 14871, 14909, 14938, 14977, 15132, 15136, 15190, 15236, 15357, 15579, 15638, 15919, 15922, 15953, 16020, 16092, 16242, 16360, 16428, 16530, 16549, 16586, 16589, 16640, 16675, 16676, 16677, 16767, 16831, 17079, 17344, 17411, 17607, 17631, 17641, 18207, 18221, 18260, 18265, 18397, 18769, 18876, 19132, 19223, 19282, 25394, 25518, 25543, 25815, 25890, 25920, 25940, 26043, 26073, 26375, 26394, 26550, 26836, 26928, 27035, 27069, 27170, 27173, 27186, 27316, 27322, 27374, 27437, 27488, 27494, 27535, 27693, 27968, 28021, 28077, 28227, 28233, 28315, 28448, 28515, 28641, 28832, 28952, 29136, 29299, 29345, 29350, 29476, 29518, 29547, 29668, 29677, 29760, 30126, 30132, 30182, 30185, 30242, 30286, 30307, 30310, 30477, 30528, 30572, 30867, 30960, 31017, 31437, 31526, 31540, 31553, 31562, 31765, 32567, 32848, 32861, 32889, 32912, 33034, 33036, 33046, 33107, 33130, 33140, 33201, 33298, 33374, 33476, 33635, 34096, 34260, 34343, 34822, 34943, 34972, 35023, 35094, 35123, 35137, 35221, 35845, 36120, 36144, 36556, 36698, 37051, 37091, 37421, 37429, 37655, 38087, 38145, 38198, 38427, 38855, 39747, 40254, 41071, 41154, 41306, 41444, 42327, 43386, 43871, 46109
roaming config store loaded successfully - 20240 bytes.
migrating temporary roaming config store
Failed to init SteamVR because it isn't installed
ExecCommandLine: "/home/robgraves/.local/share/Steam/ubuntu12_32/steam steam://run/272670"
ExecSteamURL: "steam://run/272670"
System startup time: 8.66 seconds
Running Steam on ubuntu 14.04 64-bit
STEAM_RUNTIME has been set by the user to: /home/robgraves/.local/share/Steam/ubuntu12_32/steam-runtime
ExecCommandLine: "/home/robgraves/.steam/root/ubuntu12_32/steam steam://open/driverhelperready"
ExecSteamURL: "steam://open/driverhelperready"
Generating new string page texture 71: 128x256, total string texture memory is 442.37 KB
Generating new string page texture 72: 64x256, total string texture memory is 507.90 KB
Attempting to use a Windows only path root on non-Windows platform for game 221810
Attempting to use a Windows only path root on non-Windows platform for game 221810
Attempting to use a Windows only path root on non-Windows platform for game 221810
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
Attempting to use a Windows only path root on non-Windows platform for game 239030
CAPIJobRequestUserStats - Server response failed 2
Game update: AppID 272670 "Out of the Park Baseball 15", ProcID 18896, IP 0.0.0.0:0
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
/home/robgraves/.local/share/Steam/SteamApps/common/OOTP Baseball 15/ootp15.sh: line 12: cd: /home/robgraves/.local/share/Steam/SteamApps/common/OOTP
/home/robgraves/.local/share/Steam/SteamApps/common/OOTP Baseball 15: No such file or directory
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object 'ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Installing breakpad exception handler for appid(gameoverlayui)/version(20140630132217_client)
Installing breakpad exception handler for appid(gameoverlayui)/version(1.0_client)
Installing breakpad exception handler for appid(gameoverlayui)/version(1.0_client)
Gtk-Message: Failed to load module "overlay-scrollbar"
Gtk-Message: Failed to load module "unity-gtk-module"
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
[0704/021542:WARNING:proxy_service.cc(958)] PAC support disabled because there is no system implementation
Installing breakpad exception handler for appid(gameoverlayui)/version(1.0_client)
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/robgraves/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Game removed: AppID 272670 "Out of the Park Baseball 15", ProcID 18901 

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:18798): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

robgraves@ubuntu-desktop [02:16:28] [~/.steam/steam/SteamApps/common/OOTP Baseball 15] 
-> %

Last edited by robgraves; 07-07-2014 at 07:05 PM.
robgraves is offline   Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:59 PM.

 

Major League and Minor League Baseball trademarks and copyrights are used with permission of Major League Baseball. Visit MLB.com and MiLB.com.

Officially Licensed Product – MLB Players, Inc.

Out of the Park Baseball is a registered trademark of Out of the Park Developments GmbH & Co. KG

Google Play is a trademark of Google Inc.

Apple, iPhone, iPod touch and iPad are trademarks of Apple Inc., registered in the U.S. and other countries.

COPYRIGHT © 2023 OUT OF THE PARK DEVELOPMENTS. ALL RIGHTS RESERVED.

 

Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Copyright © 2024 Out of the Park Developments