Jump to content

Greg2

Global Moderator
  • Posts

    2482
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Greg2

  1. I'm getting an error after I installed the game:
    C:\DAGGER>dagger

     

    TES: Daggerfall v1. - 08/30/96 14:05:49

    Copyright 1994, 96 Bethesda Softworkd.

     

    ERROR: Looks like you inserted the wrong CD. Please insert your Daggerfall CD in your cdrom and try again.

    Did you run the DAG213 to install the update patch? I've found that you also need to copy all sixteen .VID files from ~/DOS/DFCD/DAGGER/ARENA2 to ~/DOS/DAGGER/ARENA2. Then open your ~/DOS/DAGGER/Z.CFG file with a text editor and change the line:

     

    pathcd d:\dagger\arena2\

     

    to

     

    pathcd c:\dagger\arena2\

     

    now you will not have to mount DCFD as a CD every time you start the game. This will also fix the wrong CD error you're having. Then you should create a dosbox.conf file, if you haven't already done so. Open the configfile and change the line:

     

    memsize=16

     

    to

     

    memsize=32

     

    Now you can start the game with:

     

    mount c ~/DOS -freesize 1000
    c:
    cd dagger
    fall z.cfg

    Enjoy the game! :)

  2. many errors like this one:

    settings.cpp:226: error: conversion from 'const char*' to 'const wxString' is ambiguous

    /usr/include/wx-2.8/wx/string.h:692: note: candidates are: wxString::wxString(wxChar, size_t) <near match>

    /usr/include/wx-2.8/wx/string.h:682: note: wxString::wxString(int) <near match>

    You have to wrap your strings in wxT() or _() to make them compile properly in Unicode builds. So edit all your strings like this:

     

    function("some string");

     

    to

     

    function(wxT("some string"));

     

     

    More info here: wxwidgets.org/WxString#Warnings

  3. ffmpeg -i video.mov video.ogg

     

    After ffmpeg converted the video, I checked the converted video.

     

    The video format was theora but the audio format was flac.

    You can force the audio codec to vorbis with

    ffmpeg -i video.mov -acodec vorbis -aq 60 video.ogg

    the -aq option is to set the audio quality of a VBR codec, with 0 being the lowest. So you may have to adjust that option to your needs.

  4. Here's a couple of things I would try if I was having this problem.

     

    Reduce the shared amount of RAM for your graphics chip to the next lower setting in the BIOS - if that's possible. That may reduce the GPU heat... if that's causing the problem.

     

    Compile and try using this laptop fan regulator: Dell laptop fan regulator

     

    to control the fan settings and allow you to start the fan at a lower temperature. Your 510m is listed as working with this dellfand daemon.

  5. You can't mount sg0 or sg1, and your removable disk is probably seen by your '2009 kernel' as a scsi generic sg2 type 0. You can't mount sg2 either. I would suggest that you make a /media/disk directory, then (as root) try mounting /dev/sdb1 to /media/disk. Unless your removable disk has no partition, then it would be /dev/sdb to /media/disk.

  6. Elisa says it needs an MPEG audio decoder.

     

    I have installed all the Elisarelated packages

    You should also have these installed:

     

    gstreamer0.10-decoders-1-3mdv2009.1

    gstreamer0.10-decoders-audio-1-3mdv2009.1

    gstreamer0.10-plugins-good-0.10.14-1mdv2009.1

    gstreamer0.10-plugins-bad-0.10.11-3plf2009.1

    gstreamer0.10-plugins-ugly-0.10.11-1plf2009.1

    gstreamer0.10-ffmpeg-0.10.7-1mdv2009.1

    gstreamer0.10-mpeg-0.10.11-1plf2009.1

    gstreamer0.10-lame-0.10.11-1plf2009.1

     

    and probably several others I haven't listed.

  7. So it looks like the exaile rpm contains lots of .py files (and .pyc and .pyo) - and one of its many dependencies is python. Would you say that's normal?
    Most of the time that is true with complex apps.
    That means, even if the python program is small, people will need to get python this and python that in order to use it?
    Yes, so these depends need to be added as 'Requires:' in an rpm, or alternatively (but not officially Mandriva approved) be placed in the readme.txt, or built into the script that would install them.

     

    Some python apps use a python or shell script to install the program from an extracted archive instead of an rpm.

    python install.py

    or

    sh install.sh

    Tunapie is a good example of this method to take a look at: tunapie.sourceforge.net

     

    This tunapie program hasn't been touched since Sept. 2007, but it still works with Python 2.6.1 on Mandriva 2009.1.

×
×
  • Create New...