Patch for JSF1.0

Does anyone know if Sun has any plans to release a patch for the current RI?

A maintenance release (1.1) will be released real soon.

Similar Messages

  • AAC/MPEG-4 support patch for abcde

    I got bored to day and made up this patch for abcde that adds support for AAC using the M4A extension.
    It uses FAAC as the encoder and also patches abcde to version 2.2.3
    I have not tested it yet so bear with me...i'll post my test results later.
    You'll have to manually add the "M4AENCOPTS=" variable to the config
    usage is: abcde -o m4a
    UPDATED: fixed a plethora of typos
    another side note is the fact FAAC must be compiled with mpeg-4 support, the Archlinux package for FAAC isn't, so therefore this could be a problem unless you compile FAAC yourself. I submitted a feature request to get mp4 support added.
    the following is the 2.2.0 to 2.2.3 update+AAC patch. I will submit a AAC patch for the newest release to the developers of abcde later on.
    --- abcde-old-2.2.0 2005-03-08 12:42:14.000000000 -0500
    +++ abcde2 2005-03-08 12:11:07.000000000 -0500
    @@ -11,7 +11,7 @@
    # Copyright for this work is to expire January 1, 2010, after which it
    # shall be public domain.
    -VERSION="2.2.0"
    +VERSION="2.2.3"
    usage ()
    @@ -21,7 +21,7 @@
    echo "-1 Encode the whole CD in a single file"
    echo "-a <action1[,action2]...>"
    echo " Actions to perform (cddb,read,normalize,encode,tag,move,playlist,clean)"
    -echo "-A Experimental actions (retag, transcode)"
    +#echo "-A Experimental actions (retag, transcode)"
    echo "-b Batch mode: enable album normalization and nogap encoding"
    echo "-c <file>"
    echo " Specify a configuration file (overrides system and user config files)"
    @@ -366,6 +366,9 @@
    mpc)
    run_command tagtrack-$1 true
    + m4a)
    + run_command tagtrack-$1 true
    + ;;
    esac
    done
    @@ -489,6 +492,10 @@
    ## FIXME ## to the encoder ends up empty.
    run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
    + m4a)
    + # AAC/MPEG-4 format (.m4a) is done locally, with inline tagging.
    + run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $M4AENCODER $M4AENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -w "$IN" -o "$OUT"
    + ;;
    esac
    done
    # Only remove .wav if the encoding succeeded
    @@ -737,6 +744,9 @@
    if [ "$INTERACTIVE" = "y" ]; then
    while [ "$DONE" != "y" ]; do
    read ERASEPLAYLIST
    + if [ "$ERASEPLAYLIST" = "" ]; then
    + ERASEPLAYLIST=e
    + fi
    case $ERASEPLAYLIST in
    e|E|a|A|k|K) DONE=y ;;
    @@ -764,7 +774,7 @@
    ARTISTFILE=$(mungefilename "$TRACKARTIST")
    # If we want to start the tracks with a given number, we need to modify the
    # TRACKNUM value before evaluation
    - if [ -n $STARTTRACKNUMBER ] ; then
    + if [ -n "$STARTTRACKNUMBER" ] ; then
    # Get the trackpadding from the current track
    CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
    TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - 1 ))
    @@ -843,7 +853,7 @@
    cdparanoia|debug)
    if [ "$WEHAVEACD" = "y" ]; then
    vecho "Querying the CD for audio tracks..."
    - TRACKS=$( $CDROMREADER -Q 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    + TRACKS=$( $CDROMREADER -d $CDROM -Q --verbose 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    CDPARANOIAAUDIOTRACKS="$TRACKS"
    else
    if [ -f "$ABCDETEMPDIR/status" ] && checkstatus cdparanoia-audio-tracks ; then
    @@ -1354,7 +1364,7 @@
    EDITCDDB=n
    fi
    if [ "$EDITCDDB" = "y" ]; then
    - CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
    + CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d" " -f1);
    # Use the debian sensible-editor wrapper to pick the editor that the
    # user has requested via their $EDITOR environment variable
    @@ -1387,7 +1397,7 @@
    # Some heuristics first. Look at Disc Title, and if it starts with
    # "Various", then we'll assume Various Artists
    - if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2 -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    + if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    echo "Looks like a Multi-Artist CD" >&2
    VARIOUSARTISTS=y
    else
    @@ -1470,7 +1480,7 @@
    echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
    if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
    - if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d " " -f 1) ]; then
    + if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d" " -f1) ]; then
    # This works but does not have the necessary error checking
    # yet. If you are familiar with the CDDB spec
    # (see http://www.freedb.org/src/latest/DBFORMAT)
    @@ -1577,7 +1587,7 @@
    WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
    OUTDATA="$ABCDETEMPDIR/track$UTRACKNUM.$OUTPUTTYPE"
    if [ -r "$CDDBDATA" ]; then
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2 -d= | tr -d [:cntrl:])
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d [:cntrl:])
    echo "Grabbing track $UTRACKNUM: $TRACKNAME..." >&2
    else
    echo "Grabbing track $UTRACKNUM..." >&2
    @@ -1692,6 +1702,7 @@
    SPEEXENCODERSYNTAX=default
    MPPENCODERSYNTAX=default
    NORMALIZERSYNTAX=default
    +M4AENCODERSYNTAX=default
    OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
    # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
    @@ -1738,6 +1749,7 @@
    SPEEXENC=speexenc
    # mpp (Musepack)
    MPPENC=mppenc
    +M4AENC=faac
    ID3=id3
    ID3V2=id3v2
    @@ -1773,6 +1785,7 @@
    SPEEXENCOPTS=
    # mpc
    MPPENCOPTS=
    +M4AENCOPTS=
    ID3OPTS=
    ID3V2OPTS=
    @@ -2039,6 +2052,7 @@
    spx) [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX=speexenc ;;
    mpc) [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX=mppenc ;;
    + m4a) [ "$M4AENCODERSYNTAX" = "default" ] && M4AENCODERSYNTAX=faac ;;
    *) echo "abcde error: Invalid OUTPUTTYPE defined" >&2
    exit 1
    @@ -2100,6 +2114,12 @@
    MPPENCODER="$MPPENC"
    esac
    +case "$M4AENCODERSYNTAX" in
    + faac)
    + M4AENCODEROPTS="$M4AENCOPTS"
    + M4AENCODER="$M4AENC"
    + ;;
    +esac
    # and which tagger
    @@ -2144,7 +2164,7 @@
    ${NEEDCOMMENTER+$VORBISCOMMENT} ${NEEDMETAFLAC+$METAFLAC}
    ${NEEDNORMALIZER+$NORMALIZER} ${NEEDEJECT+$EJECT}
    ${NEEDDISKTOOL+disktool} ${NEEDCDSPEED+$CDSPEED}
    - ${NEEDVORBISGAIN+$VORBISGAIN}
    + ${NEEDVORBISGAIN+$VORBISGAIN} $M4AENCODER
    do
    # Cut off the command-line options we just added in
    X=$(echo $X | cut -d' ' -f2)
    @@ -2207,37 +2227,6 @@
    esac
    fi
    -if [ "$STRIPDATATRACKS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
    - case "$CDROMREADERSYNTAX" in
    - cdparanoia|debug)
    - # cdparanoia can query the CD, so let's process the TRACKQUEUE list with the results.
    - if checkstatus cdparanoia-audio-tracks; then
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-audio-tracks )
    - else
    - ## FIXME ##
    - vecho "Querying the CD to obtain a list of valid audio tracks..."
    - $CDROMREADER -Q > $ABCDETEMPDIR/cdparanoia-query 2>&1
    - # Obtain a list of valid audio tracks from the results of the query
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-query | egrep '^[[:space:]]+[[:digit:]]' | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    - fi
    - # Obtain the track padding value from the before-processing list and pad the CD list
    - TRACKNUMPADDING=$( echo $TRACKQUEUE | awk '{print $1}' | tr -d " n" | wc -c )
    - for TRACK in $CDTRACKQUEUE ; do
    - TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
    - PADNEWTRACKQUEUE=$(echo $PADNEWTRACKQUEUE $TRACKNUM)
    - done
    - CDTRACKQUEUE=$PADNEWTRACKQUEUE
    - # Now, compare if the values in the list are valid tracks in the CD
    - for TRACK in $TRACKQUEUE; do
    - if echo $CDTRACKQUEUE | grep $TRACK >/dev/null ; then
    - NEWTRACKQUEUE="$NEWTRACKQUEUE $TRACK"
    - fi
    - done
    - TRACKQUEUE="$NEWTRACKQUEUE"
    - esac
    -fi
    # Create playlist if needed (backgroundable) and start reading in tracks
    @@ -2446,7 +2435,7 @@
    # TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${UTRACKNUM} + 0))
    TRACKNUM=$UTRACKNUM
    CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2 -d= | tr -d [:cntrl:] | sed 's/ +$//')
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d [:cntrl:] | sed 's/ +$//')
    splitvarious
    fi
    fi
    the patches can also be found here http://www2.rudefyet.com:8080/patch
    please post any other issues you have

    not yet, i'm going to work all the kinks out before i submit it
    as of right now I noticed some major typos, on my part, that cause it to fail...i'm working on that right now

  • Not able to find out the OCT 2012 CPU patch for 11.2.0.3

    Hi
    I am trying to download the OCT 2012 CPU patch for the 11.2.0.3 to install on Linux x86-64 which is having OS of RHEL 5.7. I am able to get the OCT 2012 PSU patch which include the CPU patch too.
    Database 11.2.0.3.4 PSU Patch 14275605, or
    GI 11.2.0.3.4 PSU Patch 14275572, or
    But I just require only the CPU patch. Can anyone provide me the patch number or some link where I can download the Oracle CPU patch OCT 2012

    The given link take to the window where CPU patch for all the quarter available.
    The Critical Patch Updates released to date are listed in the following table.
    Critical Patch Update Latest Version/Date
    Critical Patch Update - October 2012 Rev 1, 16 October 2012
    Critical Patch Update - July 2012 Rev 1, 17 July 2012
    Critical Patch Update - April 2012 Rev 2, 19 July 2012
    If I click on Critical Patch Update - October 2012 its takes to the window for selectin the database version (11.2.0.3). From there it goes to the Patch Set Update and Critical Patch Update October 2012 Availability Document [ID 1477727.1] which I had already checked.
    There for the database products it shows the below option.
    Table 9 Patch Availability for Oracle Database 11.2.0.3
    +*<moderator edit - deleted MOS Doc content - pl do NOT post such content - it is a violation of your Support agreement>*+
    It doesnt have the sepreate CPU patch. The below CPU patch is for the OC4J. I had a check.
    Thanks
    SHIYAS M

  • Patch for modbin6-1.00.38.exe is out.. "2MBIOS.BIN can't open!" Solved.

    Hi mates,
    ive decide to make a patch for modbin6 1.00.38 to improve stability and minise risk of modding the BIOS. for users which is reading this post if never heard about MODBIN better avoid reading below. its nice program for basic BIOS mod, simple to use, but very danger in the same time couse mess with BIOS and inproperty using may couse disaster. im not gona advert or to invite persons to use it. just wana make this program to be used normally to bring stability and minise risk of making corrupted BIOSes.. for persons which is already using it and have experience with him or with person Enthu which is wana try it and they dont worry if mobo may caouse for trash. there is 2 reasons to making this patch.
       1. couse sometimes im using it there is features on it wchich gives basic stuffs, unlocking hidden features locked by manifacturer(sometimes really usefull especially for DIMM Vcore..). so there is a nasty bug on it which gona explain later. most of persons who is using MODBIN know about it. so that patch will spend me alot of time and minimise risk of mistake during avoiding bug couse operation need several procedure and automatised will risk free and much fastern.
       2. to bring ability for most stable operations to persons which is already using it when need.
    but lets talk about the patch. everyone know that nasty issue with MODBIN(made it by Borg N1,part from his collection). bug is program wont safe BIOS file  and quiting with Abnormal program termination.... gives this one message: !!!File
    2MBIOS.BIN can't open!Thanks for using ModBin6 1.00.38  how nice ...
    here is Borg N1 advices:
    Quote from: Borg Number One on 16-July-05, 05:24:51
    Hi.
    It is a kind of sad fact that many users just know how to use the mouse and keyboard. 
    Well, you have to configure your config.sys (Win9x/ME) or config.nt to run MODBIN6
    (e.g. MODBIN6 2.01.01 (06/25))
    in Windows prompt/console without problems.
    The " FILES " & " BUFFERS " values are the important values.
    http://www.xtremesystems.org/forums/showthread.php?t=45538
    http://www.xtremesystems.org/forums/showthread.php?t=63210&highlight=config.nt
    +++ BNOBTC & BNOBLG +++
    http://bnobtc.pix-art.com
    Borg advices is good but unfortuanly doesnt fix that bug... seems author dont have much idea why this is happend...error is constant ... Pure DOS also can't help... i wana add few more tips to the Borg's ones to improve stability when using  modbin, after that will talking about patch.
    TIP: navigate to this folder and open config.nt file:  %SystemRoot%\system32\config.nt
    at the end of file add this ones:
    dos=high, umb
    device=%SystemRoot%\system32\himem.sys /CPUCLOCK:ON /HMAMIN=64
    FILES=40
    BUFFERS=40
    STACKS=9,256            -----> Preserving 039A-045Eh   3,152   Sys  039Ah Stacks, 0552h DOSX
    Also MODBIN doesnt work well with long filenames.... etc "document and settings\my profile\desktp\modblabla" if not gona work property and there is a big chance of failure will load but after saving will have problems to update BIOS "core"(original.tmp) so always use 8.3 syntax standart .... best way from root directory make subdir whcih name to no NOT exceed 8 symbols... etc C:\123,C:\MYFLASH,C:\ROFL
    without TIPs it is really big gamble with BIOS....
    Aslo that will prevent Stack Overflow error when BIOS is loading....
    NOTE: To activate changes just quit from any DOS interpretators like(4nt,command.com,cmd and so on). and re-run it. Reboot OS is not requred.
    here how to do:
    Also when executing MODBIN put below executable file this ones without quotes "loadfix forcedos modbin6-1.00.38.exe"
    and ofcourse nasty error is waiting us... "2MBIOS.BIN can't open!Thanks for using ModBin6 1.00.38"
    Patch which iv maked gona RIP this error forever.
    Download: modbin6_1.00.38
    Download: MODBINPATCH
    What patch need? and how to use it? I named patch "Dynamic Patch for modbin" Couse isnt make modification on MODBIN program but momory his parent process when is loaded into memory.
    tips suggested below is recommended but not nesecery for the patch.. patch need MODBIN and your BIOS file (modbin6-1.00.38.exe and mybios.bin) to be copied to systemroot drive(usually C) in folder MSI etc put modbin6-1.00.38.exe and mybios.bin(BIOS which you gona mod) to C:\MSI
    Patch make checking if folder doesnt match will not continue....
    How to use it..... Copy modbin6-1.00.38.exe and mybios.bin to C:\MSI, then from command prompt navigate to C:\MSI and execute "loadfix forcedos modbin6-1.00.38.exe" after that load your BIOS file... when loading is complete navigate to your patch folder and execute patchMSI.exe.... takes 10 seconds to complete after that make active "white" window and enter "Q" then hit ENTER key both windows will be closed, after that return to your modbin window, make what you gona make and save BIOS file like normal procedure... Method is founded and tested by me from years below never let me down(never brings corrupted BIOS), but just today ive made patch couse was too lazy... also Borg's MODBIN can work with most of all chipsets which is using AWARD Modular based... NOTE: K9 isnt tested. the most of here you can view how exacly to do it and differents with and without patch:
    here is one more think some time maybe usefull from me:D
    Here is 1st little short trick:(no analog anywhere, like patch only here can be found if accepted):
    How to reset BIOS if you have nothink? Examples if you are administrator/PC-support or any and must fix same PC but the BIOS has an password?! And you dont have permision to open Case to reset CMOS(couse PC has an sticker with Warantly (and removing that sticker couse lost pc warrantly) You need access to BIOS to re-check,configure somethink there but its password protected. anyway there could be many situation. what we need? nothink special just bootable DOS(or analog- PC-DOS or whatever,doesnt matter where will boot(cd,flash disk,hdd)), no extended commands.[io.sys(jo.sys),command.com] - files requred to boot Here we go:
    boot from desired device.when you see command prompt etc.: "A:\,C:\"
    We will write a program without any languich..directly in PC code..(without compilator), direct in machine code.
    write this:
    copy con ffs.com|ffs          *comment None
    176.230p144144230q195     *comment Hold "ALT" and write number
    ^Z                                  *comment "CTRL+Z" then hit "Enter"
    Explain:
    copy(internal command)
    con (command line switch)
    ^Z (CTRL+Z)
    NOTE: Numbers in second line must be written with holdon "ALT" key and specified numbers.(ASCI Code). Non numbers symbols is normal keyboard selection. on input display should look like:
    copy con ffs.com|ffs                   
    ░.цpРРцq├                                 
    ^Z                                           
    Program is 9 bytes long... (simple but high effective)
    Thats it.Reboot Computer... password is gone. CMOS is reseted to default values. Tested on Award 4.0,6.0, AMI BIOS. Break all..
    and finaly again:
    **To All readers of this thread: Please note that this thread is with regards to Self-Modding BIOS and are of NO Official Testings from MSI. MSI will not be responsible for ANY Damage caused from requesting these self modded BIOSes! Please mind that you'll ONLY request and flash AT YOUR OWN RISK!!!** also MODBIN Author(Borg N1) and me is dont are NOT  responsible for ANY Damage caused by MODBIN or Add On Patch. (i didnt think there is risk exit must must said that warning....couse playing with BIOS is always risky). Happy Tweaking. 

    Well, I was wondering if the system not allowing the tty to change ownership -- but root also has the problem.
    You might try checking which shell is set for your users in /etc/passwd, and then check that the shell really exists at the specified path, and that it is executable.  You might also check that the home directory for you users (also specified in /etc/passwd) is mounted and your user has the appropriate rights to that directory.
    Other than that, I am running out of altitude, airspeed and ideas all at the same time.  There was one thing in your trace I did not understand.  Why is your system looking to the floppy drive?  I wonder if that is contributing to the problem.

  • Can someonoe please assist me in my Adobe Photoshop CS6 Extended.  I keep getting a 'Couldn't Complete Your Request because Dynamic Link is not Available?" Is there a way of getting a software patch for this problem?  I thought you didn't need extra softw

    Can someonee please assist me in my Adobe Photoshop CS6 Extended.  I keep getting a 'Couldn't Complete Your Request because Dynamic Link is not Available?" Is there a way of getting a software patch for this problem?  I thought you didn't need extra software.  My software other than that problem works fine.

    Couldn't complete what request?   Way more information please.
    What operating system?

  • Patch for Dreamweaver CS5 or 6 from Poodle Vulnerability

    GoDaddy ran a security patch for Poodle and now Dreamweaver can't connect. FTP over SSL/TLS explicit encryption is used. Is there a patch from Adobe for Dreamweaver?

    The perpetual license of CS6 is essentially Adobe's response to those folks who absolutely refuse to switch to the Creative Cloud Subscription plans. It's actually 3 versions (4 if you count Cloud CS6) removed from "current". Even though it's still available for purchase, it hasn't been receiving any updates and is getting further and further behind DWCC as time goes by.
    Adobe has a phone number, you just need to dig...
    Contact Customer Care
    Click Dreamweaver > How-to's and troubleshooting > Troubleshoot > click the big blue Still Need Help button
    That will give you Chat (if available) Phone (region specific) and Forums links

  • Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    hello,
    After installing the Adobe reader, I got the following error message:
    Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    For AA XI, you only need the 11.0.09 patch. Download from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows (Use "MAC" if a MAC is used).

  • I'm using my iPad with iOS v 6.1.3- is there a security patch for the SSL/TLS vulnerability for this, or do I have to go to 7.0.6?

    I'm using my iPad with iOS 6.1.3. Is there a security patch for this version, or do I have to update to iOS 7.0.6?

    There is an update for iOS 6... v6.1.6. But it is only available to iPhone 3GS and iPod touch 4th gen users. http://support.apple.com/kb/HT6146?viewlocale=en_US&locale=en_US
    For iPad, the highest supported os for iOS 6 is v6.1.3. If you want to get the security patch, you'll have to go to iOS 7.0.6.
    Hope this answers your question.
    ~Joe

  • Problem in applying the  6078836 OS Library Patch for Oracle HTTP Server

    Hi ,
    While installing Oracle ebusiness suite R12on a RHEL5 linux box (2.6.32-300.10.1.el5uek)
    After running the installation, the post-installation System checks revealed that the HTTP, Virtual Directory, Login Page, Help Page & JSP services were failing. All the errors have the same error code RW-50015. ! Require Installing an OS Library patch for HTTP server according to Note ID
    Oracle Applications Installation and Upgrade Notes Release 12 (12.0.4) for Linux (32-bit) [ID 402310.1]     
    I am unable to stop the Database after stopping the Apps tier services.  while trying to login into sqlplus hitting up this Error ! Please Advise
    sqlplus: error while loading shared libraries: /oracle/VIS/db/tech_st/11.1.0/lib/libnnz11.so: cannot restore segment prot after reloc: Permission denied
    [Oracle@OracleLinuxServer 11.1.0]$ cd
    sqlplus / as sysdba
    sqlplus: error while loading shared libraries: /oracle/VIS/db/tech_st/11.1.0/lib/libnnz11.so: cannot restore segment prot after reloc: Permission denied
    Following is the Output of some commands which may help in understanding the Issue !
    *[Oracle@OracleLinuxServer ~]$ cd /oracle/VIS/db/tech_st/11.1.0*
    *[Oracle@OracleLinuxServer 11.1.0]$ find / -name libclntsh\* -ls 2>/dev/null*
    *142017047 13416 -rwxr-xr-x 1 applmgr oinstall 13712482 Dec 19 01:27 /oracle/VIS/apps/tech_st/10.1.3/lib/libclntsh.so.10.1*
    *142016603 0 lrwxrwxrwx 1 applmgr oinstall 17 Dec 19 01:27 /oracle/VIS/apps/tech_st/10.1.3/lib/libclntsh.so -> libclntsh.so.10.1*
    *142443526 13400 -rwxr-xr-x 1 applmgr oinstall 13696149 Dec 19 01:28 /oracle/VIS/apps/tech_st/10.1.2/lib/libclntsh.so.10.1*
    *142443190 0 lrwxrwxrwx 1 applmgr oinstall 17 Dec 19 01:28 /oracle/VIS/apps/tech_st/10.1.2/lib/libclntsh.so -> libclntsh.so.10.1*
    *89850399 36348 -rwxrwx--- 1 Oracle oinstall 37174788 Sep 12 2008 /oracle/VIS/db/tech_st/11.1.0/inventory/prereqs/bin/linux/libclntsh.so.11.1*
    *89719502 0 lrwxrwxrwx 1 Oracle oinstall 17 Dec 18 23:33 /oracle/VIS/db/tech_st/11.1.0/lib/libclntsh.so -> libclntsh.so.11.1*
    *89719501 36276 -rwxr-xr-x 1 Oracle oinstall 37100033 Dec 18 23:33 /oracle/VIS/db/tech_st/11.1.0/lib/libclntsh.so.11.1*
    id
    uid=2000(Oracle) gid=2000(oinstall) groups=2000(oinstall) context=root:system_r:unconfined_t:SystemLow-SystemHigh
    *[Oracle@OracleLinuxServer 11.1.0]$ env|egrep 'ORA|PATH' | sort*
    LD_LIBRARY_PATH=/oracle/VIS/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/oracle/VIS/db/tech_st/11.1.0/lib:/usr/dt/lib:/oracle/VIS/db/tech_st/11.1.0/ctx/lib
    LIBPATH=/oracle/VIS/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/oracle/VIS/db/tech_st/11.1.0/lib:/usr/dt/lib:/oracle/VIS/db/tech_st/11.1.0/ctx/lib
    ORACLE_HOME=/oracle/VIS/db/tech_st/11.1.0
    ORACLE_SID=VIS
    ORA_NLS10=/oracle/VIS/db/tech_st/11.1.0/nls/data/9idata
    ORA_TZFILE=/oracle/VIS/db/tech_st/11.1.0/oracore/zoneinfo/timezlrg.dat
    PATH=/oracle/VIS/db/tech_st/11.1.0/perl/bin:/oracle/VIS/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/oracle/VIS/db/tech_st/11.1.0/appsutil/jre/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/Oracle/bin:.
    SHLIB_PATH=/oracle/VIS/db/tech_st/11.1.0/lib:/usr/lib:/oracle/VIS/db/tech_st/11.1.0/ctx/lib

    Also I 've checked the /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/ opatch_history.txt
    Find that the Patch version is same for every Patch: Please suggest..... Thanks!
    Following is the all contents of the file:
    *[Oracle@OracleLinuxServer opatch]$ vi opatch_history.txt*
    Command     : apply -verbose -silent /nfs/bld/d26/PRDXBLD9/apps/apps_st/comn/autobuild/patch/patch/7639602/7639602
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-25_23-17-01PM.log
    Date & Time : Wed Mar 25 23:18:41 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d22/AB/autobuild/passwd
    Command     : apply -verbose -silent /nfs/bld/d26/PRDXBLD9/apps/apps_st/comn/autobuild/patch/patch/7627743/7627743
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-25_23-18-41PM.log
    Date & Time : Thu Mar 26 01:23:19 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    Command     : lsinventory
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-26_01-23-19AM.log
    Date & Time : Tue Mar 31 03:13:12 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d22/AB/autobuild/passwd
    Command     : lsinventory -invPtrLoc /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/oraInst.loc
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-31_03-13-12AM.log
    Date & Time : Tue Mar 31 03:13:18 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d22/AB/autobuild/passwd
    Command     : lsinventory -invPtrLoc /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/oraInst.loc
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-31_03-13-18AM.log
    Date & Time : Wed Dec 19 19:59:52 GMT+05:30 2012
    Oracle Home : /oracle/VIS/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /oracle/VIS/db/tech_st/11.1.0/OPatch
    Command     : lsinventory
    Log File    : /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2012-12-19_19-59-52PM.log
    Date & Time : Thu Dec 20 00:03:59 GMT+05:30 2012
    Oracle Home : /oracle/VIS/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /home/Oracle/6078836
    Command     : apply
    Log File    : /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2012-12-20_00-03-59AM.log
    Date & Time : Thu Dec 20 01:28:42 GMT+05:30 2012
    Oracle Home : /oracle/VIS/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /home/Oracle
    Command     : lsinventory -detail
    Log File    : /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2012-12-20_01-28-42AM.log

  • Deskjet 710/720/810/820/1000 Series printers - Patch for 64 bit Vista and Windows 7

    There is an issue with the 64 bit Vista, Windows 7 and Windows 8 or 8.1 drivers that causes the spooler to crash with the following HP Deskjet printers:
    Deskjet 710    
    Deskjet 712 
    Deskjet 720 
    Deskjet 722 
    Deskjet 810 
    Deskjet 812 
    Deskjet 820 
    Deskjet 822 
    Deskjet 1000 
    The attached file contains a patch for this issue for Vista and Windows 7.
    [The patch does not currently work for Windows 8 or 8.1 x64 systems.  There are some efforts to address this, if a solution is developed it will be posted here.  {Edit - I have not made any progress in getting the patch to work in Windows 8 x64.}]  
    First make sure the driver for the printer is installed.  If the driver has not been installed go to Start, Devices and Printers, Add a Printer, Local Printer, choose the proper port (for USB-Parallel converters the port will likely be USB001: or perhaps USB002: ), Next, click Windows Update then choose HP for the manufacturer and select the appropriate printer.   
    Apply the patch as follows: Log into the computer with an administrative account.  Download the patch by clicking on this link or on the paper clip at the end of this post.  Save the patch file to your computer, then unzip it.  Next copy the three DLL files to the following directory:  %windir%\system32\spool\drivers\x64\3   
    Note that %windir% is a system variable that points to the location of the Windows directory. For most systems this will be C:\Windows.  You can click Start, Computer and type %windir%\system32\spool\drivers\x64\3 in the address bar and it will find the right place.
    This can be done from a DOS prompt if DOS is opened with the "run as administrator" command, or from explorer with a copy and paste.  Depending on your UAC settings you may need to provide confirmation.  Also allow the current files to be overwritten if prompted.
    This patch is not required and should not applied to a 32 bit version of Vista or Windows 7.
    Thanks to extraordinary Microsoft engineer Alan Morris for guidance for the patch.
    Update - the following are more detailed installation instructions:
    Download the patch from here. Now click on the file and open it, then extract the patch to some directory that is easy to find. (I use c:\temp. If this directory does not exist you can create it as follows: open the administrative DOS prompt by clicking on Start, All Programs, Accessories, then right click on CMD.EXE and select Run as Administrator. Click in the DOS box then type the following:
    MD c:\temp
    CD \temp
    Now extract the patch files into the c:\temp directory (extract all, chose c:\temp as the destination).
    [Update - Windows security settings may prevent these files from being used, please open Computer, type c:\temp in the address bar and then right click on each of the dll files and select Properties.  If there is a message in Properties indicating the file was downloaded from the internet and may be blocked then unblock the file before proceeding.]
    Next click back in the administrative DOS prompt and type the following: (stuff in green is comments, do not type them...)
    DIR *.dll (this is just to verify the files are there, it should list hpvdb720.dll, hpvdb820.dll and hpwm5db1.dll and perhaps others.)
    Net stop spooler (makes sure the files are not in use.)
    Copy  hpvdb720.dll  C:\windows\system32\spool\drivers\x64\3 (this is for the Deskjet 710/712/720/722)
    Copy  hpvdb820.dll  c:\windows\system32\spool\drivers\x64\3 (this covers the Deskjet 820 and 822)
    Copy  hpwm5db1.dll  c:\windows\system32\spool\drivers\x64\3(this covers the Deskjet 1000)
    Net Start Spooler
    Exit
    [Edit - note that these DLL files will already be in the directory.  You will get a warning asking if it is OK to overwrite the files, say "yes".]
    At this point the patch is installed and ready to print.
    Note that the printers here do not support USB connections, they have only parallel ports. [Edit - if your printer does have a parallel port use it, this will likely be much less problematic than using a USB-Parallel converter.]   If you use a USB-parallel converter make sure it is supported in your operating system.  The following posts are flagged with USB-parallel cables that are reported to work in Windows 7.   A driver is required for the USB-parallel converter in addition to the driver for the printer.  For supported converters this is typically supplied automatically in Windows 7.  Note:  the proper port to select for the USB-Parallel converters is often USB001:.  I have heard of some cases where the port was USB002: or LPT3: as well.  If the port you are using does not succeed (after applying the patch) try changing the port by going to Start, Devices and Printers, right click on your printer and select Printer Properties, then click on the Ports tab.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V
    This question was solved.
    View Solution.
    Attachments:
    DJ_Patch.zip ‏34 KB

    Just want to send a thanks.  Purchased a new HP computer with 64 bit Windows 7 and haven't been able to get my 722c to work. This patch worked like a charm!

  • Central Output Server View Manager on Windows 7, need patch for jfPreview.exe

    Where can I obtain the latest version of JfPreView.exe?
    According to the following webpage:
    http://helpx.adobe.com/legacy/kb/central-central-pro-output-server-1.html
    Adobe Central and Central Pro Output Server 5.7, Windows support extended to Windows 7 (32/64 bit) and Windows Server 2008 R2 (64 bit)
    Issue 2 on this page is the problem that I am having:
    Issue 2
    View manager is a client application for Central Pro. When it is installed on Windows 7 (32/64 bit) and Windows Server 2008 (64 bit), it doesn't work properly.
    For Windows 7 and Windows Server 2008R2, IPv6 is installed and enabled by default. On a machine running the Central Preview Agent with IPv4 protocol, the Preview Agent fails to transfer the files. The Preview Agent also reports the following error in the jfserver.log.
    “Fails. Exception:  [1005] Connect to <host> failed: 10060”
    Solution
    A patch for JfPreView.exe.exe is available from Adobe enterprise support to address this issue.
    I need this patch.
    Thank you

    I have loaded KB2937636 to the server2012 wsus/sup but that still did not fix the communication issue.  I have since removed the KB2937636 from the 2012 server, because when the KB2937636 is installed on the sup server once the 7.6.7600.256 computers
    communicate with the server the WUA 7.6.7600.320 gets installed on the clients and then they stop communicating.  Very Frustrating!
    Please any help would be greatly appreciated.  
    Thanks
    ~ZbWinMan
    I have attached my WindowsUpdate.log file.  When I used CMTrace.exe you can clearly see that the computer talks fine at the beginning, then I installed WUA 7.6.7600.320 and All Communication breaks, then I uninstall to get back to 7.6.7600.256 and communication
    works again.
    If I uninstall 7.6.7600.320 then the computer communicates back to the SUP server.
    so you're using SSL? (port 8531)
    weird things might happen when in SSL if hastily configured, causing this weird error, like this for example:
    http://social.technet.microsoft.com/Forums/en-US/5d6ae350-9714-471f-aa67-375e657caa11/windows-update-cant-connect-to-wsus-server-which-happens-to-be-itself-after-switch-to-ssl?forum=winserverwsus
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • CPU Patch for SOA BPEL -10.1.3.5 and B2B -10.1.2.0.4

    We are in DOD -GOVT US marine corps.. WE are on 10.1.3.3.1 .. There is no CPU Patches for 10.1.3.3.1 nor
    for 10.1.2.03-B2B
    open issues/questions:
    Open Issues:
    1. What is Oracle's recommendation about upgrading 10.1.3.5 vs 10.1.3.4 (CPU Patch support length). Also CPU Patch support policy for BAM 10.1.3.3.1 and B2B 10.1.2.3.
    2. Any MLRs to apply after upgrading SOA/BPEL/WSM/BAM/B2B 10.1.3.5 ?
    3. Interoperability of OWSM 10.1.3.4, BAM 10.1.3.3.1, B2B 10.1.2.3 and SOA/BPEL 10.1.3.5. Can they co-exist or must they(one or more) be in same release level?
    Thanks & Regards
    Sri

    Hi , I am facing the same issue.
    were you able to resolve it.
    please let me know if you were.
    Many Thanks.

  • OAS 10.1.3.5 on Windows 64 bit, NO CPU patch for April?

    After reading the CPU Advisory for April CPU 2011, it appears that for OAS 10.1.3.5 on Windows 64 bit, that there is NO CPU patch for April? It only shows a patch for Windows 32 bit. They do not mean that the 32 bit patch should also be applied on 64 bit Windows o/s having OAS 10.1.3.5? I just want to make sure I skip this CPU since I have 64 bit o/s.
    I ask because the list of bugs fixed in the README for the 32 bit patch list 32 bit bug fixes , and then 64 bit bug fixes.
    Edited by: user12152237 on May 9, 2011 6:17 PM

    Somu, please check a topic 3 lines below. No, there's not a separate 64-bit installer, but there's a work-around albeit not supported by oracle.

  • Where can I find a patch for Indesign and Acrobat cs6 for mac retina display?

    I have found the patch for screen resolution for photoshop, but the illustrator patch says it is not compatible and I cannot locate one for in-design (my primary program) or Acrobat. There must be a patch, right? Or else whats the point of it?

    The patch is upgrading to InDesign CC, which requires an Adobe Creative Cloud subscription. Sorry.
    There is no Acrobat CS6. The last version is Acrobat XI which was created too late to include support for Retina Display. It will probably be in the next version of Acrobat.
    Creating "patches" for Retina Display are much more engineering intensive than you would expect. In the case of InDesign, it had to be completed in the context of moving to becoming a 64 bit application and moving application development from Carbon to Cocoa (a required move on the Mac accomplished finally in InDesign CC).

  • Will Adobe develop a patch for pixelated CS6 workspace on retina display?

    Will Adobe develop a patch for pixelated CS6 workspace on retina display?

    You can believe what you like, but it won't change the truth.
    CS6 is a Cocoa application, and Retina support requires Carbon (or the other way around, I'm a Windows user). It's not a matter of adding a few lines of code to make the change, it required rewriting the entire program from the ground up.

Maybe you are looking for

  • New iPod Classic 2.0.2 and iTunes 8.2.1 (6)

    Just bought a new iPod Classic 160 GB with the 2.0.2 firmware (or software?). I'm using iTunes 8.2.1 (6) after reverting back from iTunes 9 because I couldn't sync my mp3 player with iTunes 9 - they were incompatible. When I attach my new iPod to my

  • Consuming WebService SAP (J2EE)

    I´m working with Delphi 2007 for Win32 Enterprise and I´m using Delphi to make a client to consuming one SAP (J2EE) WebService, but, there is a problem with my Delphi´s client. The SAP show one error: 001B784233A4004A000000030000195400043C12D73325C4

  • Problem opening CC and downloading Photoshop

    I just got a brand new iMac, and installed the Creative Cloud. At the first go it opened a window at the top right corner but then didn't do anything else (page was blank). Since then I've been trying everything from uninstalling, to installing again

  • Print /add logo in reports 10g which is running in linux

    hi i want to print /add logo in reports 10g which is running in linux environment and want to change logo programmatically. how can i achieve this reports version is Report Builder 10.1.2.0.2

  • Thin black line around mask when placed in Final Cut Pro

    After upgrading all to the latest version of the Pro suite, I'm getting a thin--pixel-wide-black line around my Motion masks when placed back in Final cut pro. Is anyone else seeing this?