Jump to content

scoonma

Members
  • Posts

    458
  • Joined

  • Last visited

Posts posted by scoonma

  1. 1. No, I did not pass those paths while compiling, but I think that configuration script guessed them correctly as there were no errors during compilation.

     

    Hm. Then at least I'd check if the config script set the path correctly from it's logfile. Qt-path may not be a problem, but I kde could be different (default values vs. user values for apps). Besides that, it's from the docs page of KMyFirewall!

     

    2. What should I do with this?

     

    [root@localhost zibi1981]# urpmq -vil kmyfirewall
    getting lock on urpmi
    [...]

     

    Ah! You'll only see the full list of files (due to the -l option) if you installed not the synthesis, but the full hdlist.cz from repositories.

     

    HTH,

     

    scoonma

  2. "The service script in /etc/init.d/btnx is made from a Debian skeleton script. It apparently makes calls that are Debian (or Debian-based distros, ie Ubuntu) specific.

     

    I will have to change this to make it compatible with other distros. Mandriva has start-stop-daemon, right?"

     

    I'm not really sure what he is asking. How should I respond to him?

    As root, you can handle many services (sort of "frontends" for daemons) in Mandriva this way:

     

    "service <servicename> start | stop | restart | status"

     

    Guess this is what he meant, as you can access services also by entering their pathname, which would be /etc/init.d/<servicename>. So in short: the answer is yes (but no guarantee that it will work). Probably the author of btnx will find some Mandriva examples useful (like alsa, haldaemon, cups...) from /etc/init.d/.

  3. Hi zibi,

     

    did you pass on your kde install path when compiling?

     

    (http://magrathea.dnsalias.net/~hubinger/kmf/kmf_doc/compilation.html)

     

    Besides from that, I would check which config files the app is using and where they reside. This can be checked by "urpmq -vil kmyfirewall". Defaults seem to lie in /usr/share.

     

    So if you're finding the corresponding filenames within your user dir from a previous installation, you should be able to go ahead.

     

     

    HTH,

     

    scoonma

  4. Hi there,

     

    on a recent check chkrootkit (0.47) found on this 2008 a possible Showtee plus a Romanian pointing to /usr/include/file.h.

     

    Anyone with some experience at situations like this?

     

    Thx,

     

    scoonma

  5. i rightclick my usb drive in devices and hit properties and it says i only have 68 megs total memory (ram) to use

    i cant download anything barly with that small ammount. how do i increase it. my laptop has about 256 megs of ram total. and i have a 2 gig usb drive that im booting from.

     

    Two possible reasons as my guess:

     

    a) Your USB drive is partitioned and your only seeing a small part of it. Is it the same USB drive you're booting from? Then you should not wonder why...

     

    b) Some of your Laptops memory will probably be used for GFX display (check BIOS settings).

  6. Hi folks,

     

    after several years without practice (and being quite a newbie with Linux in particular) I'm trying to create some useful shell script. It is a very early version yet. The aim is to split a given text file into numbered blocks ready to pass on as SMS to mobiles. I've never gotten below line 27 within the script during execution (sometimes halfway working with minor changes, but writing to stdout instead of using the given variable), and the bloody thing hits me at last with the following error:

     

    "../smsformat.sh: line 27: strcat: command not found"

     

    Please see below:

     

    ! /bin/bash
    # Purpose: Format given text from file to subsequent blocks ready for SMS sending
    # Usage: smsformat -i <infile> -l <smslength> -o <outfile>
    # or smsformat --help for short help
    
    help()
    {
     echo "Usage $0 -i <infile> -l <length> -o <outfile>"
    }
    
    if [ $# -lt 1 ]; then
     help
    fi
    
    while getopts i:l:o opt
    do
      INTEXT=""
      case "$opt" in
     i) INFILE=$OPTARG
    if [ -f $INFILE ] && [ -s $INFILE ]
    then
    	cat $INFILE | while read line
    	do
    	  INLINE=$line
    	  INTEXT=eval strcat $INTEXT $INLINE
    		done
    	fi;;
     l) if [ $OPTARG -gt 0 ]
      then LEN=$OPTARG
    	fi;;
     o) OUTFILE=$OPTARG;;
     *) help;;
      esac
    done
    
    echo Tracepoint
    echo $INTEXT
    HELPTEXT1='eval tr -s '\n' $INTEXT'
    HELPTEXT2='eval tr -s '\r' $HELPTEXT1'
    HELPTEXT3='eval tr -s '\n' '[:space:]' $HELPTEXT2'
    # echo $HELPTEXT3
    exit 0

     

    Requesting your skilled comments,

     

    scoonma

  7. How should that work? When it's full, a DVD can contain 4,7 GB of data, compared to a CD with 700MB. You could only split in a meaningful way if the data contains no installable programs, just raw data. If you had a DVD full of pictures for example, you could copy them onto your harddisk, make portions of max. 700MB size and create Data-CDs out of them and write to CDs. But this "generic" method would only make sense if the data is not interrelated. For installing purpose this would not work, for any DVD and/or OS.

  8. Can you recommend a good cooker mirror (preferably offering rsync support) better than nluug.nl? I'm using it for some time since it's even better than muenster, which gave me permanent lockups during downloads (both on rsync and ftp).

     

    EDIT: The cooker mirror I was referring to was muenster, not stuttgart, but problems are the same...

  9. Hi there,

     

    today I wanted to transmit a bug report using bugzilla (see next posting). On "urpmi bugzilla" I found out that it depends on installing one out of four apache versions. This is definitely *not* what I wanted to do, installing a web server to an unstable version. If there's any other means to file bug reports, please let me know.

×
×
  • Create New...