Thanks for the instructions. The problem is that the symbolic link bin-> ./usr/bin under / was modified into a /bin/ directory by some of the JDK-7 installation scripts.
I manually rebuild it back to the original symbolic link and system is recovered as a result. Can somebody help send this issue to JDK-7 team to investigate? -Johnny -----Original Message----- From: Mary Ding [mailto:[email protected]] Sent: Friday, January 25, 2013 9:12 AM To: [email protected] Cc: Johnny Liu; [email protected]; [email protected]; KATLEMAN,DAVID; Randy Crihfield Subject: Re: [pkg-discuss] [smf-discuss] Oracle smf bootadm gurus please help me Johnny: Since the error happens after pkgadd, perhaps you should try to run pkgadd which call pkginstall in -v mode to get more information on what the CAS are doing. This is what I used to do when I need to look at install/upgrade problems with pkgadd/pkgrm: cd /usr/sadm/install/bin 1. cp pkgremove pkgremove.exe 2. Replace pkgremove with the following shell script: #!/bin/ksh args=$* /usr/sadm/install/bin/pkgremove.exe -v $args 3. cp pkginstall pkginstall.exe 4. Replace pkginstall with the following shell script: #!/bin/ksh args=$* /usr/sadm/install/bin/pkginstall.exe -v $args Then you just do step #3 and it will give you more info about what pkgadd/pkginstall is doing. Maybe that will give us a clue what might be wrong. On 01/25/13 12:05 AM, [email protected] wrote: >> What I did was >> >> 1. download JDK-7 to the system. >> 2. Untar it >> 3. pkgadd -d . >> 4. select all Y no matter what. >> 5. pkgadd done. >> 6. console has FMA error (manifest-import) suddently. >> 7. then I run #svc -xv >> 8. Then I run #bootadm update-archive root@x4470a:/opt# bootadm >> update-archive >> sh: /boot/solaris/bin/extract_boot_filelist: not found >> root@x4470a:/opt# > > Which tar version was used (native or GNU tar)? > > I remember that GNU tar had issues specifically with java distributions. > > Casper > > _______________________________________________ > pkg-discuss mailing list > [email protected] > http://mail.opensolaris.org/mailman/listinfo/pkg-discuss ________________________________ This message and any attached documents contain information from QLogic Corporation or its wholly-owned subsidiaries that may be confidential. If you are not the intended recipient, you may not read, copy, distribute, or use this information. If you have received this transmission in error, please notify the sender immediately by reply e-mail and then delete this message. _______________________________________________ pkg-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/pkg-discuss
