No luck to start solaris help please?

hi,
i wiped my hard disk twice, and installed the solaris 10 11/06 x86 six times but still problem, i installed the solaris in the first partiton of the primary IDE master, the partition is bootable, the installation process compleled with final installation of boot blocks and the message was "installaion completed" and prompt me to reboot the system, but after reboot i got the black screen with this message:
Bad PRB sig.
i booted the solaris dvd in the single user mode, the system was mounted under /a, and installed the grub to the MBR with this command:
/sbin/installgrub -m /boot/grub/stage1 /boot/grub/stage2 /dev/rdsk/c0d0s0
The installation asked me for overriting of the MBR, my answer was "yes" and the ouput wass successful without any error message, but when i reboot the system , at this time i got the back screen with the grub word and a blanking cursor, not at least the grub prompt.
i installed the fedora in the other partition and the grub to the MBR and add the solaris to the fedora grub:
title solaris
root (hd0,0)
chainloader +1
makeactivera
but still can't boot the solaris and the error is:
Booting solaris
root (hd0,0)
File system type unknown, partition type 0xbf
Error 13: Invalid or unsupported excutable format
please help me is there any way to start solaris?

Solaris version of grub and Linux version appear and behave much the same but they are not interchangeable. Solaris version has enhanced support for both ufs and ext2 and Solaris slices (sub-partitions) whereas Linux version lacks all these features. Both versions can competently boot Windows by chain loading (pointing Windows boot partition) since all Windows contains its Windows specific boot loader (typically ntldr) pointer within its PBR (partition boot record).
If you use Solaris grub to boot Linux, then Linux grub must be embedded in Linux PBR whereas Solaris one on MBR as follows:
# grub
grub> find /boot/grub/stage1
(hd0,1,a) this answer from grub may be different_
grub> root (hd0,1,a)
filesystem is ufs, partition type 0xbf
grub> setup (hd0)
Checking if “boot/grub/stage1” exists...yes
Checking if “boot/grub/stage2” exists...yes
Checking if “boot/grub/e2fs_stage1_5” exists...yes
Running “embed /boot/grub/e2fs_stage1_5(hd0)”...16 sectors
are embedded... succeeded
Running “install /boot/grub/stage1(hd0) (hd0)1+16p (hd0,1,a)
/boot/grub/stage2/boot/grub/menu.lst”... succeeded
Done.
grub> quit
# reboot
Pinecloud,

