Jump to content

ezroller

Members
  • Posts

    877
  • Joined

  • Last visited

Posts posted by ezroller

  1. I get this:

     

    [pwolfe1@Source pwolfe1]$ which mozilla
    
    which: no mozilla in (/usr//bin:/bin:/usr/bin::/usr/local/bin:/usr/X11R6/bin:/usr/games:/home/pwolfe1/bin)
    
    [pwolfe1@Source pwolfe1]$

     

    but that is because i have mozilla installed to /opt

  2. hope we can help. can you post the contents of your /etc/fstab file. and also /etc/mtab ? that would help tremendously.

     

    and dont feel bad, all i have is an RW drive. no floppy, no reader...just RW.

  3. those user prefs and bookmarks and such would have been in

    /home/yournamehere/.mozilla

    Its a hidden folder. in there, you'll see the directory for it if you browse around.

    this may have been overwritten on the first run of moz 1.4. those 1.3 items may have been overwritten.

    for future reference, if you have a source tarball and a /opt directory, you can install it where YOU want it to go, and it will save you tons of headache.

     

    and when you put a ./ in front of a command, all it means is to look for program in your current directory.

     

    Don't worry, we all were newbies to linux/unix once.

    Flamed? Never! You posted coz you wanted help and that's what you'll get!! Post if you have any problems you can't overcome.

     

    damn straight. this is the MUO...we'll only flame ya if you're in the offtopic room!! :evilmod:

  4.  

    This makes me feel really good. MDK has been my favorite OS since I got it installed and working. (OK...it took 2 months, but it was memory issues, not MDK.) I think I have tried every OS out there. All the hobby OS's too. MDK is the best. hands down. the others are fun to play with, but nothing exceeds my expections every release cycle like mandrake does. I'm glad there's gonna be a 9.2, and you know what? I'll buy that copy too!

  5. This is the function that contains that. Its at the end, but part of something else. when I replace this, I get errors:

     

    Code:
    
    # If you are not using ddd, gdb and know of a way to convey the arguments
    
    # over to the prog then add that here- Gagan Saksena 03/15/00
    
           case `basename $debugger` in
    
               gdb) echo "$debugger $prog -x /tmp/mozargs$$"
    
                   $debugger "$prog" -x /tmp/mozargs$$
    
         exitcode=$?
    
                  ;;
    
               ddd) echo "$debugger --debugger "gdb -x /tmp/mozargs$$" $prog"
    
                   $debugger --debugger "gdb -x /tmp/mozargs$$" "$prog"
    
         exitcode=$?
    
                  ;;
    
               *) echo "$debugger $prog ${1+"$@"}"
    
                   $debugger "$prog" ${1+"$@"}
    
         exitcode=$?
    
                  ;;
    
           esac
    
           /bin/rm /tmp/mozargs$$
    
       else
    
           echo "Could not find a debugger on your system."
    
       fi
    
    }

×
×
  • Create New...