Make: /usr/bin/ar: Command not found

Dear Team,
Following error are encountered while installing 11gR2 on RHEL 5.5.
make file log:
/usr/bin/make -f ins_rdbms.mk rat_on part_on dm_on olap_on sdo_on ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1//bin/sh: /usr/bin/ar: No such file or directory
/usr/bin/ar cr /u01/app/oracle/product/11.2.0/db_1/rdbms/lib/libknlopt.a /u01/app/oracle/product/11.2.0/db_1/rdbms/lib/kecwr.o
make: /usr/bin/ar: Command not found
make: *** [rat_on] Error 127
- All rpms requirements are met. I have re-install GCC as well.
Thanks in Adv.
Yuvraj

# yum provides /usr/bin/ar
Loaded plugins: security
binutils-2.17.50.0.6-14.el5.x86_64 : A GNU collection of binary utilities.
Repo        : el5_u5_base
Matched from:
Filename    : /usr/bin/ar
# ll /usr/bin/ar
-rwxr-xr-x 1 root root 52632 Feb 11  2010 /usr/bin/arCould your file system or system installation be damaged?
Perhaps you can try the following:
# touch /forcefsck
reboot

Similar Messages

  • Make: /usr/bin/install: Command not found

    I'm working on a PKGBUILD, but I'm running into this:
    make: /usr/bin/install: Command not found
    make: *** [install] Error 127
    ==> ERROR: Build Failed.
    Aborting...
    What would cause this?  Old code?  Missing package?

    It was actually really old code, after a bit of successful this-should-probably-work script editing!  I created a package in the AUR called dasm, which is an assembler for the Atari 2600 among many other systems.
    http://aur.archlinux.org/packages.php?ID=37200

  • Sub:   /usr/bin/ksh: sqlplus:  not found.

    Hi,
    I installed Oracle 9R2 client on one server and i'm not able to execute sqlplus command it's throwing following error's
    :oracle:/home/oracle#sqlplus
    /usr/bin/ksh: sqlplus: not found.
    :oracle:/u01/app/oracle/product/9.2.0#sqlplus
    /usr/bin/ksh: sqlplus: 0403-006 Execute permission denied.
    then i gave 777 permission to /u01/app/oracle/product/9.2.0
    if i execute /u01/app/oracle/product/9.2.0/bin#sqlplus
    i can able to connect
    this is the Env variable i set in the .profile(AIX 5.2) PATH=/usr/bin:/etc:/usr/sbin:$ORACLE_HOME/bin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
    Can anyone help me on this
    Thanks!
    Krishna R

    then i gave 777 permission to /u01/app/oracle/product/9.2.0well, I would not do that...

  • [SOLVED] Make Bash Completion Error (Command Not Found)

    When attempting to tab complete the `make` command, I am met with the following when I hit tab:
    $ make s[tab]bash: 23:set: command not found
    Strangely, if I continue hitting tab, it seems to work eventually, but with the same error popping up:
    $ make s[tab]bash: 23:set: command not found
    ched.[tab]bash: 23:set: command not found
    [tab]bash: 23:set: command not found
    sched.1.gz sched.tar.gz
    $ make sched.
    I've never seen anything like this.  I've tried reinstalling bash completion and make to no success.  The Makefile itself is fine and functional.  Other programs' bash completions seem to work just fine.  Help!
    Last edited by goakley (2014-03-23 13:56:50)

    It seems the problem no longer occurs.  The only change that seems to have happened is a bash-completion upgrade that happened yesterday.  I'm a bit disappointed to have not found the actual issue.

  • SOLVED /usr/bin/makepkg: line 552: build: command not found

    I'm trying to build a custom kernel, but am receiving this error:
    /usr/bin/makepkg: line 552: build: command not found
    I've searched all over for a fix, but haven't had any luck, it doesn't seem to be a common error, or it's so incredibly easy to fix that noone has bothered 
    Thanks for any help.
    /crobot

    Thanks for your response, it has failed on two builds, i'll post both.
    Here's the first:
    # $Id: PKGBUILD,v 1.26 2004/10/06 18:21:54 judd Exp $
    # Maintainer: judd <[email protected]>
    pkgname=kernel26
    pkgver=2.6.8.1
    pkgrel=3
    pkgdesc="The Linux Kernel and modules (IDE support)"
    url="http://www.kernel.org"
    backup=('boot/kconfig26')
    depends=('module-init-tools')
    install=kernel26.install
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
    config cdburning.patch logo_linux_clut224.ppm
    bio_uncopy_user-mem-leak.patch bio_uncopy_user-mem-leak-fix.patch
    http://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/patches/release/26-stable-release/acpi-20040715-2.6.8.diff.bz2)
    md5sums=('9517ca999e822b898fbdc7e72796b1aa' '20ad5bea85099dfcced9a6b91064b04e'
    '66b87662e6dd54b6324f874739fa1b99' '5a62bcc7e96601052c7405459b483826'
    'd2329bc663089cd99b8dbfd25b6a7ebc' '15a9165ae02c4a3a3875fb7924a68cbf'
    'e00d08709581f215b15e321d162f782c')
    build() {
    cd $startdir/src/linux-$pkgver
    patch -Np1 -i ../bio_uncopy_user-mem-leak.patch || return 1
    patch -Np1 -i ../bio_uncopy_user-mem-leak-fix.patch || return 1
    patch -Np1 -i ../cdburning.patch || return 1
    #patch -Np1 -i ../acpi-20040715-2.6.8.diff || return 1
    # Arch logo!
    cp ../logo_linux_clut224.ppm drivers/video/logo/
    # get rid of the 'i' in i686
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    yes "" | make config
    make clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    cp System.map $startdir/pkg/boot/System.map26
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz26
    install -D -m644 Makefile $startdir/pkg/usr/src/linux-$pkgver/Makefile
    install -D -m644 .config $startdir/pkg/usr/src/linux-$pkgver/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig26
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/include
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-$pkgver/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp -a scripts $startdir/pkg/usr/src/linux-$pkgver/
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/.tmp_versions
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-$pkgver/arch/i386/
    cp arch/i386/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-$pkgver/$i
    done
    cd $startdir/pkg/usr/src/linux-$pkgver/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-$pkgver
    cd $startdir/pkg/lib/modules/$pkgver &&
    (rm -f source build; ln -sf /usr/src/linux-$pkgver build)
    Here's the second:
    ###### Give the kernel a unique name (for multiple builds - can be empty)
    _kerrev=crobot
    ###### Choose generic name, version, and release. updated later for $_kerrev
    pkgname=kernel26
    pkgver=2.6.8.1
    pkgrel=1
    pkgdesc="Custom Linux Kernel and modules"
    url="http://www.kernel.org"
    depends=('module-init-tools')
    ###### Add a default config file and any patches to be applied to source array
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2)
    ###### Add md5 checksums here:
    #md5sum=()
    getvar() {
    old=$(cat Makefile | grep "^$1")
    echo $(echo ${old/"$1 ="/} | sed -e "s/[ ]*(.*)[ ]*/1/g")
    return 0
    build() {
    cd $startdir/src/linux-$pkgver
    ###### apply patches here
    # patch -p1 < ../patch1 #model
    #get rid of i in i686 in default config
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    ###### Choose one of the following configuration types
    ###### Use first option for config in source array
    #yes "" | make config
    #make oldconfig || return 1
    make menuconfig
    #make xconfig
    #make gconfig
    ##### No user changes below here
    # save the configuration with today's date
    cp ./.config ../../NEWCONFIG-$(date +%b%d)
    # set EXTRAVERSION to create unique /lib/modules/ subdirectories
    _ker_extraversion=$(getvar "EXTRAVERSION")
    # update EXTRAVERSION in the Makefile by adding our _kerrev
    _oldline=$(cat Makefile | grep "^EXTRAVERSION")
    if [ $_kerrev != "" ]; then
    _ker_extraversion="$_ker_extraversion-$_kerrev"
    cat Makefile | sed "s|$_oldline|EXTRAVERSION = $_ker_extraversion|" > tmpMake
    mv tmpMake Makefile
    fi
    _kerrev=$_ker_extraversion
    kerver=$(getvar "VERSION").$(getvar "PATCHLEVEL").$(getvar "SUBLEVEL")
    # update the package information from the kernel Makefile
    # (just in case the Makefile changed during a patch)
    pkgver=$kerver$(echo $_kerrev | sed -e 's/-/./g')
    pkgdesc="Custom Linux Kernel and modules version: $kerver revision: $_kerrev /
    package ver: $pkgver build: $pkgrel"
    # changing the package name
    # removing patches versions from the revision string
    _t=$(echo $_kerrev | sed -e "s/^..[0-9]*//g")
    # _t=$(echo $_t | sed -e "s/^-rc[0-9]?*//g")
    # _suf contains the suffix identifying the kernel (it has the versions removed from
    it)
    _suf=$(echo $_t | sed -e "s/[0-9]*-/-/g")
    pkgname=kernel26$_suf
    echo "Package name: $pkgname"
    echo "Package ver: $pkgver"
    echo "Package desc: $pkgdesc"
    sleep 5
    make clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    # create unique names in /boot/
    cp System.map $startdir/pkg/boot/System.map26$_suf
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz26$_suf
    install -D -m644 Makefile $startdir/pkg/usr/src/linux-$kerver/Makefile
    install -D -m644 .config $startdir/pkg/usr/src/linux-$kerver/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig26$_suf
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/include
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-$kerver/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp -a scripts $startdir/pkg/usr/src/linux-$kerver/
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/.tmp_versions
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-$kerver/arch/i386/
    cp arch/i386/kernel/asm-offsets.s
    $startdir/pkg/usr/src/linux-$kerver/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-$kerver/$i
    done
    cd $startdir/pkg/usr/src/linux-$kerver/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-$kerver
    # create a unique subdirectory under /usr/src/
    cd $startdir/pkg/usr/src
    mv linux-$kerver linux-$kerver$_kerrev
    cd $startdir/pkg/lib/modules/$kerver$_kerrev &&
    (rm -f build; ln -sf /usr/src/linux-$kerver$_kerrev build)
    Thanks,
    /crobot

  • /bin/sh: -q: command not found

    Hi,
    I'm trying to install modauthzldap on Leopard Server, and I get this when I run make install:
    Making install in module
    if /bin/sh ../libtool --mode=compile ` -q CC` -DHAVECONFIGH -I. -I. -I.. -I` -q INCLUDEDIR` -I/usr/local/openssl/include -DAUTHZLDAP_HAVESSL ` -q CFLAGS` ` -q CFLAGS_SHLIB` -I/usr/local/openldap-2.1.21/include -MT modauthz_ldapla-auth.lo -MD -MP -MF ".deps/modauthz_ldapla-auth.Tpo" \
    -c -o modauthz_ldapla-auth.lo `test -f 'auth.c' || echo './'`auth.c; \
    then mv -f ".deps/modauthz_ldapla-auth.Tpo" ".deps/modauthz_ldapla-auth.Plo"; \
    else rm -f ".deps/modauthz_ldapla-auth.Tpo"; exit 1; \
    fi
    /bin/sh: -q: command not found
    /bin/sh: -q: command not found
    /bin/sh: -q: command not found
    /bin/sh: -q: command not found
    libtool: unrecognized option `-DHAVECONFIGH'
    Try `libtool --help' for more information.
    make[1]: * http://modauthz_ldapla-auth.lo Error 1
    make: * install-recursive Error 1
    Anyone know what that means? I've already installed openldap fine. OpenLDAP and modauthzldap are available here:
    http://www.openldap.org/software/download/
    http://authzldap.othello.ch/download.html

    It looks like the configure script was botched. It wants to run the APXS apache program, but the APXS variable isn't defined. APXS, however, doesn't seem to be required by the configure script.
    Sorry. I can tell you why it dies, but I can't do much about fixing it. If you really want it, you should install the apache APXS stuff. I think it is the apache developer kit.

  • /bin/sh: g++32: command not found

    Chanage:
    Migration EBS 11.5.10.2 from RHEL4.x x86-32bit to RHEL 5.3 x86-64bit (appsTier)
    $adrelink_mod.sh force=y "msc MSCCPP"
    /test/testclone/testap/testora/8.0.6/lib/naldflgs` -lnetv2 -lnttcp -lnetwork
    -lncr -lclient -lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4 -lnlsrtl3
    -lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork -lncr -lclient -lvsn -lcommon
    -lgeneric -lepc -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient
    -lvsn -lcommon -lgeneric -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3
    `cat /test/testclone/testap/testora/8.0.6/lib/sysliblist` -ldl -lpthread -lm
    /test/testclone/testap/testora/8.0.6/rdbms/lib/defopt.o
    /test/testclone/testap/testora/8.0.6/rdbms/lib/ssbbded.o
    /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
    /bin/sh: g++32: command not found
    make: *** [test/testclone/testap/testappl/msc/11.5.0/bin/MSCCPP] Error 127
    Done with link of msc executable 'MSCCPP' on Mon Aug 9 08:45:59 CST 2010
    Relink of module "MSCCPP" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory /test/testclone/testap/testappl/msc/11.5.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Done with link of product 'msc' on Mon Aug 9 08:45:59 CST 2010
    Relinking of modules ENCACN, MSCCPP, MSCMON, MSCNEW, MSCNSP,
    MSCPCL, MSCPDW, MSCPRG, MSCSDW, MSCSLD, MSCXGCAL, MSONEW, and
    WPCFSQ produces multiple undefine symbol errors.
    Edited by: user8019167 on 2010-8-9 下午9:57
    Edited by: user8019167 on 2010-8-9 下午9:57

    Hi,
    Chanage:
    Migration EBS 11.5.10.2 from RHEL4.x x86-32bit to RHEL 5.3 x86-64bit (appsTier)Oracle Apps 11i is not certified on x86-64 for the application tier, only the database tier node is certified on a 64-bit OS (Split Configuration).
    Note: 343917.1 - Frequently Asked Questions: Oracle E-Business Suite Support on x86-64, 3. Is Oracle E-Business Suite supported on x86-64?
    Note: 357098.1 - Installation of E-Business Suite on Linux x86-64
    Thanks,
    Hussein

  • Proc command not found in $oraclehome/bin

    In my AIX5L operation system i installed the oracle9.2 completely,then i find that the 'proc' command not found at $oraclehome/bin.
    Can you help me?

    Hi,
    Presuming you get the error message containing $ORACLE_HOME/bin and not $oraclehome/bin
    Make sure that the $ORACLE_HOME is set
    and that $ORACLE_HOME/bin is in the PATH
    You can use the script oraenv under ..../oracle/home/product/9.X.X/bin
    to set your env.
    . oraenv
    Good luck
    Shivjit Gill

  • 8.0.5 install fails ..." make: command not found ..."

    Hi there,
    I hope anyone can solve my installation problem.
    When running the installer to install Oracle 8.0.5 RDBMS the
    installer reports on "O/S error"
    Error during action 'creating rdms/lib/psoliblist'.
    Command: make -f ins_rdbms.mkb
    /oracle/oracle805/rdbms/lib/psoliblist
    sh: make: command not found
    I haven't been able to find an "make" command/file on my redhat
    6.0
    Is there on anyone else's redhat 6.0?
    Thanx 4 any replies.
    null

    I had this same thought and had made sure the make-7.77-6 was
    installed. I restarted linux (just incase) and attempted to
    install oracle once again. I am installing Oracle 8051 EE on RH
    60. Linux is running on a PII 300 with 128M. The error i
    recieve is listed below.
    I continue to recieve the same error as OTN usere "truncate1".
    Though i get a bit more text with the error this time around.
    <><><><><><><><><><><><><><><><><><><><><>
    error: make -f
    /oracle/oracle8051/network/lib/ins_network.mkntcontab.o
    (if [ "compile" = "compile" ] ;then \
    /oracle/oracle8051/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /oracle/oracle8051/lib/ntcontab.o ;\
    mv ntcontab.o /oracle/oracle/lib ;fi)
    /bin/sh: cc: command not found
    mv: ntcontab.o No such file or directory
    make: ***[ntacontab.o] Error 1
    <><>><><><><><><><><><><><><><><><><><>
    Any thoughts?
    Thanks,
    dennis anthony.
    [email protected]
    Jan Gr0nlien (guest) wrote:
    : truncate1 (guest) wrote:
    : Hi,
    : my RH 6.0 has make installed in RPM "make-3.77-6".
    : That should do it for you to.
    : Regards Jan
    : : Hi there,
    : : I hope anyone can solve my installation problem.
    : : When running the installer to install Oracle 8.0.5 RDBMS the
    : : installer reports on "O/S error"
    : : Error during action 'creating rdms/lib/psoliblist'.
    : : Command: make -f ins_rdbms.mkb
    : : /oracle/oracle805/rdbms/lib/psoliblist
    : : sh: make: command not found
    : : I haven't been able to find an "make" command/file on my
    redhat
    : : 6.0
    : : Is there on anyone else's redhat 6.0?
    : : Thanx 4 any replies.
    null

  • /usr/local/bin/pdf2ps: gs: not found

    GS 8.54
    Solaris 10
    Oracle 11.5.10.2
    I'm having problem regarding the pdf2ps which it seem cannot find the pdf2ps. When i try to print the pdf file in apps using pasta.
    The printer confirm support pasta and post script.
    The report submited is complete with warning. This is the error inside the log file.
    /usr/local/bin/pdf2ps: gs: not found
    Pasta: Error: Preprocess failed. Command=/usr/local/bin/pdf2ps /v99/app/applmgr/abghfuat/applcsf/out/ABGHFUAT_e2sscorhrmdba02/ABG_APXPBFOR_XML_BMO_2495102_1.PDF /v30/app/applmgr/abghfuat/comn/temp/pasta18270_0.tmp
    Pasta: Error: Preprocess or Print command failed!!!
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. An error occurred while AOL tried to spawn the print process
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. An error occurred while AOL tried to spawn the print process.
    .pdf file being generated, but failing when calling Pasta.

    Hi,
    Since you indicate a version number for ghostscript in your post (8.54), I'm guessing the issue is that gs is not in the path for the applmgr user. On my system (Linux, not Solaris, so there may be differences), gs and pdf2ps are in different directories.
    Try running the following command as the applmgr user:
    which gsIf you don't get the path to gs as output from that command, you will need to add the path to gs to the path environment variable of the applmgr user.
    Regards,
    John P.

  • [SOLVED]/usr/lib/arch-tempfiles line 106: install:command not found

    Hi everyone!
    This is my boot.log
    http://pastebin.com/1gfynhSN
    It says"/usr/lib/initscripts/arch-tmpfiles:line 106: install:command not found".This is leading to problems such as dbus and network manager not being started(even manually),no shutdown option,not able to 'open' log files without sudo  etc.
    I think a possible reason for this is that I had messed up with symlinks.I had issued the command
    sudo ln -s /bin/install /usr/bin/install
    .Then I had used
    cd /bin/
    unlink install
    Now,I find that /bin/install and /usr/bin/install does not exist.(I have deleted them!) .How can I fix this up?Any help would be appreciated.
    Last edited by adwaita45 (2012-04-05 20:41:40)

    Reinstall coreutils (or manually extract install from the package and put it in /usr/bin).
    Last edited by Raynman (2012-04-05 18:14:10)

  • /usr/openwin/bin/xmkmf: imake: not found

    I'm trying to install TightVNC on Solaris 10 (sparc) and have ran into several issues. This was a fresh Solaris install, therefore I recently installed make, gzip, and gcc from the sunfreeware site.
    # xmkmf
    mv -f Makefile Makefile.bak
    imake -DUseInstalled -I/usr/openwin/lib/X11/config
    /usr/openwin/bin/xmkmf: imake: not found
    PATH env:
    # echo $path
    .:/usr/sbin:/usr/bin:/usr/local/bin
    I installed make in the /usr/local/bin folder.
    I'm not exactly sure what imake is so I'm fairly stuck at this point.

    I think I have an environment variable issue. Here is copy of the output of #env:
    OPENWINHOME=/usr/openwin
    PATH=/usr/sbin:/usr/bin:/usr/openwin/bin:/usr/ucb/:/usr/css/bin:/usr/sfw/bin
    PS1=#
    and here is an echo:
    # echo $path
    .:/usr/sbin:/usr/bin:/usr/local/bin
    I may be adding the variable wrong because I'm getting a "make not found" error now. Do you have a good link on adding / appending onto environment variables?
    Thanks

  • -bash: make: command not found

    Help me please. I downloaded cdrecord because I need a tool called makeisofs but I am told that I need to compile it first before I can use it. The directions say to type "make" to compile it but when I type make in the terminal window, I get the following message:
    -bash: make: command not found
    I've spent hours looking all over the web for an explanation but I just can not find anything to help me. I even joined some IRC channels but no one types anything in those rooms. It is the weirdest thing.
    Can anyone tell me why I can't compile? The directions I got with the download don't explain a thing.

    I found something that might help. On the second Leopard DVD, there is something called Xcode Tools which I am told has what I need. I'll respond if I have any other questions. Thanks for reading.

  • Make: command not found?

    Hi,
    Just reinstalling Arch and trying to install my NIC drivers for my Motherboard.
    Copied the drivers into /tmp/Lan
    There is a Makefile in the directory...
    When using make or KBUILD_NOPEDANTIC=1 make i just receive the following answer:
    -bash: make: command not found
    It worked last time...have I missed installing something to be able to use the make function?

    skottish wrote:
    ftornell wrote:
    Hi,
    Just reinstalling Arch and trying to install my NIC drivers for my Motherboard.
    Copied the drivers into /tmp/Lan
    There is a Makefile in the directory...
    When using make or KBUILD_NOPEDANTIC=1 make i just receive the following answer:
    -bash: make: command not found
    It worked last time...have I missed installing something to be able to use the make function?
    Install all of the group base-devel if you're going to be building stuff.
    What package is that now so I can use pacman, think I got it localy stored in a cache...

  • Make, Make install - Command not found. How do I get these commands working

    Hi guys!
    I am trying to compile the php using the command ./configure and make, make install but every time I try to use the comand "make" it says "command not found". Do you know how can I install these bibliotec?
    Thanks in advance.
    Felipe Moreira.

    Hi Felipe, Welcome to Apple's Users Help Users Forums.
    Glad you got it solved.
    Thanks in Apple Forums is through the Stars system. See the blue box at the top of the thread as well as the Apple emails re new posts to the thread.
    With the buttons just to the left of "Reply" for the OP = Original Poster.
    1 Green Solved available. 10 pts.
    2 Gold Helpful available. 5 pts.
    Mark the buttons at the appropriate post. (Not this one. ;~) )
    Joyous Computing, JP

Maybe you are looking for

  • I want to swap black & white S10 keyboards for fun - Is accessing keyboard a bear or not?

    Yes I know the warranty is blown if I do this. I have a black and white S10. I want to try the black white combo for fun. I've taken apart many notebooks in my time and some were real trials to get into. Anyone swapped out an S10 keyboard. Is there a

  • How much is it to trade in a cracked iphone 5 for another one

    i was wondering how much is was since i cracked my screen. Also i would like to know the price of getting a 5s if its possible.

  • JAXB schemaFragment

    Hi, I'm using JWSDP 1.4 & Jakarta Axis 1.1. I'm writing an RPC-style web service that requires <wsdl:types> elements to be defined for non-primitive Java objects. I'm using JAXB to (un)marshall these objects, and it works just fine. I'd like to know

  • OUTPUT - Contact Sheets - To Include Metadata & Dimensions

    1.) I would LOVE to see the InDesign Contact sheets re-integrated. I think it was a very useful tool for design houses when creating low-resolution comps for clients. 2.) For the .pdf contact sheets that you can currently output, I would like to have

  • Is there a simple way to create a linestring sdo

    11gR2 EE all the usual bells and whistles. Dear smarter than me Spatial Peeps!, So is there a way to simply create a 2D linestring SDO from two 2D point SDO's ? I HAVE A 2D point that I use: P2 := SDO_UTIL.POINT_AT_BEARING(P1,0.5,50) ; And that gets