(LDOM) The file just loaded does not appear to be executable.

Sorry if this is not the right forum - it seems to be the closest one for things about LDOMs; plese let me know if I should post somewhere else.
I have installed LDoms_Manager-1_2.zip on a T5220 Server; following the book ("Logical Domains 1.2 Administration Guide") I set up the control domain etc, then a guest domain (cranachan) - so far all appears well. I downloaded the dvd iso of Solaris 10 (sol-10-u7-ga-sparc-dvd.iso) and added it to the guest as described, started the domain and issued "boot vdisk_iso:f -v" - this seemed to work well, but there was an error that turned out to be that I had given the wrong path for the system disk.
So I started over - removed the guest domain and the disk definitions for both guest and control domain, and removed the guest; then recreated everything. This time, when I "boot vdisk_iso:f -v" I get:
The file just loaded does not appear to be executable.
Any idea what may have happened? It makes no sense to me; not unless the iso file has been corrupted, but it doesn't seem to have been modified, and I can mount it as a loop-back fs in linux.

I have the same problem with a Netra T1 system. Solaris 10 installed fine and it won't boot. It did have Solaris 8 on the system, but I put in new drives to start my Solaris 10 install.
I tried booting to single user cd-rom (ok boot cdrom -s) and ran this:
# installboot /usr/platform/SUNW,UltraAX-i2/lib/fs/ufs/bookblk /dev/rdsk/c1t0d0s1
(SUNW,UltraAX-i2 was derived from # uname -i)
It didn't help.
I also tried "setenv diag-switch? false" at the okay prompt. It didn't help
Any thoughts?

Similar Messages

  • Error The file just loaded does not appear to be executable.

    Hi there,
    I have some problems with a Sun Fire T2000. Solaris 10 was installed one year ago. The server went down and now I am trying to connect to recover the dates and make a new installation.
    Booting the server, I don't get any message. If I type #. I reach to sc> mode and from there I can get to ok prompt. From either mode, I can't get in the operating system.
    From the ok prompt I issued "show-disks" and I booted with the cdrom choosing the option from the output of "show-disks". I got the "The file just loaded does not appear to be executable."
    I searched the error and then I booted with "boot cdrom -s" and I got the "ERROR: /virtual-devices@100/console@1: Last Trap: Division by Zero".
    Please advice for a new installation.
    Thank you.

    Hi, and again thanks.
    I understood that this server runs on different levels, like with firmware OpenBoot (ok prompt) or System Controll (sc>).
    I understood the different setups can be made from ok prompt, like the problem I have now.
    I am at the ok prompt. The "printenv" showed me that I was booting from net1, which is wrong because the installation just ended. So I changed to "disk" following your indications. I checked with printenv and indeed the boot sequence was changed to boot disk.
    I issued the boot command I after the message "Boot device: disk File and args:" it looks like hanging. I am sure I can get back to sc> prompt but it looks like a loop to me: how do I get into the operating system? I looks I can switch only from ok to sc and backwards. But, after booting I'd like to enter in Solaris OS, not OpenBoot firmware or System Control...
    Thank u for the time and listening.

  • The file just loaded does not appear to be executible

    Please help!
    I have a Ultra 5 with a recently upgraded 30gig seagate IDE drive. I am trying to install Solaris 8 10/01 of which appears to install correctly, but upon reboot I get the above referenced message. I have tried installing with various disk partitioning methods. I have also tried to manually copy the kernel over from the cdrom to the / slice.
    Solaris 9 installs ok but I would rather run 8 to be able to run the pc launcher software.
    Thank you,
    David DeTinne

    Thank you for the quick reply.
    It seems the problem was the first software disk. I went back to the download page and downloaded the multiple files vs. the single file.
    Booted straight off of the Software disk 1 and now here I am, up and running.
    Thanks again!

  • After choosing my device the "add music" button does not appear.  I just downloaded ITunes 11.  Any suggestions?

    After choosing my device the "add music" button does not appear.  I just downloaded ITunes 11.  Any suggestions?

    Read the User's Guide and learn how to add content to the device.

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • When an image is inserted here using clipboard, it appears in the editor, but it does not appear in

    when an image is inserted here in forum po editor using clipboard, it appears in the editor, but it does not appear in the post. When the image is inserted from a file, it works

    Im not completely sure, why you are pointing out the very same thing I'm pointing out too. If you re-read my original post thoroughly, you will find - at its very end - the sentence "When the image is inserted from a file, it works". Since I'm not aware of the way how to insert the image from a file in a procedure other, then clicking the "camera" icon, I hold such a sentence for more then enough to point out, that the camera icon works fine for me (if you re-read my post thoroughly and pay detailed attention of my expression "using clipboard", then you shall definitely evaluate this expression as covering both ways an image can reach the cliboard, eg. Copying from a graphical editor/processor or dragging&dropping a graphical file).
    However more then this, your post does in fact NOT reply to the fact, why the WYSIWYG editor box allows the insertion of an image from clipboard, but then fails to upload it and thus it is not displayed in the post.
    For the sake of completness, I must also point out, that your last sentence of your post "And that's what it is there for" does not bring much clarity about that thing - while I fully understand, as one can observe from my "When the image...it works" sentence, the functionality, purpose and propper handling of the "camera" icon, I cannot agree with such a behaviour of the editor, that allows an operation to be done (What You See) that does not affect the outcoming result (Is What You Get).
    From the theory of designing (G)UIs one may learn, that in such a case the operation should either fulfill completly (eg. display the clipboard-inserted image in the resulting post) or fail completly in the beginning (when Pasting the image into the text), either silently (just not displaying the image in the editor field) or with an error warning such as "Insertion of images/bitmaps from clipboard is not permitted". For Windows-like environments (such as, but not limited to, Microsoft Explorer, KDE, Gnome, IceWm....) the change of the dragging cursor to display a kind of "No way" or "no entry" pictogram, is also advisable.
    For the sake of completness of my reaction I also might percieve your last sentence as a kind of irony or sarcasm, which however I definitely do not find appropriate behaviour, more over I might call it an "arogant rudeness" in case of such a "VIP" member with more then 9000 posts in the time when this post is being written, with a hint of overworking, malicous intends, inattention, ego-centricism or any other personal failure(s) or a combination of them, that you should - in case they are present - definitely pay attention to in your private life.
    Moreover, let me please point out, that Im not much pleased about the way this forum works with its users, since I find the bug I have discovered, only a small one (a category B one might say in the A-B-C scheme, eg. a category, that does not directly influence or prohibit the execution of the main business cases, however it may result in discomfort, data loss or operation repetition, such a category would be most possibly a category C in the A-B-C-D scheme). Therefore I must explicitly express my annoyance that you have the guts to handle the post I did like this, when - in my opinion - the post has been written in such a manner that it was merly a polite point out of a small bug, thus it was kept as brief as possible, but fully covering the description of the scenario, alternate scenarios and their outcomes. Moreover, I'm definitely displeased, that you allow yourself to post such a post, that - instead of exploring the matter - throws the whole matter on the head and inside-out, or, one may say, kicks the bucket, and forces the original author, in this case me, for re-accounting for himself, moreover the ambivalency of your post opens such many possibilities to account for, that the time and resources the self-accounting autor has to spent, heavily overweighting the importance, significance and impact of the bug itslef.
    So let me please advise you for the next time:
    - to explore posts with more thoroughness, evaluating their expressions and sentences much more deeply, rather then just glance through on their surface
    - think twice before answering and try to figure out how such answer might be percieved
    - try to do less posts, but with higher quality
    - try to employ more politeness and correct behaviour
    - approach the matter with more humble and curious attitude rather then with a "I-know-everyting-better" standpoint
    With regards
    Lukas Plachy
    Misstypes corrected by rheingold.

  • The file may be corrupt. The file header checksum does not match the computed checksum.

    I just put Vista Home Premium on a computer I was going to give to my son. Upon adding some hardware I kept getting the above screen. "The file may be corrupt. The file header checksum does not match the computed checksum.' When I booted in safe mode and slow boot, it hung on crcdisk.sys. I removed everything except the keyboard hhd dvd and fdd and it still does the same thing. I tried to reinstall Vista but it keeps hanging. From reading a lot of other threads this seems to be a big problem. I doubt if the product should have been marketed. But.... If anyone can help me get it booted I would like to try XP instead. I tried to install XP on the same drive and it hungs there too.

    Hi ballen6721,
    Thank you for the post.
    This issue can occur if the newly installed hardware device is incompatible with the system.
    Based on the current situation, I suggest trying the following steps to troubleshoot the issue:
    Method 1 Device Clean Boot
    ============================================
    Please unplug all unnecessary devices such as sound card, printer, network card and TV card.
    Method 2: Startup Repair from the Windows Recovery Environment (WinRE)
    ============================================
    1. Insert the Windows Vista installation disc into the disc drive, and then start the computer.
    2. Press a key when the message indicating "Press any key to boot from CD or DVD …". appears.
    3. Select a language, a time and currency, and a keyboard or input method, and then click Next.
    4. Click Repair your computer.
    5. In the System Recovery Options dialog box, choose the drive of your Windows installation and click Next.
    6. At the System Recovery Options Dialog Box, click on Repair your computer.
    7. Click the operating system that you want to repair, and then click Next.
    8. In the System Recovery Options dialog box, click Startup Repair.
    Method 3: Use the Windows Recovery Environment (WinRE) to run System Restore ============================================
    1. Insert the Windows Vista installation disc into the disc drive, and then start the computer.
    2. Press a key when the message indicating "Press any key to boot from CD or DVD …". appears.
    3. Select a language, a time and currency, and a keyboard or input method, and then click Next.
    4. Click Repair your computer.
    5. In the System Recovery Options dialog box, choose the drive of your Windows installation and click Next
    6. At the System Recovery Options Dialog Box, click on System Restore.
    7. Follow the System Restore Wizard instruction and choose the appropriate restore point.
    8. Click Finish to restore the system.
    Note: If you computer is an OEM one, the method to enter WinRE can be different, you may contact your OEM to consult how to enter WinRE.
    Can we start the computer now?
    If the issue persists, please help confirm the following points:
    1. What hardware changes have you made recently?
    2. Can we enter Safe Mode now?
    I look forward to hearing from you.
    Best regards,
    Tim Quan
    Microsoft Online Community Support

  • Ihave a movie stuck in itunes on ipad for 3 weeks taking up 7 gigs.I deleted it from the videos app but it is still there.I also tried deleting from itunes on the pc but it does not appear there.Thanks

    Ihave a movie stuck in itunes for 3 weeks taking up 7 gigs of memory.I deleted it from the videos app but still remains on the ipad.I also tried deleteing it from itunes on the pc but it does not appear there.Dont want to reboot the ipad if possible .Thanks

    That list includes all the apps that you installed to your device directly from iTunes on the computer, or which were purchased on the iOS device and subsequently transferred to iTunes on the computer.
    If you right click on any item in that list and choose "Show in Windows Explorer" it will open your iTunes application installer directory on your computer, which should be:
    C:\Users\User\Music\iTunes\iTunes Media\Mobile Applications
    In there are all your saved application installers (*.ipa files).  You need to delete those actual installer bundles and then make sure to NOT allow the "transfer purchased content" when you sync or backup in iTunes (as that will just put them back on your hard drive).
    One caveat to removing those, is that if you ever wish to keep a specific release of a particular app, and the developer replaces the iTunes/App store version with something else, your sole source for your older version will be your own stored copy of it.  So for example, when PDF expert released their iOS 7 update, and charged everyone full price for it, if you wished to keep using the previous version on your own devices, then you needed to keep a copy of the installer on your own computer as that older version is no longer available in the store front.

  • The music search on the I tunes store does not appear after the latest upgrade to my I phone 4

    The music search feature on the I Tunes store does not appear.  Unable to search since the latest upgrade.

    If you're sure where your library is run this script iTunesXMLPath. The library folder is the folder that file is in. Your media folder is recorded under Edit > Preferences > Advanced and is usually a subfolder of the library folder.
    I recommend you backup your library with the method in this user tip.
    tt2

  • I am running IE 11 on Windows 7 Home Premium 64 Bit Service Pack 1. When I attempt to install Flash Player, it goes through all of the steps, tells me the player is installed, and welcomes me. I cannot open the player and it does not appear in the Start M

    I am running IE 11 on Windows 7 Home Premium 64 Bit Service Pack 1. When I attempt to install Flash Player, it goes through all of the steps, tells me the player is installed, and welcomes me. I cannot open the player and it does not appear in the Start Menu, Task Manager, System Tray, or anywhere else. When I try to open a file, the site tells me Flash player is not installed. I have even downloaded it to a separate folder and ran the install with IE shut down completely. And Shockwave in ENABLED but in 32 bit .I have been trying to get this to work for about 3 weeks now.  HELP!!!

    Flash Player is a browser add-on, not an executable program.
    If you need to open a local SWF file you will need the standalone player (Projector) from http://www.adobe.com/support/flashplayer/downloads.html
    Note that the download is the player, not an installer, so you will need to make the file association manually.

  • HT1386 I have iTunes (up to date) and an iPhone 4s. When I connect it using the USB cable it does not appear in the top right corner. Other devices do and also the cable is fine as it charges and the PC sees it as a device. I've looked online and have no

    I'm new to this and I think I typed a long heading!
    Anyway the issue is I have iTunes and just updated it to the latest. I also have various Apple devices however my iPhone won't sync with iTunes. When I connect it using the USB cable it does not appear in the top right corner as does other devices. The cable is fine as it charges and also my PC sees the device. However it does not appear in iTunes so I can't sync music to it.
    I've searched the web but all asume iTunes can see the device.
    Help!?

    Hi David,
    If you are having issues with your iPhone not being recognized by iTunes on your Windows machine, you may find the troubleshooting steps in the following article helpful:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Regards,
    - Brenden

  • The application called VirusScan that comes preloaded on the macbook will no longer open, claiming that it is corrupt and that I must reinstall it.  After looking in the app store it does not appear that said application is available for re-downloading.

    The application called VirusScan that comes preloaded on the macbook will no longer open, claiming that it is corrupt and that I must reinstall it.  After looking in the app store it does not appear that said application is available for re-downloading. Is there a special, non-app store place where I am to go for this?
    Also, I installed MacKeeper about two-three months ago and am questioning its performance. Looking for input as to whether or not this application helps or hinders my system.

    I'll back up Csound on the MacKeeper thing.  In fact, I actually wrote the following about it:
    http://www.reedcorner.net/news.php/?p=245
    Remove is ASAP.  Do not use the provided uninstalled, as there are widespread reports of pop-ups advertising MacKeeper on your system after incompletely removing it.  Try this:
    http://applehelpwriter.com/2011/09/21/how-to-uninstall-mackeeper-malware/
    As for VirusScan, Barney is right on the money that it does not come preinstalled on any Mac shipped new from Apple.  However you have gotten it, your best bet is removing it.  See my Mac Malware Guide for more information that will help you understand and avoid Mac malware without relying on anti-virus software.
    http://www.reedcorner.net/guides/macvirus
    (Note that my pages contain links to other pages that promote my services, and this should not be taken as an endorsement of my services by Apple.)

  • HT2731 I have a student who is trying to set up an account however it is asking for Credit Card information.  The choice of NONE does not appear as an option with the credit cards.  Any assistance?

    I have a student trying to set up an App Store account (she has an Apple ID), however she is being asked for credit card information.  The option of NONE does not appear as one of the choices with the other credit cards.
    Any assistance?

    There are instrctions on this page for how to create a new account (it won't work with existing account) without giving a credit card number : http://support.apple.com/kb/HT2534 e.g. select a free app in the store and click on 'create Apple id' when 'buying' it.

  • Under bookmarks the Organize bookmark option does not appear, new computer Firefox 4.0, and Windows 7, how to make it appear, thanks

    Under bookmarks the Organize bookmark option does not appear, new computer Firefox 4.0, and Windows 7, how to make it appear, thanks

    "Organize Bookmarks" has been renamed to "Show All Bookmarks" in the bookmarks menu.

  • Hi. Unfortunately my ethernet card was not working anymore. This is the message "This computer does not appear to have any PCI Ethernet card. How can I fix it?

    Hi. Unfortunately my ethernet card was not working anymore. This is the message "This computer does not appear to have any PCI Ethernet card. How can I fix it?

    i would try an SMC reset, the following article tells how to do this:
    http://support.apple.com/kb/HT3964
    if it still gives that message, you need to take it to apple store or apple service provider to have a new card installed. the apple site gives listings of providers and stores in your area:
    https://locate.apple.com

Maybe you are looking for

  • T500 Error message from TP on every reboot

    Every time I boot I get a message "The was a problem connecting to the TPM (security device) on this computer..." The message appears at the end of the boot proces after the desktop has loaded and all of my app icons have appeared in the system tray.

  • Can you write other asian language in iBooks Author?

    I would like to write a book in Urdu, just wondering if I can add a langauge to my iMac and write in that language using iBooks Author? Thanks for help in advance.

  • Syntax error in SAPLCRM_CONDITION_COM_OW after upgrade 7 - 7 with EhP1

    Dears, after upgrade I cannot go into edit mode for activities, sales orders. I get a short dump. I think it may be connected to FM CRM_ORDER_GET_ACTIVE_OW which returns nothing , so variable for lv_no_pricing is not set to X. Then when system tries

  • Multiple entries in the same row.

    Hi all, I have a requirement wherein i have to display some columns in my output table. These all values are fetched froma single table MSEG Among them one of the column is material number and other is unit of entry. For the same material number ther

  • Xdg-open and i3wm

    Has anyone had any luck with trying to get xdg-open to work with magnet links in Chromium? My hopeful end result would be to have magnet links open in rtorrent (command line utility), but my current workaround is to use a Chrome plugin that turns mag