Similar Messages

  • I changed my itunes password only and now I can't update any of the apps I downloaded using the old password. I tried signing in with the old password with no luck. Can someone help please?

    I changed my itunes password only and now I can't update any of the apps I downloaded using the old password. I tried signing in with the old password with no luck. Can someone help please?

    Have you signed out of your iTunes account on the device/computer that you are using and signed back in with the updated password ? That should 'refresh' the account on it, and you should be able to use the account's new password to download updates to its apps

  • TS3988 I am receiving email that I should verify my password for iCloud but I can't see the link that I should start. HELP please!!!!!!

    I am receiving email that I should verify my password for iCloud but I can't see the link that I should start. HELP please!!!!!!

    You select the desired file (tick the square box on the left of the file name).
    You click on the "share"/"send" icon (the envelope with the arrow that points up and to the right).
    You are presented with the share/send dialog.
    Here you select the "Send To" choice.
    This is done by placing a tick in the box beside either "Public Link (create a public link for anyone to view)"
    OR
    "Personalizdd Link (send email invitations to individuals)"
    NOTE: The second choice is only available if you have a subscription to Adobe Send service.
    So, for a free "Files" account in Adobe's cloud you'd tick "Public Link".
    At the bottom left you'll observe the "Create Link" button.
    Click it.
    You are presented with a new dialog that informs you that the Public Link has been generated and that link is provided in a field within the dialog.
    You can copy the link to a text file for future copy-paste into a post to a forum or bulletin board or you can provide the link to otheres via an email.
    Be well...

  • HT1750 New batteries in pad and keyboard but wont connecton start up - help please.....

    Can someone help me, I have an imac and it suddenly wont recognise the wireless keyboard and tracker pad. Have just replaced batteries and hard resarted the mac but wont work. I have tried another wireless mouse which works but dont have another keyboard. It is password protected so cant get in to do urgent work. Help please.

    Hello,
    You could try booting from the install disk #1 (holding down the "C" key while starting up with the disk in) that came with it and then running disk utility to repair the disk. Then restart.
    Booting into safe mode (holding the shift key right after the startup tone) and then after it comes up in safe mode, restarting can also help this issue.
    Booting into single user mode and running fsck may also help..
    http://docs.info.apple.com/article.html?artnum=106214
    Hopefully it is just a simple error on your HD that is causing this problem.
    (if you have already done all this before posting, i apologize for suggesting the obvious first... im new to this board and just trying to help!)
    Hopefully this helps!
    -J
    Message was edited by: Cutthru
    fixing my tarabull spelling.

  • Start Routine Help - PLEASE...

    Hello All BW/ABAP gurus, I am not good at ABAP and I need some help in writing  Start routine.
    Basically my (SIMPLIFIED) requirement is, I have the data coming in as series of 3 fields (data always will come) and if there are multiple values in those fields I have to create multiple records in the ODS with a sequence number.
    For example if the data record is like
    ABC01 00     99    88
    Then my data record in ODS should be
    ABC01   0001          99
    ABC01   0002          88
    And if the data record is:
    ABC01 00     00    88
    My record in ODS should be just
    ABC01   0001          88
    So that’s the logic I am expecting in the start routine…
    So I kind of written the key part of code in the section below… Any one who is good in ABAP and has written similar code in Start Routine, please correct if there are any mistakes … thanks a ton in advance…
    CODE starts here:
    DATA COUNT_SEQ N.
    BEGIN ITAB_MAIN.
         KEY_FLD_01     AS /BIC/  ……….
         KEY_SEQ_01    AS /BIC/ ………..
         DATA_FLD_01 AS /BIC/ ………
    END ITAB_MAIN.
    BEGIN ITAB_INNER.
         KEY_SEQ_01    AS /BIC/ ………..
         DATA_FLD_01 AS /BIC/ ………
    END ITAB_INNER.
    LOOP AT DATA_PACKAGE.
    REFRESH ITAB_MAIN.
    ITAB_MAIN-KEY_FLD_01 = DATA_PACKAGE-KEY_FLD_01.
    COUNT_SEQ = 1.
    IF DATA_PACKAGE- DATA_FLD_01  > 0.
         ITAB_INNER-KEY_SEQ_01 = COUNT_SEQ.
         ITAB_INNER-DATA_FLD_01 = DATA_PACKAGE- DATA_FLD_01.
         COUNT_SEQ = COUNT_SEQ + 1.
          IF COUNT_SEQ = 1.
              MODIFY ITAB_INNER.
          ELSE
              APPEND ITAB_INNER.
          END IF.
    END IF.
    IF DATA_PACKAGE- DATA_FLD_01  > 0.
         ITAB_INNER-KEY_SEQ_01 = COUNT_SEQ.
         ITAB_INNER-DATA_FLD_01 = DATA_PACKAGE- DATA_FLD_01.
         COUNT_SEQ = COUNT_SEQ + 1.
          IF COUNT_SEQ = 1.
              MODIFY ITAB_INNER.
          ELSE
              APPEND ITAB_INNER.
          END IF.
    END IF.
    IF DATA_PACKAGE- DATA_FLD_02  > 0.
         ITAB_INNER-KEY_SEQ_01 = COUNT_SEQ.
         ITAB_INNER-DATA_FLD_02 = DATA_PACKAGE- DATA_FLD_02.
         COUNT_SEQ = COUNT_SEQ + 1.
          IF COUNT_SEQ = 1.
              MODIFY ITAB_INNER.
          ELSE
              APPEND ITAB_INNER.
          END IF.
    END IF.
    IF DATA_PACKAGE- DATA_FLD_03  > 0.
         ITAB_INNER-KEY_SEQ_01 = COUNT_SEQ.
         ITAB_INNER-DATA_FLD_03 = DATA_PACKAGE- DATA_FLD_03.
         COUNT_SEQ = COUNT_SEQ + 1.
          IF COUNT_SEQ = 1.
              MODIFY ITAB_INNER.
          ELSE
              APPEND ITAB_INNER.
          END IF.
    END IF.
    ITAB_INNER [] ITAB_MAIN.
    CLEAR ITAB_MAIN.
    CLEAR ITAB_INNER.
    END LOOP.

    I think could be as that:
    DATA COUNT_SEQ N.
    DATA_PACKAGE_NEW like DATA_PACKAGE occurs 0 with header line.
    REFRESH DATA_PACKAGE_NEW .
    LOOP AT DATA_PACKAGE.
    ITAB_MAIN-KEY_FLD_01 = DATA_PACKAGE-KEY_FLD_01.
    COUNT_SEQ = 1.
    IF DATA_PACKAGE- DATA_FLD_01 > 0.
    DATA_PACKAGE_NEW-KEY_SEQ_01 = COUNT_SEQ.
    DATA_PACKAGE_NEW-DATA_FLD_01 = DATA_PACKAGE- DATA_FLD_01.
    ADD 1 TO COUNT_SEQ.
    APPEND DATA_PACKAGE_NEW.
    END IF.
    < same for 2, 3, 4>
    END LOOP.
    REFRESH DATA_PACKAGE.
    DATA_PACKAGE[] = DATA_PACKAGE_NEW[].
    I hope this help

  • Mac Pro won't start up- HELP please.

    I had a white screen a month ago .After buying a new harddisk and reistalling the whole system 10.6.5 and reistalling all programs from ground zero, I had the MPro working nearly for 2 weeks. But Suddenly today It got a frozen screem with a black curtain. I disconected all the external devices and after starting up I got a loading bar and then the spining wheel but it doesn't turn on.
    Is this a sign that I need to change the motherboard?

    You may be experiencing a Kernel Panic as seen and described in Apple doc.#106227. If not, disregard.
    Bad or incompatible RAM is the most common cause of KP's. It could just need to be reset……. to make sure there's a good connection.
    Try pulling any added RAM, especially if it's not OWC, Crucial or Kingston. Then run it with original RAM. Ground yourself while doing so. Keep in mind a bad stick of RAM can cause directory corruption, so Repair Disk after pulling the RAM. If it still does KP's, try removing the original RAM and running on two sticks of the added RAM.
    Here's a great site for Resolving Kernel Panics. Please do all the steps in order, even if you don't think you need to do a certain step.
    Here's a great MacFixIt article.
     Good Luck! DALE

  • MEGA 180 WONT START UP, HELP PLEASE.

    I have a mega pc 180 and the first problem is the LCD wont work, Tried flashing it with no luck.
    The main problem is after its been switched on for about 30 - 60 mins if i shut it down and leave it for about 5 mins it wont switch back on again, then if i leave it and try it the next day it will switch straight on.
    The cpu temp is on 35 which is good so dont think it overheating. All i can think of is its a dodgy power supply or maybe the power supply is overheating.
    When it wont switch on theres must be some power there as the HIFI led comes on green and i can hear the power go to the cdrom.
    Any help would be appreciated, dont really want to package it all back up and send it back.
    Cheers

    When it won't start up does anything appear on the boot screen ? For instance does it detect video ? Does it detect CPU ? Does it detect memory ? Does it detect disks ?  These all output info to the screen while the system is booting and can give a clue as to where the problem is.
    Something to try the next time it won't start..... Remove the power plug from the walll...wait 10 seconds... plug it back in and see if that helps. Much easier than waiting 24 hours if it works. I have to do this a couple times a week. Although I have never found a repeatable sequence that causes it to fail. It never the less fails often enough to be a pain. And when it does fail the HIFI works just fine.
    Good luck

  • Start Up HELP PLEASE!

    I bought my first MacBook last friday and I've been doing my usual browsing and stuff like reports and what not. But suddenly today, when I turned it on, the start up gray screen with the apple logo and the rotating circle at the bottom just stayed there. I've been waiting for almost an hour but still the log in screen does not appear, just the start up screen. I badly need to use my macbook asap for a report I need to finish and I don't have time to go to a service center today. Somebody help me please!

    If you get directory errors from Disk Utility, I would recommend NOT running an Archive and Install. That will just compound the problem. Installing an OS when directory damage is present is similar to having a damaged foundation and proceeding with building a house.
    If you can boot from the OS disc and run Disk Utility, post what error occurs if the Repair does fail. If you don't have your discs available, you can also boot to Single User Mode (hold Command-S at startup) and you will get a command prompt. From there you can type "fsck -fy" to do a disk repair as well.
    Do you have your data backed up via Time Machine or something else?

  • I have Wildblue email, igoogle start page is beeing removed, now I can't get to my mail, firefox keeps trying to go to igoogle start page, Help Please.

    A new Windows 8 opp.system. It has Google all through it, I don't like google, but google is who Wildblue uses for mail. Right from the start I tried to set some short cuts to get to mail, but the google stuff already in there would intersept my efforts, so I would have to type in wildblue and thenI would get there and I'm guessing, that Firefox started automatically do the rest. Now that the igoogle start page has gone away, they are fasing it out, it is suppose to go right to my mail, instead it keeps trying to go to igoogle start page, over & over & over & ......
    I see now that my other tab shows that it finally got to my mail. Will this be the norm, or will it self correct?

    When you start typing in the address bar, Firefox may suggest your most frequently used site address, and show other frequently/recently used sites in a drop-down list. To get Firefox to stop suggesting a particular site, try using the down arrow key on the keyboard to go down and select it, then press the Delete key, then arrow up or down to the site you really want to clear that unwanted address from the address bar.
    If you haven't already, you might want to create a bookmark for your new mail site. Not only does this provide one-click access (or two-click, if you use the menu rather than the Bookmarks Toolbar), but it helps speed access when you start typing in the address bar.
    Some related help articles:
    * [[How to use bookmarks to save and organize your favorite websites]]
    * [[Awesome Bar - Find your bookmarks, history and tabs when you type in the address bar]]
    With respect to iGoogle, it's possible that going to this page is a Google setting. Two things to check:
    (1) While you are logged in to your Google account, check whether you've somehow specified you want iGoogle instead of the main Google page or Gmail.
    (2) Remove your Google cookies. This will clear out preferences related to Google that are stored on your computer (separate from the ones stored in your account). You can do that as follows:
    First, save any pending work such as draft messages or Google Docs documents you're editing. While viewing a page on Google, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Hopefully now Google will forget your previous interest in iGoogle.

  • No luck with WRTU54g Router - help please

    My brother recently purchased a Linksys WRTU54g router and it came today, we were told that we could connect to the internet through this by connecting to our BTHomehub wirelessly and therefore can then plug an ethernet cable from our xbox 360 into the linksys router and connect to xbox live. 
    However after hours of trying we have had no luck, any help would be greatfully appreciated.
    Thank you.
    Danielle.

    1. If you already have a Wireless Router then you need to connect your existing router from the Ethernet Port on Internet Port of the LInksys router...
    2. Connect a computer to the Ethernet Port of the Linksys Router and open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1...
    Leave username blank & in password use admin in lower case...
    3. On the set-up tab, change the Router's IP Address to 10.10.10.1 and click Save Settings...Once you are done wait for 30 seconds and unplug the power cable from the router and wait for another 30 seconds and plug it back in...Your router should be configured for Internet Access...
    4. You can then connect your xbox to the linksys router and it should work fine...

  • TS1292 HI. I RECIEVED A £25 CARD FOR XMAS AND WHEN I ENTER THE CODE IT TELLS ME ITS NOT VALID.     I HAVE TRIED ALL THE DIFFERENT CODES IT MAY BE AND STILL NO LUCK. CAN YOU HELP PLEASE?

    my itunes code is not working.   every time i enter code it says not valid.
    thanks
    graham
    <Edited By Host>

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove the card code from your post.
    As it's a £25 card I assume that your account is also based in the UK (cards are country-specific). If it is and the page that you posted from doesn't help (the code on my card is longer, so is it possible that you've scratched some of it off ?) then you will need to try contacting iTunes support (you will need to give them as much of the serial number and activation code from the card as you can read) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • Macbook won't start. Help Please?

    So recently my Macbook Pro 17 in w/retina display has technical difficulties. I just bought it on Black Sunday of 2013. It was working fine until December 31 where it started to work slower than usual. At first it would take a longer time to start up. On Jan 2. I had difficulties turning it off but some how I got to manage to turn off my macbook. Yesterday when I tried to turning it on the small loading bar appear with the apple logo but then in a few seconds it turned off. I've trying many methods but none of them seem to work. I feel like I just thrown a large amount of money in the drain. I bought my Macbook in a MicroCenter. Would they be able to repair without any costs? If not what are other methods to solve my problem?

    Lesly,
    You have a year of warranty with Apple. Just make a Genius Bar appointment. They should take care of it for you. You may also want to consider buying Applecare. That'll give you an additional 2 years of warrany.
    Bring your receipt along with when you visit the Apple store.
    By the way... you must mean 15" with Retina. They never made a 17" Retina.

  • I've moved itunes library onto new computer and now it won't sync. I did the back up and restore things and tried to sync, and although I've said yes to erasing and syncing, the sync won't start. Help please!

    It just keeps telling me "The session failed to start"

    It means the device is in recovery mode.  You'll need to reconnect it to iTunes and restore it again.
    You may need to connect it in recovery mode manually using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • Macbook doesn't start up - Help Please?

    Hello,
    I have a Macbook Intel Core 2 Duo that I bought back in January 2007, OS X 10.4.11. Yesterday I was starting up my computer, but got no response from the power button. The battery was fully charged. Nevertheless I plugged in the power cord, but yet again, my Macbook would not start up. I have tried everything, but pressing on the power button just makes the light by the camera flash rapidly in green. I got my Mac to start after several hours of trying, but I would like to know where this problem is coming from because it is constantly occuring. Have any of you experienced the same thing?

    When you open System Profiler, do items in the "Overview" and "Hardware" section show as usual? Memory - all there? Diagnostics - passed? Serial-ATA's S.M.A.R.T. status - verified?
    First, backup your important data immediately before trying anything further.
    Your Mac does not need installed software to start up, also does not need an internal hard drive - therefore, have you tried inserting the original grey-labeled Install Disc 1 to see if/how it starts up to that disc when you hold down the "d" key to run the Apple Hardware Test?
    Starting up in that manner will bypass the internal hard drive and the installed software. Theoretically, it should always startup right away when starting up to the Install Disc 1. Any stated results obtained from running a fresh Apple Hardware Test?
    If your MacBook will not start up any better when trying with Install Disc 1, it probably has a hardware failure - perhaps the battery/power supply or a connector or cable...perhaps worse. The Apple Hardware Test may not recognize what the problem is, so don't rely on a no problem report if that's what it shows. If there is any error, write it down and pass that info along to the repair folks when you call them.

  • E61 Voice mail indicator at start up - help please...

    I had a problem with my SIM card and had to have it replaced. Now every time i turn the phone on I get a "new voice mail" message on the screen.
    I've worked with my carrier (t-Mobile) and it does not appear to be on their end.
    I lieve in the US but can't get support for the E61 here.
    Can anyone help? Any ideas?

    read my post N73, VMI and SIM problemMessage Edited by supplier on 09-Nov-2006
    10:41 PM

Maybe you are looking for

  • Error message during processing in BI

    1.i am loading the data into infoobject. 2.got error in text data load. 3.master info object have compound obj 0COUNTRY 4.and other normal fields are 0TXTSH,0LANGU,sold-to-party. 5.there is no PSA in this..its direct update to INFOobject. The error m

  • Hardware key request

    Hello, could someone please generate a hardware key for me or explain how to obtain it?  I am trying to install NetWeaver PI 7.1 ABAP+Java from an SDN subscription download.  I have no existing SAP software installed. SID: XID Server: dev1 Instance:

  • In the menu bar when I hit bookmark my list of saved bookmarks is missing. when I bookmark a page I don't know where they go.

    my ISP sent me a fine tune disc after I ran it i could no longer find my lists of saved bookmarks. bookmark tab is there but when I click on it and the menu drops down it's gone How do I get it back. Also when I try to bookmark a page it goes through

  • Photoshop Elements 9 & Adobe Premier Elements 9

    I purchased Adobe Photoshop Elements 9 & Premiere Elements in May. I have yet to get it running successfully. Organizer is frozen.I have tried so many ways to remedy this that I have lost components from the Application directory but  I cannot uninst

  • BDC and alvs

    What is the best way to learn BDC's and ALV's?