Missing binary in /usr/bin/

I am trying to get MySQL running on my computer, but the mysql binary is missing from my /usr/bin/ directory. I've tried installing from the standard repositories and compiling myself from ABS, but it never appears.
Where can I get this file? Is this part of some other package? The pkgbuild file for MySQL doesn't seem to mention it.

The binary I'm looking for is apparently owned by another package. How do I find out which one?
I'd use pacman -Qo /usr/bin/mysql but it doesn't exist...
Last edited by clubsplit (2008-06-03 19:05:14)

Similar Messages

  • Create script in /usr/bin called pacclean?

    #!/bin/bash
    su -c 'pacman -Qdt'
    su -c 'pacman -Scc && pacman-optimize'
    yaourt -Syua
    this script was created to show
    1) To list all packages no longer required as dependencies (orphans) (pacman -Qdt)
    2) Clean the package cache of packages that are not currently installed (/var/cache/pacman/pkg) and removes all packages from the cache. (pacman -Scc)
    3) Improving database access speeds reduces the time taken in database-related tasks, e.g. searching packages and resolving package dependencies. (pacman-optimize)
    4) You can update your system including AUR packages (yaourt -Syua)
    I think this is a good script i think, but is there a way to streamline it by not entering my password over 3 times? this script i created in /usr/bin and called it pacclean which i made it executable.

    I have a script that has much the same concept as this one, but much longer. I'm sure I posted it in this forum before, but as it's changed a little recently, I'll repost here. It may give someone some ideas for how they'd like to wrap pacman themselves, or some coding style thoughts. I install this in /usr/local/sbin/pu and add that same path to sudoers with NOPASSWD set. Note that you don't have to run it with sudo yourself, as it will detect if you are not root and re-run itself in sudo for you if not. Note that this will produce a large amount of noise output on the first run, as the saved state data (/var/lib/pu) won't be populated yet, and so all the comparisons from last run to now will run as if everything in the world is brand new.
    #!/bin/bash
    # vim:set filetype=sh: *
    if [[ "$(/usr/bin/id -u)" != "0" ]] ; then
    exec /usr/bin/sudo $0 "$@"
    fi
    libdir=/var/lib/pu
    umask 0022
    export LANG=en_US.utf8
    export LC_COLLATE=C
    # Recreate $libdir
    /bin/install -d -o root -g root -m 755 "$libdir"
    /bin/rm -rf "$libdir"/*.out
    if /usr/bin/tty -s ; then
    # Upgrade packages
    /usr/bin/pacman -Syu
    else
    # Update repos
    /usr/bin/pacman -Sy
    # List upgradeable packages
    /usr/bin/pacman -Qqu | /bin/sed -e 's/^/upgradeable /'
    fi
    echo
    # List new packages in repos
    /usr/bin/pacman -Slq | /usr/bin/sort -u > "$libdir/avail.out"
    [[ -f "$libdir/avail.prev" ]] || /bin/touch "$libdir/avail.prev"
    /usr/bin/comm -13 "$libdir/avail.prev" "$libdir/avail.out" | /usr/bin/xargs -r /usr/bin/pacman -Si
    /bin/mv -f "$libdir/avail.out" "$libdir/avail.prev"
    echo
    # List stray dependencies
    /usr/bin/pacman -Qqdt | /bin/sed -e 's/^/stray dep /'
    # List pacsave/pacorig/pacnew files in /etc
    /usr/bin/find /etc \( -name \*.pacnew -o -name \*.pacsave -o -name \*.pacorig \) | /bin/sed -e 's/^/pacfile /'
    # List files missing from packages
    /usr/bin/pacman -Qqk | /bin/sed -e 's/^/missing file /'
    # List new explicit packages
    # This also catches removals from base and base-devel
    /usr/local/bin/pacexp | /usr/bin/sort > "$libdir/pacexp.out"
    [[ -f "$libdir/pacexp.prev" ]] || /bin/touch "$libdir/pacexp.prev"
    /usr/bin/comm -13 "$libdir/pacexp.prev" "$libdir/pacexp.out" | /bin/sed -e 's/^/pacexp /'
    /bin/mv -f "$libdir/pacexp.out" "$libdir/pacexp.prev"
    # List new base / base-devel packages not installed
    /usr/bin/comm -13 <(/usr/bin/pacman -Qgq base base-devel | /usr/bin/sort -u) <(/usr/bin/pacman -Sgq base base-devel | /usr/bin/sort -u) > "$libdir/base.out"
    [[ -f "$libdir/base.prev" ]] || /bin/touch "$libdir/base.prev"
    /usr/bin/comm -13 "$libdir/base.prev" "$libdir/base.out" | /bin/sed -e 's/^/base-add /'
    /bin/mv -f "$libdir/base.out" "$libdir/base.prev"
    # List new version-mismatched AUR packages and new foreign packages
    for pkg in $(/usr/bin/pacman -Qqm | /usr/bin/sort | /usr/bin/tee "$libdir/foreign.out") ; do
    localver=$(/usr/bin/pacman -Q $pkg | /bin/cut -d\ -f2)
    aurver=$(/usr/bin/curl -s "http://aur.archlinux.org/rpc.php?type=info&arg=$pkg" | /bin/cut -d\" -f18)
    [[ -z "$aurver" ]] && continue
    [[ "$localver" != "$aurver" ]] && echo "$pkg: $localver -> $aurver"
    done > "$libdir/aur.out"
    [[ -f "$libdir/foreign.prev" ]] || /bin/touch "$libdir/foreign.prev"
    /usr/bin/comm -13 "$libdir/foreign.prev" "$libdir/foreign.out" | /bin/sed -e 's/^/foreign /'
    /bin/mv -f "$libdir/foreign.out" "$libdir/foreign.prev"
    [[ -f "$libdir/aur.prev" ]] || /bin/touch "$libdir/aur.prev"
    /usr/bin/comm -13 "$libdir/aur.prev" "$libdir/aur.out" | /bin/sed -e 's/^/aur /'
    /bin/mv -f "$libdir/aur.out" "$libdir/aur.prev"
    # Clean out old packages if cache gets too big
    if [[ $(/bin/du -sm /var/cache/pacman/pkg/ | /bin/cut -f1) -gt 1000 ]] ; then
    /usr/bin/pacman -Sc --noconfirm > /dev/null
    echo "clean cache"
    fi
    # Whack perms on pacman cache into shape
    /usr/bin/find /var/cache/pacman/pkg -type f ! -perm 644 -exec /bin/chmod 644 {} +

  • Missing /usr/bin/reboot

    i use GNOME and arch is up to date as it can be after doing a "pacman -Syu".
    when i use GNOME's shutdown-dialog to reboot the system, GNOME and X stop as they should, but then the system gives a message, "Command failed /usr/bin/reboot" and a short description that it wasn't found.
    the system then takes a short breath of about 5-10 seconds and reboots as it should.
    well, there is no /usr/bin/reboot on my harddisk, just /sbin/reboot...why?
    had the same thing some days ago on another system. was /usr/bin/reboot removed during one of the last updates and GNOME still tries to use it instead of /sbin/reboot?
    Thanks!
    Cheers!

    I had this problem as well and couldn't work out what I had done wrong - I hadn't been fiddling with any settings, honest.  Anyway, it first occurred last Saturday when I shutdown my PC after these updates:
    [2008-02-02 07:49] synchronizing package lists
    [2008-02-02 07:49] starting full system upgrade
    [2008-02-02 07:50] upgraded bash (3.2.025-4 -> 3.2.033-2)
    [2008-02-02 07:50] warning: /etc/profile installed as /etc/profile.pacnew
    [2008-02-02 07:50] warning: directory permissions differ on var/lock/
    filesystem: 775 package: 755
    [2008-02-02 07:50] upgraded filesystem (2007.11-3 -> 2007.11-6)
    [2008-02-02 07:50] upgraded groff (1.19.2-3 -> 1.19.2-4)
    [2008-02-02 07:50] upgraded man (1.6f-1 -> 1.6f-2)
    [2008-02-02 07:50] upgraded mkinitcpio (0.5.17-1 -> 0.5.17-2)
    [2008-02-02 07:50] upgraded mpg123 (1.1.0-3 -> 1.2.0-1)
    and not only was there an error about the missing file but gdm-binary segfaulted.  Here's the entry from everything.log:
    Feb 2 09:53:50 gconfd (david-9810): Exiting
    Feb 2 09:53:50 darkstar gdm-binary[9706]: WARNING: Command failed /usr/bin/poweroff: Failed to execute child process "/usr/bin/poweroff" (No such file or directory)
    Feb 2 09:53:50 darkstar shutdown[11387]: shutting down for system halt
    Feb 2 09:53:50 darkstar init: Switching to runlevel: 0
    Feb 2 09:53:50 darkstar gdm-binary[9706]: segfault at 0000000000000031 rip 00002aaccdefa090 rsp 00007fffdfb2ce28 error 4
    Thing is, looking back through older log entries, the warning about failing to execute /usr/bin/reboot or /usr/bin /poweroff is always there on reboot/shutdown but I had never before seen it echoed to the screen.  Anyway, I wasn't sure where to report the bug but made my own fix in the meantime by adding the following to the daemon section of /etc/gdm/defaults.conf
    RebootCommand=/sbin/reboot
    HaltCommand=/sbin/poweroff
    The other consequence of those Saturday updates, which hasn't gone away yet, is that the normal shutdown messages - stopping this, stopping that etc. - don't always appear.  It's not consistent but more often than not gnome will drop to a console with a login prompt and my PC will shutdown a few seconds later  If I don't start gnome and just run /sbin/poweroff from the console then the usual messages will appear.  As far as I can tell, however, my PC is shutting down properly despite the lack of messages.
    EDIT: And /sbin is in my path.
    EDIT 1: And the segfaults continue (I thought that they'd gone away):
    Feb 6 23:27:08 gconfd (david-9811): Exiting
    Feb 6 23:27:09 darkstar shutdown[15679]: shutting down for system halt
    Feb 6 23:27:09 darkstar init: Switching to runlevel: 0
    Feb 6 23:27:09 darkstar gdm-binary[9706]: segfault at 0000000000000021 rip 00002b63ab165090 rsp 00007fff028bfe48 error 4
    Last edited by azleifel (2008-02-07 22:35:41)

  • /usr/bin/ld: CANNOT EXECUTE binary file!

    So whenever I try to compile something, I get to the step
    checking for gcc... gcc
    checking for C compiler default output file name...
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    And looking at the log, my problem is...
    /usr/bin/ld: /usr/bin/ld: cannot execute binary file
    Which... Is bad. Yes, I've tried chmodding it +x. I've also tried logging in as root and trying to run it, no luck.
    What's wrong? =/
    Would asking someone else with an iMac G5 to send me theirs, fix it?

    Running configure on all open source packages brings me to the ld cannot execute error in configure.log. In this case I was attempting to build libssh2 (SSH functions for PHP).
    Thanks for the link Nils, I'll try that.

  • /usr/bin/install is missing!

    Well, I don't know how this one happened.  I was trying to "make install" a program I had just finished compiling, and then I get a message saying that /usr/bin/install is missing.  I checked /usr/bin for "install", and it isn't there, even though it was before.  How do I fix this problem?
    Last edited by Falcata (2008-01-25 22:02:46)

    Problem solved.  I made a link to /bin/install under /usr/bin, and it worked fine.
    Now then, another question: why did Nodoka get installed under /usr/local/lib, rather than /usr/lib?
    EDIT: Should have waited a moment before posting, I guess.  How do you install packages from AUR?  Or packages that you downloaded onto your system?
    Last edited by Falcata (2008-01-25 23:41:26)

  • Cuyo binary goes with makepkg to /usr/games instead of /usr/bin

    Hi,
    I'm trying to write PKGBUILD for the game Cuyo. In the final package, the binary goes always to /usr/games instead of /usr/bin. I'm pretty new to this and I can't figure out, how to change it Can anyone tell me, or give an advice? Thanx
    -------------------------PKGBUILD-----------------------
    pkgname=cuyo
    pkgver=2.1.0beta1
    pkgrel=1
    pkgdesc="Cuyo is a Tetris-style puzzle game for up to two players with a twist"
    arch=(i686)
    url="http://www.karimmi.de/cuyo/"
    license=('GPL')
    groups=()
    depends=('sdl_mixer' 'sdl_image')
    makedepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    source=(http://download.savannah.gnu.org/releases/cuyo/$pkgname-2.~-1.0~beta1.tar.gz)
    noextract=()
    md5sums=('2c49f8b2111be4bdd86163b2be4a9485')
    build() {
      cd "$startdir/src/$pkgname-2.~-1.0~beta1"
      ./configure --prefix=/usr
      make || return 1
      make DESTDIR="$startdir/pkg" install

    That helped me Now its looks like this:
    -------------------------PKGBUILD-----------------------
    pkgname=cuyo
    pkgver=2.1.0beta1
    pkgrel=1
    pkgdesc="Cuyo is a Tetris-style puzzle game for up to two players with a twist"
    arch=(i686)
    url="http://www.karimmi.de/cuyo/"
    license=('GPL')
    groups=()
    depends=('sdl_mixer' 'sdl_image')
    makedepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    source=(http://download.savannah.gnu.org/releases/cuyo/$pkgname-2.~-1.0~beta1.tar.gz)
    noextract=()
    md5sums=('2c49f8b2111be4bdd86163b2be4a9485')
    build() {
      cd "$startdir/src/$pkgname-2.~-1.0~beta1"
      ./configure --prefix=/usr
      make || return 1
      make DESTDIR="$startdir/pkg" install
      mkdir $startdir/pkg/usr/bin
      mv $startdir/pkg/usr/games/$pkgname $startdir/pkg/usr/bin
      rm -r $startdir/pkg/usr/games
    Can someone more experienced in this please tell me, if it's right and clean way or not?
    Thanx anyway )

  • [Solved] Virtualbox-source missing /usr/bin/vboxbuild

    New virtualbox source missing /usr/bin/vboxbuild
    i cant load my vboxdrv module & i also cant build vboxdrv module
    new vbox-source 4.1.18-3 (2012-07-24) dont have vboxbuild script
    anyone also have problem with this issue?
    btw i use ck-kernel
    Last edited by dhiika (2012-07-25 01:19:27)

    xzy3186 wrote:
    gbc921 wrote:
    I'm also using the linux-ck from AUR and I could not load vboxdrv even after the "# dkms setup vboxhost/4.1.18"
    It has compiled fine, but when I do "$ sudo rc.d start dkms" it gives me this:
    :: Starting Dynamic Kernel Module System [BUSY] Error! Could not locate dkms.conf file.
    File: does not exist.
    ERROR: could not insert 'vboxdrv': Exec format error
    ERROR: could not insert 'vboxnetadp': Exec format error
    ERROR: could not insert 'vboxnetflt': Exec format error
    ERROR: could not insert 'vboxpci': Exec format error
    If I try to compile it again then:
    $ sudo dkms install vboxhost/4.1.18
    Module vboxhost/4.1.18 already installed on kernel 3.4.6-2-ck/x86_64
    I have installed these packages:
          community/virtualbox 4.1.18-4
          community/virtualbox-additions 4.1.18-1
          community/virtualbox-modules 4.1.18-4
          community/virtualbox-source 4.1.18-4
          aur/virtualbox-hook 1.0-3
    Sincerely,
    The same problem here. I compiled virtualbox-source 4.1.18-4 with "dkms install" under linux-ck-3.4.6-2 but had "ERROR: could not insert 'vboxdrv': Exec format error" whilie trying to modprobe.
    Solved:According to https://bbs.archlinux.org/viewtopic.php?id=145925, I should delete "old" vboxdrv generated by vboxbuild.
    Yeah! Removing the modules from /usr/lib/extramodules... and doing a depmod worked fine!
    Thanks!

  • Missing /usr/bin/make

    (Oracle Standarad edition 8.1.5, RH6.1)
    When I ran the 8i patches I get a bunch of error messages in the log files saying that the command gmake is missing. This in turn creates other errors and causes the relinking to not work correctly. I have read the 8i patch FAQ, but unfortunately I don't have /usr/bin/make either. Any ideas?
    Thanks

    Then you have to install make from your RedHat CD, then if needed, do the symbolic link.

  • /usr/bin/perlbin/site missing

    I'm trying to figure out what package /usr/bin/perlbin/site provides. I'm trying to run something which needs something out of that directory, but I don't have it.

    Well, I don't find it either (I know you could query phrik - on IRC - for file ownership, and it refers to pkgfile now). But look what querying phrik about pkgfile says:
    23:23:29 Borromini !pkgfile
    23:23:31 phrik A tool to find out what package owns a file. Now available in community/pkgtools! http://aur.archlinux.org/packages.php?ID=17941
    Don't ask me why they can't just make it say 'pkgfile is provided by the pkgtools package'...

  • Libx32-glibc fails to build - /usr/bin/ld: cannot find -lgcc

    I am trying to run steam using my own runtime libraries, however I'm missing libcrypt.so.11
    After trawling through a chain of dependencies, I'm stuck on libx32-glibc.
    When attmpting to build libx32-glibc I encounter an error while gcc is trying to compile elf/librtld.mapT
    [myusername@hostname libx32-glibc]$ makepkg -R
    ==> Making package: libx32-glibc 2.18_12-1 (Sun Feb 9 18:12:22 NZDT 2014)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting package()...
    LANGUAGE=C LC_ALL=C; export LANGUAGE LC_ALL; \
    make -r PARALLELMFLAGS="" -C /home/myusername/aur/libx32-glibc/src/glibc-2.18 objdir=`pwd` install
    make[1]: Entering directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18'
    make subdir=csu -C csu ..=../ subdir_lib
    make subdir=iconv -C iconv ..=../ subdir_lib
    make[2]: Entering directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18/iconv'
    make[2]: Nothing to be done for 'subdir_lib'.
    make[2]: Leaving directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18/iconv'
    make[2]: Entering directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18/login'
    make[2]: Nothing to be done for 'subdir_lib'.
    make[2]: Leaving directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18/login'
    make subdir=elf -C elf ..=../ subdir_lib
    make[2]: Entering directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18/elf'
    /opt/gcc-x32-seed/bin/gcc -mx32 -B/opt/gcc-x32-seed/lib/gcc/x86_64-unknown-linux-gnu/4.8.2/ -Wl,-O1,--sort-common,--as-needed,-z,relro -nostdlib -nostartfiles -r -o /home/myusername/aur/libx32-glibc/src/glibc-build/elf/librtld.map.o '-Wl,-(' /home/myusername/aur/libx32-glibc/src/glibc-build/elf/dl-allobjs.os /home/myusername/aur/libx32-glibc/src/glibc-build/libc_pic.a -lgcc '-Wl,-)' -Wl,-Map,/home/myusername/aur/libx32-glibc/src/glibc-build/elf/librtld.mapT
    /usr/bin/ld: cannot find -lgcc
    collect2: error: ld returned 1 exit status
    Makefile:285: recipe for target '/home/myusername/aur/libx32-glibc/src/glibc-build/elf/librtld.map' failed
    make[2]: *** [/home/myusername/aur/libx32-glibc/src/glibc-build/elf/librtld.map] Error 1
    make[2]: Leaving directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18/elf'
    Makefile:236: recipe for target 'elf/subdir_lib' failed
    make[1]: *** [elf/subdir_lib] Error 2
    make[1]: Leaving directory '/home/myusername/aur/libx32-glibc/src/glibc-2.18'
    Makefile:12: recipe for target 'install' failed
    make: *** [install] Error 2
    ==> ERROR: A failure occurred in package().
    Aborting...
    In accordance with this solved topic for a similar issue, I have ensured that options=('staticlibs') is present in PKGBUILD:
    options=('!strip' '!emptydirs' 'staticlibs')
    I have tried re downloading and compiling all the src but the same issue occurs.
    Here is a list of gcc/glibc/multilib packages that I have installed:
    [mephage@tws01 exercise1]$ pacman -Q | grep -E -e 'multilib|gcc|glibc'
    binutils-multilib 2.24-1
    gcc-libs-multilib 4.8.2-7
    gcc-multilib 4.8.2-7
    gcc-x32-seed 4.8.2_7-1
    glibc 2.18-12
    glibc-x32-seed 0.1.0-1
    lib32-gcc-libs 4.8.2-7
    lib32-glibc 2.18-12
    libtool-multilib 2.4.2-12
    Here is a list of aur packages that I have installed:
    [mephage@tws01 exercise1]$ pacman -Qm
    gcc-x32-seed 4.8.2_7-1
    glibc-x32-seed 0.1.0-1
    linux-ck 3.12.9-3
    linux-ck-headers 3.12.9-3
    nvidia-ck 331.38-2
    xdm-arch-theme 2.3.1-3

    Still haven't resolved this. However, I did see that there is more information in /home/myusername/dir-where-i-extract-aur-tarballs/libx32-glibc/src/glibc-build/config.log:
    /usr/bin/ld: cannot find -lgcc
    /usr/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
    /usr/bin/ld: skipping incompatible /usr/lib/libc.a when searching for -lc
    /usr/bin/ld: cannot find -lc
    /usr/bin/ld: cannot find -lgcc
    collect2: error: ld returned 1 exit status
    My guess is that I need a compatible libc.so so that /usr/bin/ld can create the links using gcc.
    Edit: Removed a line that was incorrect
    Last edited by mephage (2014-02-23 04:54:07)

  • Patch 8557019 -  /usr/bin/ld: cannot find -ldeb

    Hi there,
    I have upgraded an ebs system from 11-5-10-2-1 to r12 12.1.3 - I am in the process of patchiong reports and forms to latest version (10.1.2.3.1)
    unfortunately one of the patches errors.
    The system is on Linux x86-64
    Here is what I did and what I experienced :-
    cd /u03/oraupg/inst/apps/oraupg_findbupg/ora/10.1.2
    sh oraupg_findbupg.env
    linux32 bash
    cd /u03/oraupg/apps/patches/10-1-2-patches/8557019
    opatch apply
    What I experienced :-
    [applmgr@findbupg 8557019]$ opatch apply
    Oracle Interim Patch Installer version 1.0.0.0.63
    Copyright (c) 2009 Oracle Corporation. All Rights Reserved..
    Oracle recommends you to use the latest OPatch version
    and read the OPatch documentation available in the OPatch/docs
    directory for usage. For information about the latest OPatch and
    other support-related issues, refer to document ID 293369.1
    available on My Oracle Support (https://myoraclesupport.oracle.com)
    Oracle Home : /u03/oraupg/apps/tech_st/10.1.2
    Oracle Home Inventory : /u03/oraupg/apps/tech_st/10.1.2/inventory
    Central Inventory : /u01/oracle/product/oraInventory
    from : /etc/oraInst.loc
    OUI location : /u03/oraupg/apps/tech_st/10.1.2/oui
    OUI shared library : /u03/oraupg/apps/tech_st/10.1.2/oui/lib/linux/liboraInstaller.so
    Java location : /u03/oraupg/apps/tech_st/10.1.2/jre/1.4.2/bin/java
    Log file location : /u03/oraupg/apps/tech_st/10.1.2/.patch_storage/<patch ID>/*.log
    Creating log file "/u03/oraupg/apps/tech_st/10.1.2/.patch_storage/8557019/Apply_8557019_05-31-2011_16-29-40.log"
    Invoking fuser to check for active processes.
    Provide your email address to be informed of security issues, install and
    initiate Oracle Configuration Manager. Easier for you if you use your My
    Oracle Support Email address/User Name.
    Visit http://www.oracle.com/support/policies.html for details.
    Email address/User Name:
    You have not provided an email address for notification of security issues.
    Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]: Yes
    Oracle Configuration Manager has been installed but not configured. OCM enables
    Oracle to provide superior, proactive support for our customers. Oracle
    strongly recommends customers configure OCM. To complete the configuration of
    OCM, refer to the OCM Installation and Administration Guide
    (http://www.oracle.com/technology/documentation/ocm.html).
    Backing up comps.xml ...
    OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.
    Please shut down Oracle instances running out of this ORACLE_HOME
    (Oracle Home = /u03/oraupg/apps/tech_st/10.1.2)
    Is this system ready for updating?
    Please respond Y|N >
    Y
    Applying patch 8557019...
    Patching archive files...
    Running make for target install.
    OPatch found the word "error" in stderr, please look into it.
    You may have to run the make again.
    Stderr Output (from /u03/oraupg/apps/tech_st/10.1.2/.patch_storage/8557019/make_local.stderr):
    /usr/bin/ld: skipping incompatible /u03/oraupg/apps/tech_st/10.1.2/lib//libdeb.so when searching for -ldeb
    /usr/bin/ld: skipping incompatible /u03/oraupg/apps/tech_st/10.1.2/lib//libdeb.a when searching for -ldeb
    /usr/bin/ld: skipping incompatible /u03/oraupg/apps/tech_st/10.1.2/lib//libdeb.so when searching for -ldeb
    /usr/bin/ld: skipping incompatible /u03/oraupg/apps/tech_st/10.1.2/lib//libdeb.a when searching for -ldeb
    /usr/bin/ld: skipping incompatible /u03/oraupg/apps/tech_st/10.1.2/lib/libdeb.so when searching for -ldeb
    /usr/bin/ld: skipping incompatible /u03/oraupg/apps/tech_st/10.1.2/lib/libdeb.a when searching for -ldeb
    /usr/bin/ld: cannot find -ldeb
    collect2: ld returned 1 exit status
    make: *** [dejvm] Error 1
    [email protected] - June 1, 2011 9:57:54 AM GMT+12:00 [Update from Customer]
    OPatch encounters the following issues during Make:
    There were problems running make commands. The errors encounted were:
    Error for command: cd /u03/oraupg/apps/tech_st/10.1.2//procbuilder/lib
    /usr/bin/make -f ins_procbuilder.mk install ORACLE_HOME="/u03/oraupg/apps/tech_st/10.1.2" 2>/u03/oraupg/apps/tech_st/10.1.2/.patch_storage/8557019/make_local.stderr
    Replying 'Y' will terminate the patch installation immediately.It WILL NOT restore any updates that have been performed to this point. It WILL NOT update the inventory.
    Replying 'N' will continue with updating the inventory showing the patch has been applied.
    NOTE: After replying either 'Y' or 'N' it is critical to review:
    My Oracle Support Note 312767.1 How to rollback a failed Interim patch installation.
    Do you want to STOP?
    Please respond Y|N >
    Y
    Make Error!
    ERROR: OPatch failed during patching, possibly due to missing files.
    [applmgr@findbupg 8557019]$
    Welcome advice re how to fix this problem - thanks to all who have helped me in the past.
    cheers, Rob

    Hello Diesel,
    As per Note 1266729.1 : "Applying Patch 8557019 and encounter /usr/bin/ld: cannot find -ldeb error running make -f ins_procbuilder.mk install" this can be fixed by appying patch 8551790 first.
    Regards, Carlo.

  • [SOLVED]pacman fails to upgrade... /usr/bin/vercmp: cannot execute bin

    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    pacman-3.2.1-1-x86_64 491.3K 1850.7K/s 00:00:00 [########################################################################################################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [########################################################################################################] 100%
    (1/1) upgrading pacman [########################################################################################################] 100%
    warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    /tmp/alpm_eT02H1/.INSTALL: line 5: /usr/bin/vercmp: cannot execute binary file
    /tmp/alpm_eT02H1/.INSTALL: line 5: [: : integer expression expected
    Here is more info on my system and the file vermcp is installed and permissions seem correct.
    http://rafb.net/p/MYk3pO21.html
    HELP?
    Last edited by rooloo (2008-09-09 00:07:09)

    Ok, this was my dumb mistake again. I was testing out powerpill on my server which is a 32 bit machine. I tried copying my 64 bit mirrorlist to my 32 bit server because I have it ranked and slimmed down to only the essential servers.

  • Im trying to patchadd 119254-89   in solaris 10 u2   but showing error  /usr/lib/patch/patchadd[2]: /usr/bin/ls: not found

    please can you tell solution,  im try patchadd 119254-89    output:  error is         /usr/lib/patch/patchadd[2]: /usr/bin/ls: not found
    i want update 10_reccomented patch updates 15********  to that solaris 10 u2  kernel 11********
    which error im facing is:-
    standby_node#
    standby_node#patchadd 119254-89
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Done!
    Checking patches that you specified for installation.
    Done!
    Approved patches will be installed in this order:
    119254-89
    Checking installed patches...
    /usr/lib/patch/patchadd[2]: /usr/bin/ls:  not found
    Patchadd is terminating.
    then im trying remove following pkg in that patch 119254-89 
    standby_node#unzip 10_Recommended_sparc.zip
    Archive:  10_Recommended_sparc.zip
      End-of-central-directory signature not found.  Either this file is not
      a zipfile, or it constitutes one disk of a multi-part archive.  In the
      latter case the central directory and zipfile comment will be found on
      the last disk(s) of this archive.
    unzip:  cannot find zipfile directory in one of 10_Recommended_sparc.zip or
            10_Recommended_sparc.zip.zip, and cannot find 10_Recommended_sparc.zip.ZIP, period.
    standby_node#pwd
    /accel
    standby_node#pkgrm SUNWpkgcmdsr 
    The following package is currently installed:
       SUNWpkgcmdsr  SVr4 package commands (root)
                     (sparc) 11.11,REV=2005.01.09.23.05
    Do you want to remove this package? [y,n,?,q] Nov 21 15:57:48 standby_node last message repeated 1 time
    y
    ## Removing installed package instance <SUNWpkgcmdsr>
    ## Verifying package <SUNWpkgcmdsr> dependencies in global zone
    WARNING:
        The <SUNWpkgcmdsu> package depends on the package
        currently being removed.
    Dependency checking failed.
    Do you want to continue with the removal of this package [y,n,?,q] y
    ## Processing package information.
    ## Removing pathnames in class <none>
    /var/spool/pkg
    /var/spool <shared pathname not removed>
    /var/sadm/security
    /var/sadm/pkg <non-empty directory not removed>
    /var/sadm/install/logs <non-empty directory not removed>
    /var/sadm/install/admin/default
    /var/sadm/install/admin
    /var/sadm/install <non-empty directory not removed>
    /var/sadm <shared pathname not removed>
    /var <shared pathname not removed>
    ## Updating system information.
    Removal of <SUNWpkgcmdsr> was successful.
    actually i want to updates  patch 10_recommented to that server solaris 10 u2  current kernel 11******    for this purpose only i do all those thing.
    standby_node#unzip 10_Recommended_sparc.zip
    Archive:  10_Recommended_sparc.zip
      End-of-central-directory signature not found.  Either this file is not
      a zipfile, or it constitutes one disk of a multi-part archive.  In the
      latter case the central directory and zipfile comment will be found on
      the last disk(s) of this archive.
    unzip:  cannot find zipfile directory in one of 10_Recommended_sparc.zip or
            10_Recommended_sparc.zip.zip, and cannot find 10_Recommended_sparc.zip.ZIP, period.
    standby_node#pwd
    standby_node#patchadd 119254-89
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Done!
    The following requested patches have packages not installed on the system
    Package SUNWpkgcmdsr from directory SUNWpkgcmdsr in patch 119254-89 is not installed on the system. Changes for package SUNWpkgcmdsr will not be applied to the system.
    Checking patches that you specified for installation.
    Done!
    Approved patches will be installed in this order:
    119254-89
    Checking installed patches...
    Patchadd is terminating.
    my motive is to updates patch kernel 11***** to 15***********
    please can you anyone give solution for this.
    by Ragavan

    thanks,   but now iam facing new issue  i dont know why it happen....
    standby_node#./installpatchset --s10patchset
    Setup ...
    Recommended OS Patchset Solaris 10 SPARC (2014.05.16)
    Patch 118833-36 will be applied shortly. Installation of the patch set will
    halt after this patch is applied, and it will be necessary to reboot before
    installation of the patch set can continue.
    Application of patches started : 2014.11.25 14:53:01
    Applying 120900-04 (  1 of 377) ... skipped
    Applying 121133-02 (  2 of 377) ... skipped
    Applying 119254-89 (  3 of 377) ... skipped
    Applying 119317-01 (  4 of 377) ... skipped
    Applying 121296-01 (  5 of 377) ... skipped
    Applying 138215-01 (  6 of 377) ... skipped
    Applying 148336-01 (  7 of 377) ... skipped
    Applying 146054-07 (  8 of 377) ... skipped
    Applying 142251-02 (  9 of 377) ... skipped
    Applying 125555-15 ( 10 of 377) ... skipped
    Applying 118367-04 ( 11 of 377) ... skipped
    Applying 118666-65 ( 12 of 377) ... skipped
    Applying 118667-65 ( 13 of 377) ... skipped
    Applying 118705-02 ( 14 of 377) ... skipped
    Applying 118706-01 ( 15 of 377) ... skipped
    Applying 118707-05 ( 16 of 377) ... skipped
    Applying 118708-19 ( 17 of 377) ... skipped
    Applying 118711-03 ( 18 of 377) ... skipped
    Applying 118712-23 ( 19 of 377) ... skipped
    Applying 118718-06 ( 20 of 377) ... skipped
    Applying 118777-16 ( 21 of 377) ... skipped
    Applying 121181-05 ( 22 of 377) ... skipped
    Applying 118918-24 ( 23 of 377) ... skipped
    Applying 138217-01 ( 24 of 377) ... skipped
    Applying 119578-30 ( 25 of 377) ... skipped
    Applying 140860-02 ( 26 of 377) ... skipped
    Applying 121453-02 ( 27 of 377) ... skipped
    Applying 121453-02 ( 28 of 377) ... skipped
    Applying 121118-19 ( 29 of 377) ... skipped
    Applying 118833-36 ( 30 of 377) ... skipped
    Applying 118945-01 ( 31 of 377) ... skipped
    Applying 118981-03 ( 32 of 377) ... skipped
    Applying 119059-66 ( 33 of 377) ... skipped
    Applying 119063-01 ( 34 of 377) ... skipped
    Applying 119081-25 ( 35 of 377) ... skipped
    Applying 119115-35 ( 36 of 377) ... skipped
    Applying 119117-52 ( 37 of 377) ... skipped
    Applying 119130-33 ( 38 of 377) ... skipped
    Applying 119213-27 ( 39 of 377) ... skipped
    Applying 119246-39 ( 40 of 377) ... skipped
    Applying 124628-10 ( 41 of 377) ... skipped
    Applying 119252-29 ( 42 of 377) ... skipped
    Applying 123611-04 ( 43 of 377) ... skipped
    Applying 119280-25 ( 44 of 377) ... skipped
    Applying 119278-38 ( 45 of 377) ... skipped
    Applying 119282-01 ( 46 of 377) ... skipped
    Applying 119309-03 ( 47 of 377) ... skipped
    Applying 140899-01 ( 48 of 377) ... skipped
    Applying 119313-42 ( 49 of 377) ... skipped
    Applying 124188-03 ( 50 of 377) ... skipped
    Applying 119315-19 ( 51 of 377) ... skipped
    Applying 120199-15 ( 52 of 377) ... skipped
    Applying 119534-29 ( 53 of 377) ... skipped
    Applying 119538-19 ( 54 of 377) ... skipped
    Applying 120099-08 ( 55 of 377) ... skipped
    Applying 119546-08 ( 56 of 377) ... skipped
    Applying 119548-14 ( 57 of 377) ... skipped
    Applying 119648-03 ( 58 of 377) ... skipped
    Applying 120272-31 ( 59 of 377) ... skipped
    Applying 122640-05 ( 60 of 377) ... skipped
    Applying 126897-02 ( 61 of 377) ... skipped
    Applying 127755-01 ( 62 of 377) ... skipped
    Applying 125503-02 ( 63 of 377) ... skipped
    Applying 118731-01 ( 64 of 377) ... skipped
    Applying 124204-04 ( 65 of 377) ... skipped
    Applying 122660-10 ( 66 of 377) ... skipped
    Applying 125547-02 ( 67 of 377) ... skipped
    Applying 140796-01 ( 68 of 377) ... skipped
    Applying 120011-14 ( 69 of 377) ... skipped
    Applying 139520-02 ( 70 of 377) ... skipped
    Applying 119757-32 ( 71 of 377) ... skipped
    Applying 119764-07 ( 72 of 377) ... skipped
    Applying 119783-28 ( 73 of 377) ... skipped
    Applying 119810-07 ( 74 of 377) ... skipped
    Applying 119812-18 ( 75 of 377) ... skipped
    Applying 119900-16 ( 76 of 377) ... skipped
    Applying 119903-02 ( 77 of 377) ... skipped
    Applying 119906-18 ( 78 of 377) ... skipped
    Applying 119955-05 ( 79 of 377) ... skipped
    Applying 119963-24 ( 80 of 377) ... skipped
    Applying 119966-01 ( 81 of 377) ... skipped
    Applying 119986-03 ( 82 of 377) ... skipped
    Applying 120094-35 ( 83 of 377) ... skipped
    Applying 120101-01 ( 84 of 377) ... skipped
    Applying 120195-02 ( 85 of 377) ... skipped
    Applying 120201-06 ( 86 of 377) ... skipped
    Applying 120256-01 ( 87 of 377) ... skipped
    Applying 120284-07 ( 88 of 377) ... skipped
    Applying 120460-17 ( 89 of 377) ... skipped
    Applying 119368-04 ( 90 of 377) ... skipped
    Applying 120286-03 ( 91 of 377) ... skipped
    Applying 120292-02 ( 92 of 377) ... skipped
    Applying 120348-03 ( 93 of 377) ... skipped
    Applying 121975-01 ( 94 of 377) ... skipped
    Applying 120410-33 ( 95 of 377) ... skipped
    Applying 120412-11 ( 96 of 377) ... skipped
    Applying 120414-27 ( 97 of 377) ... skipped
    Applying 120543-33 ( 98 of 377) ... skipped
    Applying 120719-06 ( 99 of 377) ... skipped
    Applying 120732-01 (100 of 377) ... skipped
    Applying 120739-08 (101 of 377) ... skipped
    Applying 120753-09 (102 of 377) ... skipped
    Applying 120811-09 (103 of 377) ... skipped
    Applying 120812-32 (104 of 377) ... skipped
    Applying 120815-01 (105 of 377) ... skipped
    Applying 120830-06 (106 of 377) ... skipped
    Applying 120849-04 (107 of 377) ... skipped
    Applying 120928-32 (108 of 377) ... skipped
    Applying 121095-04 (109 of 377) ... skipped
    Applying 121104-11 (110 of 377) ... skipped
    Applying 121136-02 (111 of 377) ... skipped
    Applying 121211-02 (112 of 377) ... skipped
    Applying 121308-20 (113 of 377) ... skipped
    Applying 121337-01 (114 of 377) ... skipped
    Applying 120235-01 (115 of 377) ... skipped
    Applying 121428-15 (116 of 377) ... skipped
    Applying 121606-04 (117 of 377) ... skipped
    Applying 121946-01 (118 of 377) ... skipped
    Applying 122031-01 (119 of 377) ... skipped
    Applying 122212-46 (120 of 377) ... skipped
    Applying 122259-06 (121 of 377) ... skipped
    Applying 122470-03 (122 of 377) ... skipped
    Applying 122472-07 (123 of 377) ... skipped
    Applying 122911-33 (124 of 377) ... skipped
    Applying 123003-04 (125 of 377) ... skipped
    Applying 124171-07 (126 of 377) ... skipped
    Applying 123630-03 (127 of 377) ... skipped
    Applying 123005-07 (128 of 377) ... skipped
    Applying 123252-01 (129 of 377) ... skipped
    Applying 123301-01 (130 of 377) ... skipped
    Applying 123358-02 (131 of 377) ... skipped
    Applying 123526-01 (132 of 377) ... skipped
    Applying 123590-12 (133 of 377) ... skipped
    Applying 123893-77 (134 of 377) ... skipped
    Applying 123938-02 (135 of 377) ... skipped
    Applying 124149-16 (136 of 377) ... skipped
    Applying 124325-01 (137 of 377) ... skipped
    Applying 124393-11 (138 of 377) ... skipped
    Applying 124397-02 (139 of 377) ... skipped
    Applying 124457-02 (140 of 377) ... skipped
    Applying 124630-42 (141 of 377) ... skipped
    Applying 124939-05 (142 of 377) ... skipped
    Applying 124997-01 (143 of 377) ... skipped
    Applying 125075-01 (144 of 377) ... skipped
    Applying 125136-75 (145 of 377) ... skipped
    Applying 125137-75 (146 of 377) ... skipped
    Applying 125215-04 (147 of 377) ... skipped
    Applying 125279-05 (148 of 377) ... skipped
    Applying 125332-24 (149 of 377) ... skipped
    Applying 125505-01 (150 of 377) ... skipped
    Applying 125533-17 (151 of 377) ... skipped
    Applying 125670-04 (152 of 377) ... skipped
    Applying 125719-42 (153 of 377) ... skipped
    Applying 125725-03 (154 of 377) ... skipped
    Applying 125731-11 (155 of 377) ... skipped
    Applying 125891-01 (156 of 377) ... skipped
    Applying 126119-02 (157 of 377) ... skipped
    Applying 126206-10 (158 of 377) ... skipped
    Applying 126363-08 (159 of 377) ... skipped
    Applying 126365-16 (160 of 377) ... skipped
    Applying 126425-01 (161 of 377) ... skipped
    Applying 126440-01 (162 of 377) ... skipped
    Applying 126540-02 (163 of 377) ... skipped
    Applying 126546-04 (164 of 377) ... skipped
    Applying 126868-04 (165 of 377) ... skipped
    Applying 127127-11 (166 of 377) ... skipped
    Applying 127724-02 (167 of 377) ... skipped
    Applying 127752-01 (168 of 377) ... skipped
    Applying 127872-02 (169 of 377) ... skipped
    Applying 128292-01 (170 of 377) ... skipped
    Applying 128298-02 (171 of 377) ... skipped
    Applying 128310-01 (172 of 377) ... skipped
    Applying 128332-01 (173 of 377) ... skipped
    Applying 136882-03 (174 of 377) ... skipped
    Applying 136998-10 (175 of 377) ... skipped
    Applying 137000-08 (176 of 377) ... skipped
    Applying 137004-09 (177 of 377) ... skipped
    Applying 137032-01 (178 of 377) ... skipped
    Applying 137080-07 (179 of 377) ... skipped
    Applying 137090-02 (180 of 377) ... skipped
    Applying 137093-01 (181 of 377) ... skipped
    Applying 137097-02 (182 of 377) ... skipped
    Applying 137102-01 (183 of 377) ... skipped
    Applying 137115-01 (184 of 377) ... skipped
    Applying 138866-03 (185 of 377) ... skipped
    Applying 137137-09 (186 of 377) ... skipped
    Applying 137147-07 (187 of 377) ... skipped
    Applying 137282-01 (188 of 377) ... skipped
    Applying 137321-02 (189 of 377) ... skipped
    Applying 137871-02 (190 of 377) ... skipped
    Applying 138096-02 (191 of 377) ... skipped
    Applying 138181-01 (192 of 377) ... skipped
    Applying 138195-04 (193 of 377) ... skipped
    Applying 138245-01 (194 of 377) ... skipped
    Applying 138247-01 (195 of 377) ... skipped
    Applying 138361-01 (196 of 377) ... skipped
    Applying 138647-01 (197 of 377) ... skipped
    Applying 138649-01 (198 of 377) ... skipped
    Applying 138766-01 (199 of 377) ... skipped
    Applying 138822-12 (200 of 377) ... skipped
    Applying 138824-12 (201 of 377) ... skipped
    Applying 138826-12 (202 of 377) ... skipped
    Applying 138852-01 (203 of 377) ... skipped
    Applying 138854-01 (204 of 377) ... skipped
    Applying 138876-01 (205 of 377) ... skipped
    Applying 139099-04 (206 of 377) ... skipped
    Applying 139289-02 (207 of 377) ... skipped
    Applying 139291-02 (208 of 377) ... skipped
    Applying 141016-01 (209 of 377) ... skipped
    Applying 139555-08 (210 of 377) ... skipped
    Applying 139615-01 (211 of 377) ... skipped
    Applying 139620-01 (212 of 377) ... skipped
    Applying 139962-02 (213 of 377) ... skipped
    Applying 139980-01 (214 of 377) ... skipped
    Applying 139986-01 (215 of 377) ... skipped
    Applying 140455-01 (216 of 377) ... skipped
    Applying 140912-01 (217 of 377) ... skipped
    Applying 141032-01 (218 of 377) ... skipped
    Applying 141104-04 (219 of 377) ... skipped
    Applying 142292-01 (220 of 377) ... skipped
    Applying 141444-09 (221 of 377) ... skipped
    Applying 141496-01 (222 of 377) ... skipped
    Applying 141532-04 (223 of 377) ... skipped
    Applying 141548-01 (224 of 377) ... skipped
    Applying 141558-01 (225 of 377) ... skipped
    Applying 141586-01 (226 of 377) ... skipped
    Applying 142049-01 (227 of 377) ... skipped
    Applying 142088-02 (228 of 377) ... skipped
    Applying 142234-01 (229 of 377) ... skipped
    Applying 142240-01 (230 of 377) ... skipped
    Applying 142244-02 (231 of 377) ... skipped
    Applying 142340-02 (232 of 377) ... skipped
    Applying 142373-02 (233 of 377) ... skipped
    Applying 142394-01 (234 of 377) ... skipped
    Applying 142397-01 (235 of 377) ... skipped
    Applying 142428-02 (236 of 377) ... skipped
    Applying 142430-01 (237 of 377) ... skipped
    Applying 142529-01 (238 of 377) ... skipped
    Applying 142543-01 (239 of 377) ... skipped
    Applying 142911-01 (240 of 377) ... skipped
    Applying 142933-05 (241 of 377) ... skipped
    Applying 142909-17 (242 of 377) ... skipped
    Applying 143317-03 (243 of 377) ... skipped
    Applying 143502-01 (244 of 377) ... skipped
    Applying 143506-07 (245 of 377) ... skipped
    Applying 143527-01 (246 of 377) ... skipped
    Applying 143609-03 (247 of 377) ... skipped
    Applying 144526-02 (248 of 377) ... skipped
    Applying 144500-19 (249 of 377) ... skipped
    Applying 143643-08 (250 of 377) ... skipped
    Applying 143651-01 (251 of 377) ... skipped
    Applying 144664-01 (252 of 377) ... skipped
    Applying 143725-02 (253 of 377) ... skipped
    Applying 143727-02 (254 of 377) ... skipped
    Applying 143731-01 (255 of 377) ... skipped
    Applying 143733-01 (256 of 377) ... skipped
    Applying 143739-01 (257 of 377) ... skipped
    Applying 143954-04 (258 of 377) ... skipped
    Applying 144047-01 (259 of 377) ... skipped
    Applying 144106-01 (260 of 377) ... skipped
    Applying 144112-02 (261 of 377) ... skipped
    Applying 144188-02 (262 of 377) ... skipped
    Applying 144325-01 (263 of 377) ... skipped
    Applying 144327-02 (264 of 377) ... skipped
    Applying 144455-01 (265 of 377) ... skipped
    Applying 144486-05 (266 of 377) ... skipped
    Applying 144492-01 (267 of 377) ... skipped
    Applying 144569-01 (268 of 377) ... skipped
    Applying 147002-01 (269 of 377) ... skipped
    Applying 144872-03 (270 of 377) ... skipped
    Applying 144909-03 (271 of 377) ... skipped
    Applying 144911-02 (272 of 377) ... skipped
    Applying 144994-02 (273 of 377) ... skipped
    Applying 144996-02 (274 of 377) ... skipped
    Applying 145006-04 (275 of 377) ... skipped
    Applying 145023-01 (276 of 377) ... skipped
    Applying 147217-02 (277 of 377) ... skipped
    Applying 145080-13 (278 of 377) ... skipped
    Applying 145096-03 (279 of 377) ... skipped
    Applying 145120-01 (280 of 377) ... skipped
    Applying 145200-13 (281 of 377) ... skipped
    Applying 145929-05 (282 of 377) ... skipped
    Applying 145953-07 (283 of 377) ... skipped
    Applying 147442-01 (284 of 377) ... skipped
    Applying 147147-26 (285 of 377) ... skipped
    Applying 147143-17 (286 of 377) ... skipped
    Applying 146334-01 (287 of 377) ... skipped
    Applying 146489-06 (288 of 377) ... skipped
    Applying 146582-04 (289 of 377) ... skipped
    Applying 146673-01 (290 of 377) ... skipped
    Applying 146679-01 (291 of 377) ... skipped
    Applying 146681-02 (292 of 377) ... skipped
    Applying 146683-01 (293 of 377) ... skipped
    Applying 146694-02 (294 of 377) ... skipped
    Applying 146834-02 (295 of 377) ... skipped
    Applying 146954-03 (296 of 377) ... skipped
    Applying 147023-01 (297 of 377) ... skipped
    Applying 147194-03 (298 of 377) ... skipped
    Applying 147227-01 (299 of 377) ... skipped
    Applying 147272-01 (300 of 377) ... skipped
    Applying 147378-01 (301 of 377) ... skipped
    Applying 147673-08 (302 of 377) ... skipped
    Applying 147692-55 (303 of 377) ... skipped
    Applying 147693-55 (304 of 377) ... skipped
    Applying 147793-12 (305 of 377) ... skipped
    Applying 147797-04 (306 of 377) ... skipped
    Applying 147805-01 (307 of 377) ... skipped
    Applying 147992-06 (308 of 377) ... skipped
    Applying 148002-01 (309 of 377) ... skipped
    Applying 148004-01 (310 of 377) ... skipped
    Applying 148006-01 (311 of 377) ... skipped
    Applying 148027-03 (312 of 377) ... skipped
    Applying 148049-04 (313 of 377) ... skipped
    Applying 148071-12 (314 of 377) ... skipped
    Applying 148104-11 (315 of 377) ... skipped
    Applying 148112-02 (316 of 377) ... skipped
    Applying 148135-01 (317 of 377) ... skipped
    Applying 148165-02 (318 of 377) ... skipped
    Applying 148241-02 (319 of 377) ... skipped
    Applying 148322-07 (320 of 377) ... skipped
    Applying 148324-06 (321 of 377) ... skipped
    Applying 148342-06 (322 of 377) ... skipped
    Applying 148383-01 (323 of 377) ... skipped
    Applying 148403-01 (324 of 377) ... skipped
    Applying 148407-01 (325 of 377) ... skipped
    Applying 148412-02 (326 of 377) ... skipped
    Applying 148423-01 (327 of 377) ... skipped
    Applying 148559-08 (328 of 377) ... skipped
    Applying 148561-06 (329 of 377) ... skipped
    Applying 148565-01 (330 of 377) ... skipped
    Applying 148625-01 (331 of 377) ... skipped
    Applying 148657-01 (332 of 377) ... skipped
    Applying 148693-01 (333 of 377) ... skipped
    Applying 148768-01 (334 of 377) ... skipped
    Applying 148870-01 (335 of 377) ... skipped
    Applying 150435-01 (336 of 377) ... skipped
    Applying 148888-05 (337 of 377) ... skipped
    Applying 148948-01 (338 of 377) ... skipped
    Applying 148975-01 (339 of 377) ... skipped
    Applying 149067-01 (340 of 377) ... skipped
    Applying 149071-01 (341 of 377) ... skipped
    Applying 149075-01 (342 of 377) ... skipped
    Applying 149108-01 (343 of 377) ... skipped
    Applying 149112-01 (344 of 377) ... skipped
    Applying 149149-01 (345 of 377) ... skipped
    Applying 149163-01 (346 of 377) ... skipped
    Applying 149165-01 (347 of 377) ... skipped
    Applying 149279-02 (348 of 377) ... skipped
    Applying 121081-08 (349 of 377) ... skipped
    Applying 149453-02 (350 of 377) ... skipped
    Applying 149483-01 (351 of 377) ... skipped
    Applying 149638-02 (352 of 377) ... skipped
    Applying 149646-02 (353 of 377) ... skipped
    Applying 149648-03 (354 of 377) ... skipped
    Applying 150025-01 (355 of 377) ... skipped
    Applying 150400-11 (356 of 377) ... skipped
    Applying 150031-05 (357 of 377) ... skipped
    Applying 150107-02 (358 of 377) ... skipped
    Applying 150113-02 (359 of 377) ... skipped
    Applying 150123-01 (360 of 377) ... skipped
    Applying 150157-01 (361 of 377) ... skipped
    Applying 150180-01 (362 of 377) ... skipped
    Applying 150307-01 (363 of 377) ... skipped
    Applying 150310-01 (364 of 377) ... skipped
    Applying 150312-04 (365 of 377) ... skipped
    Applying 150383-02 (366 of 377) ... skipped
    Applying 150534-01 (367 of 377) ... skipped
    Applying 150535-01 (368 of 377) ... skipped
    Applying 150537-01 (369 of 377) ... skipped
    Applying 150539-01 (370 of 377) ... skipped
    Applying 150616-01 (371 of 377) ... skipped
    Applying 150618-02 (372 of 377) ... skipped
    Applying 150631-02 (373 of 377) ... skipped
    Applying 150756-03 (374 of 377) ... skipped
    Applying 150836-01 (375 of 377) ... skipped
    Applying 150840-01 (376 of 377) ... skipped
    Applying 151145-01 (377 of 377) ... skipped
    Application of patches finished : 2014.11.25 15:06:13
    Following patches were skipped :
    Patches already applied
    120900-04     121453-02     119282-01     120256-01     120849-04
    121133-02     121453-02     122640-05     119368-04     121337-01
    119254-89     118945-01     118731-01     121975-01     120235-01
    121296-01     118981-03     119986-03     120732-01     121946-01
    118706-01     119063-01     120101-01
    Patches not applicable to packages on the system
    119317-01     119906-18     124939-05     138826-12     145200-13
    138215-01     119955-05     124997-01     138852-01     145929-05
    148336-01     119963-24     125136-75     138854-01     147442-01
    146054-07     119966-01     125137-75     139099-04     146673-01
    142251-02     120094-35     125215-04     139289-02     146679-01
    125555-15     120195-02     125279-05     139291-02     147023-01
    118367-04     120201-06     125332-24     141016-01     147227-01
    118666-65     120284-07     125505-01     139615-01     147272-01
    118667-65     120460-17     125533-17     139620-01     147378-01
    118705-02     120286-03     125670-04     139986-01     147673-08
    118707-05     120292-02     125725-03     140455-01     147692-55
    118708-19     120348-03     125731-11     141032-01     147693-55
    118711-03     120412-11     125891-01     141104-04     147992-06
    118712-23     120414-27     126119-02     142292-01     148002-01
    118718-06     120543-33     126363-08     141496-01     148004-01
    118777-16     120719-06     126365-16     141558-01     148006-01
    121181-05     120739-08     126425-01     142049-01     148135-01
    118918-24     120753-09     126440-01     142088-02     148322-07
    138217-01     120811-09     126540-02     142234-01     148324-06
    119578-30     120812-32     126546-04     142244-02     148342-06
    140860-02     120815-01     126868-04     142373-02     148383-01
    121118-19     120830-06     127752-01     142529-01     148423-01
    119059-66     120928-32     127872-02     142911-01     148559-08
    119081-25     121095-04     128292-01     142933-05     148565-01
    119115-35     121104-11     128298-02     143502-01     148625-01
    119117-52     121211-02     136882-03     143527-01     148768-01
    119213-27     121606-04     136998-10     143643-08     148870-01
    119246-39     122031-01     137000-08     143651-01     150435-01
    123611-04     122212-46     137004-09     144664-01     148975-01
    119309-03     122259-06     137080-07     143725-02     149067-01
    140899-01     122470-03     137090-02     143727-02     149071-01
    119313-42     122472-07     137093-01     143731-01     149075-01
    124188-03     122911-33     137097-02     143733-01     149108-01
    119538-19     123003-04     137102-01     143739-01     149112-01
    120099-08     124171-07     137147-07     144047-01     149149-01
    119548-14     123252-01     137321-02     144112-02     149163-01
    119648-03     123301-01     137871-02     144325-01     121081-08
    125547-02     123358-02     138195-04     144327-02     149483-01
    140796-01     123526-01     138247-01     147002-01     150031-05
    139520-02     123590-12     138361-01     144994-02     150107-02
    119764-07     123893-77     138647-01     144996-02     150157-01
    119783-28     123938-02     138649-01     145006-04     150616-01
    119810-07     124149-16     138766-01     145023-01     150618-02
    119812-18     124325-01     138822-12     147217-02     150840-01
    119900-16     124397-02     138824-12     145080-13     151145-01
    119903-02     124457-02
    Patches missing one or more required patches
    118833-36     125075-01     142394-01     147143-17     148693-01
    119130-33     125719-42     142397-01     146334-01     148888-05
    124628-10     126206-10     142428-02     146489-06     148948-01
    119252-29     127127-11     142430-01     146582-04     149165-01
    119280-25     127724-02     142543-01     146681-02     149279-02
    119278-38     128310-01     142909-17     146683-01     149453-02
    119315-19     128332-01     143317-03     146694-02     149638-02
    120199-15     137032-01     143506-07     146834-02     149646-02
    119534-29     137115-01     143609-03     146954-03     149648-03
    119546-08     138866-03     144526-02     147194-03     150025-01
    120272-31     137137-09     144500-19     147793-12     150400-11
    126897-02     137282-01     143954-04     147797-04     150113-02
    127755-01     138096-02     144106-01     147805-01     150123-01
    125503-02     138181-01     144188-02     148027-03     150180-01
    124204-04     138245-01     144455-01     148049-04     150307-01
    122660-10     138876-01     144486-05     148071-12     150310-01
    120011-14     139555-08     144492-01     148104-11     150312-04
    119757-32     139962-02     144569-01     148112-02     150383-02
    120410-33     139980-01     144872-03     148165-02     150534-01
    121136-02     140912-01     144909-03     148241-02     150535-01
    121308-20     141444-09     144911-02     148403-01     150537-01
    121428-15     141532-04     145096-03     148407-01     150539-01
    123630-03     141548-01     145120-01     148412-02     150631-02
    123005-07     141586-01     145953-07     148561-06     150756-03
    124393-11     142240-01     147147-26     148657-01     150836-01
    124630-42     142340-02
    No patches were applied.
    Install log files written :
      /var/sadm/install_data/s10s_rec_patchset_short_2014.11.25_14.53.01.log
      /var/sadm/install_data/s10s_rec_patchset_verbose_2014.11.25_14.53.01.log
    standby_node#
    standby_node#
    standby_node#uname -a
    SunOS standby_node 5.10 Generic_118833-17 sun4v sparc SUNW,Sun-Fire-T200
    standby_node#
    standby_node#
    standby_node#iniy t 6
    standby_node#
    standby_node#
    standby_node#
    all patch skipped   i dont why can u any solution for that???

  • "/usr/bin/strip: File format not recognized" while packing

    Hi.
    I would build a package for wingide but after the build process came a strange error:
    $ makepkg
    ==> Erstelle Paket: wingide 3.0.4-1 (Do 13. Mär 17:10:33 CET 2008)
    ==> Prüfe Laufzeit-Abhängigkeiten...
    ==> Prüfe Buildtime-Abhängigkeiten...
    ==> Empfange Quellen...
    -> wingide-3.0.4-1-i386-linux.tar.gz im Build-Verzeichnis gefunden
    ==> Überprüfe Gültigkeit der Quell-Dateien mit md5sums...
    wingide-3.0.4-1-i386-linux.tar.gz ... Durchgelaufen
    ==> Entpacke Quellen...
    -> bsdtar -x -f wingide-3.0.4-1-i386-linux.tar.gz
    ==> Entferne existierendes pkg/ Verzeichnis ...
    ==> Betrete fakeroot-Umgebung ...
    ==> Beginne build()...
    ==> Säubere Installation...
    -> Entferne info/doc-Dateien...
    -> Komprimiere Man-Pages...
    -> Entferne Debugging-Symbole aus Binär-Dateien und Bibliotheken...
    /usr/bin/strip: opt/wingide/bin/2.4/src/debug/tserver/64bit/tdbgtracer24.so: File format not recognized
    the PKGBUILD file:
    # Contributor: Andreas Schönfelder <[email protected]>
    pkgname=wingide
    pkgver=3.0.4
    pkgrel=1
    pkgdesc="The intelligent development environment for python programmers"
    url="http://www.wingware.com"
    license=
    arch=('i686')
    source=(http://wingware.com/pub/$pkgname/$pkgver/$pkgname-$pkgver-$pkgrel-i386-linux.tar.gz)
    md5sums=('0fd31ac2e7851d1b777f8c100f480e40')
    build()
    cd $startdir/src/$pkgname-$pkgver-$pkgrel-i386-linux
    mkdir -p $startdir/pkg/{opt/wingide,usr/bin}
    tar -xC $startdir/pkg/opt/wingide -f binary-package-$pkgver-$pkgrel.tar
    sed -e "s/^DIR=.*$/DIR=\/opt\/wingide/" -i $startdir/pkg/opt/wingide/wing
    mv $startdir/pkg/opt/wingide/wing $startdir/pkg/usr/bin
    # vim:syntax=sh
    Greets, Andreas
    Last edited by echasslau (2008-03-13 16:14:05)

    Adding options=(!strip) to the PKGBUILD will skip that step, but make other binaries significantly larger. If you just get the output but that package is built successfully, I would ignore it.

  • /usr/bin/env

    Hi,
    I'm trying to find the difference between using env and not using it. Found this:
    The env utility is sometimes useful with the ``#!'' construct (see
    execve(2)). The only difference between ``#!/usr/local/bin/foo'' and
    ``#!/usr/bin/env /usr/local/bin/foo'' is that the latter works even if
    /usr/local/bin/foo is itself interpreted. Using env this way also allows
    one to reference foo without the path, as well as set up the environment
    as desired.
    Can someone tell me what this means:
    The only difference between ``#!/usr/local/bin/foo'' and
    ``#!/usr/bin/env /usr/local/bin/foo'' is that the latter works even if
    /usr/local/bin/foo is itself interpreted.
    What is interpreted?
    Thanks,

    I think I know what this means now.
    The shebang line only accepts binary executables. So what it is saying is that if you use env, then the line will accept regular scripts:
    #!/usr/bin/env /usr/local/bin/foo
    will work even if foo is not a binary executable.
    Thanks anyway,

Maybe you are looking for