RE: Linux Newbie with Compiling Problems...

From: Wilbert Knol (terhi.victor@logonet.com)
Date: Mon Mar 03 2003 - 09:46:08 EET

  • Next message: Bernard Pidoux F6BVP: "Re: Linux Newbie with Compiling Problems..."

    On Sat, 1 Mar 2003, wb9mjn wrote:

    >
    > Hi All,
    >
    > Does anybody know what package the command 'as86' is part of ?
    >

    On my Mdk 7.2 system, as86 shows up here:

    /usr/bin/as86
    /usr/bin/as86_encap
    /usr/share/man/man1/as86.1.bz2
    (in package: dev86-0.15.1-1mdk)

    Wilbert, ZL2BSJ

    PS: A proper distribution should resolve those dependencies for
    you. If you are installing the distibuted kernel sources, it should
    also install the assemblers needed to build the kernel

    PPS: As per Bash script below:

    #!/bin/bash
    #
    # A script that locates an RPM package containing a specified filename.
    #

    if [ "$1" == "" ]
    then
        echo
        echo "Usage: ffrpm <filename>"
        echo
        echo
        exit
    fi

    rpms=`rpm -qa` # Get a list of all RPMs

    for package in $rpms
    do
        rpm -ql $package | grep $1 && echo "(in package: $package)" && echo
    done

    <EOF>

    -
    To unsubscribe from this list: send the line "unsubscribe linux-hams" in
    the body of a message to opju.wskyqq@roskapostia.tunk.net
    More majordomo info at http://vger.kernel.org/majordomo-info.html



    This archive was generated by hypermail 2b30 : Mon Mar 03 2003 - 09:49:38 EET