<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error loading Kernel in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615879#M37538</link>
    <description>Hi Manuel,&lt;BR /&gt;&lt;BR /&gt;There are links I could send you to...but...&lt;BR /&gt;As Jim Turner (hey buddy) mentioned this is a problem patch; and a known issue with HP.  I myself (yes I hate to admit it..) hosed a small system with this little stinker.&lt;BR /&gt;May I suggest, since HP is well aware of this issue, that you place a call to HP Tech Support and they will probably have you run a patch list and send to them to evaluate.  They can then advise you which patches you need to install in one depot to run and get your kernel back in line. [For me, my box was so hosed it took just over 30 patches in one depot...I hear it's around 6 or 7 patches now....but it was fixed and the kernel built]&lt;BR /&gt;&lt;BR /&gt;Hope this helps...&lt;BR /&gt;Rit</description>
    <pubDate>Fri, 16 Nov 2001 20:26:58 GMT</pubDate>
    <dc:creator>Rita C Workman</dc:creator>
    <dc:date>2001-11-16T20:26:58Z</dc:date>
    <item>
      <title>Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615871#M37530</link>
      <description>Hi:&lt;BR /&gt;  During the installation of patch " PHKL_18543 " in the stage to load the " Kernel " it has given the following error me, " unsatisfied " pwrite " in cases out usr/conf/lib/libhp_ux.a[scall_stubs.oj ] ". Thanks</description>
      <pubDate>Fri, 16 Nov 2001 19:58:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615871#M37530</guid>
      <dc:creator>Manuel Guerrero</dc:creator>
      <dc:date>2001-11-16T19:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615872#M37531</link>
      <description>PROBLEM&lt;BR /&gt;An attempt to generate a new kernel resulted in some "unsatisfied symbol"&lt;BR /&gt;error messages.  The symbols were:&lt;BR /&gt;&lt;BR /&gt;     o  pwrite&lt;BR /&gt;     o  pread&lt;BR /&gt;     o  lock_claim&lt;BR /&gt;     o  mlock_valid_args&lt;BR /&gt;     o  lock_disown&lt;BR /&gt;&lt;BR /&gt;How can this problem be resolved?&lt;BR /&gt;&lt;BR /&gt;CONFIGURATION&lt;BR /&gt;Operating System - HP-UX&lt;BR /&gt;Subsystem - System Administration&lt;BR /&gt;RESOLUTION&lt;BR /&gt;In this instance, the first two symbols - pwrite and pread - were&lt;BR /&gt;resolved by reloading patch:  PHKL_22589&lt;BR /&gt;&lt;BR /&gt;     Note:  If patch&lt;BR /&gt;&lt;BR /&gt;            PHKL_22589&lt;BR /&gt;&lt;BR /&gt;            has been installed, then&lt;BR /&gt;&lt;BR /&gt;            PHKL_18543&lt;BR /&gt;&lt;BR /&gt;            cannot be reloaded afterwards.  Doing so will result in a&lt;BR /&gt;            kernel gen failing with errors about the two unsatisfied&lt;BR /&gt;            symbols referenced above.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The other symbols were found in other objects:&lt;BR /&gt;&lt;BR /&gt;     o  lock_claim&lt;BR /&gt;&lt;BR /&gt;        This symbol was found in the lv_hp.o object in the liblvm.a&lt;BR /&gt;        library.  That object is changed by patch:&lt;BR /&gt;        PHKL_23127&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;     o  mlock_valid_args&lt;BR /&gt;&lt;BR /&gt;        This symbol was found in vm_clic.o in /usr/conf/lib/libhp-ux.a.&lt;BR /&gt;        PHKL_23183 changed this object.&lt;BR /&gt;&lt;BR /&gt;     o  lock_disown&lt;BR /&gt;&lt;BR /&gt;        Same as "lock_claim" above.&lt;BR /&gt;&lt;BR /&gt;Reloading these patches, and insuring that all the dependencies were&lt;BR /&gt;loaded as well, resolved the problem.&lt;BR /&gt;&lt;BR /&gt;Some of the steps used to find out the location of the above symbols were:&lt;BR /&gt;&lt;BR /&gt;     1.  Change directory to the directory that contains the libraries&lt;BR /&gt;         used to generate a kernel:&lt;BR /&gt;&lt;BR /&gt;         # cd /usr/conf/lib&lt;BR /&gt;&lt;BR /&gt;     2.  Use nm(1) to check the libraries for the symbol:&lt;BR /&gt;&lt;BR /&gt;         # nm *.a | grep lock_claim&lt;BR /&gt;&lt;BR /&gt;     3.  If the symbol is found, then use nm(1) to find exactly which&lt;BR /&gt;         library contains the symbol.  After some trial and error,&lt;BR /&gt;         this symbol is found in the liblvm.a library.&lt;BR /&gt;&lt;BR /&gt;         # nm liblvm.a | grep lock_claim&lt;BR /&gt;         # nm liblvm.a | grep lock_disown&lt;BR /&gt;&lt;BR /&gt;     4.  Next, use nm(1) to look at the library and find which object&lt;BR /&gt;         in that library defines that symbol.&lt;BR /&gt;&lt;BR /&gt;         # nm liblvm.a | pg&lt;BR /&gt;&lt;BR /&gt;         Then search for lock_claim and lock_disown.  It found them in&lt;BR /&gt;         the lv_hp.o object.&lt;BR /&gt;&lt;BR /&gt;     5.  Next, pull the object from the library using ar(1);&lt;BR /&gt;&lt;BR /&gt;         # ar x liblvm.a lv_hp.o&lt;BR /&gt;&lt;BR /&gt;         NOTE:  This will not change the library.  This will put the&lt;BR /&gt;                lv_hp.o, or the object that was specified with the above&lt;BR /&gt;                ar command - into the current directory.&lt;BR /&gt;&lt;BR /&gt;     6.  Use what(1) to get information about the object.  If a patch&lt;BR /&gt;         has changed that object, then, usually, the what(1) command&lt;BR /&gt;         will report that:&lt;BR /&gt;&lt;BR /&gt;         # what lv_hp.o&lt;BR /&gt;&lt;BR /&gt;         In this example, it reported that lv_hp.c was from patch&lt;BR /&gt;         PHKL_22266&lt;BR /&gt;&lt;BR /&gt;         Therefore, that patch was checked in the patch catalog and found&lt;BR /&gt;         to have been replaced by a later patch -&lt;BR /&gt;&lt;BR /&gt;         PHKL_23127&lt;BR /&gt;&lt;BR /&gt;         Reloading that patch resolved the problem with the unsatisfied&lt;BR /&gt;         symbols.&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 20:01:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615872#M37531</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-11-16T20:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615873#M37532</link>
      <description>Hi Manuel,&lt;BR /&gt;&lt;BR /&gt;Take a look at the thread below,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://itrc.hp.com/cki/bin/doc.pl/sid=0b0b83861c0db078cf/screen=ckiSearchResults?mode=id&amp;amp;searchString=KBRC00000862" target="_blank"&gt;http://itrc.hp.com/cki/bin/doc.pl/sid=0b0b83861c0db078cf/screen=ckiSearchResults?mode=id&amp;amp;searchString=KBRC00000862&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 20:05:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615873#M37532</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-11-16T20:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615874#M37533</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Did you try to re-load this patch from a patch bundle?? This is the patch from hell. I hope that this is a fresh installation of the system. If not you may have to break out your ignite tape(s)&lt;BR /&gt;&lt;BR /&gt;-Michael</description>
      <pubDate>Fri, 16 Nov 2001 20:06:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615874#M37533</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2001-11-16T20:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615875#M37534</link>
      <description>Please don't say you were trying to *reinstall* PHKL_18543 . . .&lt;BR /&gt;&lt;BR /&gt;Never, ever, ever reinstall PHKL_18543.  It is a "Line In The Sand" (LITS) patch upon which countless subsequent kernel patches are baselined.  If that's what you did, you're really pooched.  See the attached file for instructions on recovering, and I hope you've got a few days of (formerly) free time on your hands.&lt;BR /&gt;&lt;BR /&gt;If this error isn't the result of reinstalling PHKL_18543, reinstalling patch PHKL_25475 should clear the unsatisfied pwrite symbol error.  Make sure you set swinstall options for reinstall fileset=ON, auto-select dependencies=OFF, and enforce scripts=OFF when you do the reinstall.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Jim&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 20:10:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615875#M37534</guid>
      <dc:creator>Jim Turner</dc:creator>
      <dc:date>2001-11-16T20:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615876#M37535</link>
      <description>Why is this patch so difficult?&lt;BR /&gt;I am thinking I jumped the gun by throwing that doc up ther.e &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 20:11:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615876#M37535</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-11-16T20:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615877#M37536</link>
      <description>Unsatisfied symbols pwrite/pread DocId: KBRC00003820   Updated: 8/31/00 9:55:00 AM &lt;BR /&gt;&lt;BR /&gt;PROBLEM&lt;BR /&gt;Having the following error messages while building a kernel:&lt;BR /&gt;ld:unsatisfied symbol "pwrite" in file /usr/conf/lib/libhp-ux.a [scall_stubs.o]&lt;BR /&gt;ld:unsatisfied symbol "pread" in file /usr/conf/lib/libhp-ux.a [scall_stubs.o]&lt;BR /&gt;RESOLUTION&lt;BR /&gt;This is normally caused by a resinstall of PHKL_18543 which should&lt;BR /&gt;not be done!  To solve these unsatisfied symbols you should reinstall&lt;BR /&gt;the PHKL_20349 patch:&lt;BR /&gt;&lt;BR /&gt;1) Start swinstall without any other arguments (it will get up in&lt;BR /&gt;interactive mode).&lt;BR /&gt;2) After selecting the depot containing the patch PHKL_20349, edit the&lt;BR /&gt;following options:&lt;BR /&gt;    * Reinstall fileset ... ON&lt;BR /&gt;    * Auto-select dependcies ... OFF&lt;BR /&gt;    * Enforce scripts ... OFF&lt;BR /&gt;3) Select just the patch PHKL_20349.&lt;BR /&gt;4) Run analysis phase.&lt;BR /&gt;5) Do the final install.&lt;BR /&gt;&lt;BR /&gt;NOTE:  Our labs update HP-UX patches as necessary; therefore you may not&lt;BR /&gt;find the versions of patches as noted above.&lt;BR /&gt;&lt;BR /&gt;If you do not know how to determine the latest versions for an HP-UX patch,&lt;BR /&gt;work with your local Country Response Center to obtain the proper patches.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 20:12:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615877#M37536</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-11-16T20:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615878#M37537</link>
      <description>I just saw your post there Jim .. &lt;BR /&gt;ANd you have the same steps that I found. But mine is old and PHKL_25475 is the right patch. acording to the docs. &lt;BR /&gt;&lt;BR /&gt;Richard</description>
      <pubDate>Fri, 16 Nov 2001 20:17:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615878#M37537</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-11-16T20:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error loading Kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615879#M37538</link>
      <description>Hi Manuel,&lt;BR /&gt;&lt;BR /&gt;There are links I could send you to...but...&lt;BR /&gt;As Jim Turner (hey buddy) mentioned this is a problem patch; and a known issue with HP.  I myself (yes I hate to admit it..) hosed a small system with this little stinker.&lt;BR /&gt;May I suggest, since HP is well aware of this issue, that you place a call to HP Tech Support and they will probably have you run a patch list and send to them to evaluate.  They can then advise you which patches you need to install in one depot to run and get your kernel back in line. [For me, my box was so hosed it took just over 30 patches in one depot...I hear it's around 6 or 7 patches now....but it was fixed and the kernel built]&lt;BR /&gt;&lt;BR /&gt;Hope this helps...&lt;BR /&gt;Rit</description>
      <pubDate>Fri, 16 Nov 2001 20:26:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-loading-kernel/m-p/2615879#M37538</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2001-11-16T20:26:58Z</dc:date>
    </item>
  </channel>
</rss>

