Jump to content

shoegoo

Members
  • Posts

    69
  • Joined

  • Last visited

Posts posted by shoegoo

  1. I am afraid it is impossible to boot from daemon tools. Windows has to be booted for daemon tools to work, while MandrakeMove (and most other Linux distribution for that matter) must be used without having Windows booted. There are a few distributions which run on top of Windows, however I don't believe they work on NTFS partitions. My recommendation is to have a friend burn the iso for you, buy a burner for yourself (you can get a very highly rated Lite-On drive from newegg.com for about $35) or buy the cd from a site like cheapbytes.com.

  2. on the club site is says that we'll (clubmembers) have it by Oct. 15th. and the rest of the "community" a few weeks after that.

     

    Aren't we all part of the community here, and dont we all make contributions of at the very least support? Oh well even if I don't get it til the end of October, its ok cause its probably for the better for Mandrake that they do it this way, at least they're not going libranet style... ;)

  3. I recently installed 9.1 on my athlon 1.4. Everything seemed fine with the install; however, when it finished booting I came to find that there was no network connectivity. I have an integrated VIA 6103 NIC as well as a 3Com 590 NIC installed. Both interfaces are brought up but they can only ping localhost. I cannot even ping my router. I tried the rhinefet module from www.viaarena.com to no avail. Any help would be greatly appreciated. Thanks in advance!

  4. Ok I am having a terrible time getting savage installed on my rh9 box. Here is the install script

    [root@localhost cdrom]# cat instal~3.lin
    
    #! /bin/sh
    
    #
    
    # Product setup script - Loki Entertainment Software
    
    
    
    # Go to the proper setup directory (if not already there)
    
    cd `dirname $0`
    
    
    
    # Return the appropriate architecture string
    
    DetectARCH()
    
    {
    
           status=1
    
           case `uname -m` in
    
                   i?86)  echo "x86"
    
                           status=0;;
    
                   *)     echo "`uname -m`"
    
                           status=0;;
    
           esac
    
           return $status
    
    }
    
    
    
    # Return the appropriate version string
    
    DetectLIBC()
    
    {
    
         status=1
    
             if [ `uname -s` != Linux ]; then
    
                     echo "glibc-2.1"
    
                     return $status
    
             fi
    
         if [ -f `echo /lib/libc.so.6* | tail -1` ]; then
    
                 if fgrep GLIBC_2.1 /lib/libc.so.6* 2>&1 >/dev/null; then
    
                         echo "glibc-2.1"
    
                         status=0
    
                 else
    
                         echo "glibc-2.0"
    
                         status=0
    
                 fi
    
         elif [ -f /lib/libc.so.5 ]; then
    
                 echo "libc5"
    
                 status=0
    
         else
    
                 echo "unknown"
    
         fi
    
         return $status
    
    }
    
    
    
    # Detect the Linux environment
    
    arch=`DetectARCH`
    
    libc=`DetectLIBC`
    
    os=`uname -s`
    
    
    
    # Find the installation program
    
    try_run()
    
    {
    
       setup=$1
    
       shift
    
       fatal=$1
    
       if [ "$1" != "" ]; then
    
           shift
    
       fi
    
    
    
       # First find the binary we want to run
    
       failed=0
    
       setup_bin="setup.data/bin/$os/$arch/$libc/$setup"
    
       if [ ! -f "$setup_bin" ]; then
    
           setup_bin="setup.data/bin/$os/$arch/$setup"
    
           if [ ! -f "$setup_bin" ]; then
    
               failed=1
    
           fi
    
       fi
    
       if [ "$failed" -eq 1 ]; then
    
           if [ "$fatal" != "" ]; then
    
               cat <<__EOF__
    
    This installation doesn't support $libc on $os / $arch
    
    
    
    Please contact Loki Technical Support at support@lokigames.com
    
    __EOF__
    
               exit 1
    
           fi
    
           return $failed
    
       fi
    
    
    
       # Try to run the binary
    
       # The executable is here but we can't execute it from CD
    
       setup="$HOME/.setup$$"
    
       cp "$setup_bin" "$setup"
    
       chmod 700 "$setup"
    
       if [ "$fatal" != "" ]; then
    
           "$setup" $*
    
           failed=$?
    
       else
    
           "$setup" $* 2>/dev/null
    
           failed=$?
    
       fi
    
       rm -f "$setup"
    
       return $failed
    
    }
    
    
    
    
    
    # Try to run the setup program
    
    status=0
    
    rm -f "$setup"
    
    try_run setup.gtk $* || try_run setup $* -fatal || {
    
       echo "The setup program seems to have failed on $arch/$libc"
    
       echo
    
       echo "Please contact Loki Technical Support at support@lokigames.com"
    
       status=1
    
    }
    
    exit $status

    that returnes the error

    [root@localhost cdrom]# ./instal~3.lin

    This installation doesn't support glibc-2.1 on Linux / x86

     

    Please contact Loki Technical Support at support@lokigames.com

     

    Glibc and glibc-devel are both much more current than that script detects

    [root@localhost cdrom]# rpm -q glibc
    
    glibc-2.3.2-27.9
    
    [root@localhost cdrom]# rpm -q glibc-devel
    
    glibc-devel-2.3.2-27.9

     

    Thanks in advance...

  5. I use Linux because the only limits to what I can do with it are the limits I set myself. If I want something changed I can change it, if I dont know how to change it, I can learn. With the alternatives, you can't change everything you want, not even if you know exactly what you want and how to do it. I also enjoy the open source community.

  6. Well I got it installed but everytime I try to run it it says python 2.2 may produce unexpected errors, then it crashes. There doesnt seem to be a complete set of pyhton 2.3 rpms yet, so i installed it from source. I tried running the prog again and I got the same error message so I tried to urpme python2.2, it told me there wasnt a package called python2.2 but one called libpython2.2, so i tried to urpme it, but it didnt work, it said it would break my system. Then I checked my path and symlinked python 2.3 in /usr/bin and that still didnt work... I am stuck again.

  7. The t is a typo,

    [root@localhost gDesklets-0.12.1]# urpmi gnome-python-devel
    
    no package named gnome-python-devel

    I also tried this as you instructed

    [root@localhost gDesklets-0.12.1]# updatedb
    
    [root@localhost gDesklets-0.12.1]# locate pygtk*.pc
    
    [root@localhost gDesklets-0.12.1]# locate pygtk-2.0.pc
    
    [root@localhost gDesklets-0.12.1]#

     

    BTW, Tyme, I think you and I must be the only ppl on the board interested in this software...

  8. [root@localhost gDesklets-0.12.1]# rpm -q pygtk

    pygtk-0.6.9-6mdk

    [root@localhost gDesklets-0.12.1]# rpm -q pygtk-devel

    pygtk-devel-0.6.9-6mdk

    [root@localhost gDesklets-0.12.1]# rpm -q gnome-python

    gnome-python-1.99.15-1mdk

     

    I used

    find / pytgtk*.pc

    and then

    find / pygtk-2.0.pc

    as root and neither found anything.

×
×
  • Create New...