How to create ISO images for Solaris 10 U6 (10/08) SPARC CD 1 and DVD

The format of the bootable DVD and CD 1 of Solaris 10 U6 sparc has changed from previous Solaris 10 update's sparc media, it now seems to be more like the x86 format, can anyone provide the new/specific mkisofs command to use to recreate (modified version) a sparc bootable ISO image file of these from their "unloaded" directory paths, I'm guessing the mkisofs command is going to be similiar what's used for recreating Solaris 10 x86 DVD and CD1.

Alan,
Thanks for info, when I try this mkisofs command to recreate the Sol 10 U6 CD 1 ISO image I end up 16 KB short of the original downloaded ISO size of Sol 10 U6 CD 1, the generated ISO image when burn to CD doesn't boot, I tried using both mkisofs version that comes with Sol 10 U6 & version *2.01.01a53*, here's the test I did:
mount Sol 10 U6 CD 1 as /mnt (CD 1 burned from downloaded ISO from Sun that is *512904 KB* in size)
mkisofs -G /mnt/boot/hsfs.bootblock -B ... -l -ldots -R -N -D -V SOL_10_1008_SPARC -o test.iso /mnt
Genereated ISO image file test.iso is *512888 KB* in size and doesn't boot when burned to CD with error messages:
Can't read disk label.
Can't open disk label package
ERROR: boot-read fail
Any ideas?
--Scott                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • How to create apple id for mac app store without using credit card and there is no any option for payment none. please tell how to download free apps from mac app store

    how to create apple id for mac app store without using credit card and there is no any option for payment none. please tell how to download free apps from mac app store

    my problem solve by me
    first create apple id
    fill credit card details
    and complete your account creating  process.
    than go to app store or itune store
    login your acount
    click right side  - account button
    than again login for account setting
    next go to payment information and click edit button
    when u enter payment infomation
    click none button in payment method and click done button.
    than ur credit card has been removed.
    but rs. 60 will deducted in your account when u doing this process.

  • Creating Disk Image for Solaris 8 Admin Pack

    Hi,
    When I download the zip files "Software CD Image" for Solaris 8 Admin Pack / Solstice AdminSuite 3.0 and "Documentation CD Image", I get a zip file containing the contents of an installation disk (ie files and directories) rather than ISO files for creating a disk.
    lf I then burn these to a CD (in either UDF or 9660 format) and try to install, it fails for various reasons, not least of which is the fact that the top level installation file does not have X permission. I know that I could copy these files to the Sun, change permission and run from there, but for various reasons I also need to be able to install from CD.
    Does anyone know either how to create a CD with the correct format / file permissions / etc, or alternatively where the correct ISO's can be retrieved?
    Thanks in advance.

    Partition before installing, then try it. Alternatively, use something like Carbon Copy Cloner or SuperDuper! to put a bootable backup/clone onto the partition. That gives you something that you can immediately verify. A disk image requires restoring before you can be assured that it's viable. I've beta-tested Panther through Snow Leopard and have never made a disk image, only clones. Finally, creating the disk image takes much more time to create than does the clone. Just my 2¢. BTW, the image is useless unless you can successfully restore it. I have no idea why it's not working for you.

  • How to create ISO images of cds we already have?

    Hi
    I want to create an image (ISO preferably) of a dvd I have.
    I have no idea how to do it. I tried to use Toast, it made the .dmg file but
    when I try to mount it, it says "mount failure".
    I have tried this many times now so I have no idea what to do.
    Can someone please help me out?
    Thanks.

    If you are talking about copy-protected, commercial dvds, that is a discussion that is not allowed in this forum. (See Terms of Use.)
    A google search for "fastiso" (without the quotes) suggests a method for ordinary discs which you have the right to copy.
    And a google search for "diskutility create iso" (without the quotes) suggests some more complicated, free methods.

  • How to create resizeable images for epub?

    What parameters does the image need to have in order to be resized in an epub file just like the resizable text? Can you accomplish this in ID or do you have to do it in HTML or CSS?
    Thanks!

    Easy if you have InDesign CS5. Choose Object > Object Export Options, and select Relative to Page for image size (or do the same in EPUB export options).
    Otherwise, change the CSS.

  • How to create URL link for telephone number ,open to account search page and account result page ?

    Hi Experts,
    Bussines role - ZCC_ICAGENT 
    If user open this bussiness role and open Account page ,user enter telephone number and enter search account ,then result will be displayed.Instead of 3 clicks ,user click direct URL link ,telephone number is parameter,account Search and account result  page will be opened direct link.
    So how to do it..could you please provide me step by step...what are the steps wee need to follow for creating URL ..how to do it..Please help..
    Thanks
    Kalpana

    Hi kalpana,
    You dont need to do any setting for this.
    Following URL will be used as per your requirement.
    http://rrnewcrm.ril.com:8000/sap(bD1lbiZjPTI0MiZkPW1pbg==)/bc/bsp/sap/crm_ui_start/default.htm
    ?sap-system-login-basic_auth=X&sap-system-login=onSessionQuery&saprole=ZCC_ICAGENT&
    sap-phoneno=9999999999
    Here parameter sap-phoneno will contain the number you want to search for.
    In component ICCMP_BP_SEARCH, go to view BuPaSearchB2B. write below code in its inbound plug IP_INBOUNDPLUG-
    DATA: lt_ivr_url_param TYPE tihttpnvp,
             ls_ivr_url_param TYPE ihttpnvp,
             lr_searchcustomer TYPE REF TO if_bol_bo_property_access,
             ls_searchcustomer TYPE crmt_bupa_il_header_search.
    CALL METHOD cl_crm_ui_session_manager=>get_initial_form_fields
           CHANGING
             cv_fields = lt_ivr_url_param.
    lr_searchcustomer ?= me->typed_context->searchcustomer->collection_wrapper->get_current( ).
         CHECK lr_searchcustomer IS BOUND.
    READ TABLE lt_ivr_url_param INTO ls_ivr_url_param WITH KEY name = 'sap-phoneno'.
    IF ls_ivr_url_param-value IS NOT INITIAL.
             ls_searchcustomer-telephone = ls_ivr_url_param-value.
       CALL METHOD lr_searchcustomer->set_properties( EXPORTING is_attributes = ls_searchcustomer ).
             eh_onsearch( ).
        ENDIF.
    Thanks & Regards
    Richa

  • How to create a full system image for Solaris 10 with ZFS

    Dear friend,
    could you please advice which way to create a full system image for Solaris 10 with ZFS is trusted and practically used?
    I'm searching the analogy like Norton Ghost or Acronis True Image but with ZFS support.
    I have x86 server Sun Netra X4270.
    Thanks in advance,
    Dina

    One more question Filip,
    is it correct, that I should make 2 separate backup for ispool and rpool?
    And is it important in which order to restore them from backup?
    bash-3.2# zpool list
    NAME    SIZE  ALLOC   FREE  CAP  HEALTH  ALTROOT
    ispool  136G  8.08G   128G   5%  ONLINE  -
    rpool   136G  44.1G  91.9G  32%  ONLINE  -
    bash-3.2# zfs list
    NAME                             USED  AVAIL  REFER  MOUNTPOINT
    ispool                          8.08G   126G    31K  /ispool
    ispool/iserver                  8.08G   126G  8.08G  /export/home/iserver
    rpool                           44.4G  89.5G  46.5K  /rpool
    rpool/ROOT                      39.1G  89.5G    31K  legacy
    rpool/ROOT/firstbe              39.1G  89.5G  14.1G  /
    rpool/ROOT/firstbe/export       20.1G  89.5G    32K  /export
    rpool/ROOT/firstbe/export/home  20.1G  89.5G  20.1G  /export/home
    rpool/ROOT/firstbe/opt           651M  89.5G   133M  /opt
    rpool/ROOT/firstbe/opt/SMAW      518M  89.5G   518M  /opt/SMAW
    rpool/ROOT/firstbe/usr          3.45G  89.5G  3.45G  /usr
    rpool/ROOT/firstbe/var           867M  89.5G   867M  /var
    rpool/dump                      1.00G  89.5G  1.00G  -
    rpool/swap                      4.25G  89.8G  4.00G  -
    Br,
    Dina

  • How about putting out ISO images for various downloads

    I posted this suggestion before, a year ago, I think. no change. so here it goes again:
    It'd be much better to put out ISO images instead of.cpio.gz or .tar.gz file, as
    many people I know had to extract the content from the archive, then generate cd images.
    There are great free ('mkisofs') and commercial tools to generate iso images.
    One may argue that it'd be hard for people don't have cd-rom/cd-rw. Under linux, this is not an issue. iso image can easily be mounted on a loop device and read from.

    Hi Nick, I do see information on creating a slideshow with Quicktime at: http://www.apple.com/quicktime/tutorials/slideshow.html
    however it appears Quicktime X removed that capability. There is no 'open image sequence' option from the File menu in Quicktime X.
    If I do end up sticking with Final Cut - would you recommend any codec and/or dimension size that would result in the best quality or the most crisp image? I also need a few fade in's and out's on various parts - I don't believe I would have the control without Final Cut.
    Would resizing the image files in Photoshop to 1920 pixels by 1280 before importing them into Final Cut result in crisper images? Thanks.

  • How do I get an ISO Image for Boot Camp?

    I can't use bootcamp because i don't have a Windows 7 ISO Image. Where can i get a Windows 7 ISO Image?

    http://blog.mclaughlinsoftware.com/2009/09/03/convert-dvd-to-iso-on-mac/
    more options
    https://www.google.dk/search?client=opera&q=make+dvd+into+an+iso+mac&sourceid=op era&ie=utf-8&oe=utf-8&channel=suggest

  • Creating ISO Image

    I have two Macs, an older 17" MB Pro with a superdrive and a new 2013 27" iMac without a superdrive. I have a legal copy of Windows 7 64 bit that I need to use to make an ISO image on a USB stick so I can install Windows 7 on bootcamp on the new iMac. How do I create the ISO image on the USB stick? This needs to be done within Mavericks if possible.

    http://lmgtfy.com/?q=how+to+create+iso+on+mac

  • How to create report image like artwork demo

    Dear Pakars
    How to create report image like artwork demo ?
    Thanks
    Imansyah

    Hello,
    Are you asking how to include images in a report? If so, take a look at the declarative blob support documentation -
    http://www.oracle.com/technology/obe/apex/apex31nf/apex31blob.htm
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • How to create Edit Image in my form

    hi All,
    I have a form with header and detail, in my detail block i need to add Edit Image in my form. When i click on this i should be able to open one of my text column.
    can any one please help me how to create new images....

    Siva,
    There is a different Technology Stack associated with the Enterprise Business Suite (EBS). amitphynyl is correct with the description of how to create a button with the edit.ico assigned to it, but with the EBS, you will want to speak to your DBA to get a list of all the Icons that are available as you will have more icons with the EBS than are available with a standard install of Forms Builder 6i. I would also suggest you ask your DBA to give you a copy of all the Icons so you can add them to your Forms Builder installation so they will be available to you during design of your Form.
    I would also recommend that you review the Oracle Applications User Interface Standards for Forms-Based Products guide in the Oracle Applications Documentation web site to ensure your Custom Form conforms to Oracle guidelines.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Boot image for Solaris 8 x86?

    Does anyone know where I can download the image for the boot floppy for Solaris 8 x86?
    Mine got corrupted, and since System Commander 2000 doesn't recognize the partition, that and the CD are the only ways I can boot the system.
    Thanks in advance,
    -Phil
    pbflores@"REMOVETHIS"usa.net

    Are you considering any particular cards ?
    I have had good luck with DEC21040 (10baseT) and DEC21140 (100baseT) cards
    in Solaris 7 through Solaris 10 on x86.
    The same can be said for 3Com 3C905C-TX cards.
    Solaris 8x86 will recognize many chipsets natively,
    and a number of third party developers have created working driver packages.
    Most of their driver packages are free, but a few are not free.
    Solaris 9 works with a few more, and Solaris 10 works with yet more adapters.
    The Solaris 8x86 HCL list has the native cards.
    This other Sun web page can direct you toward 3rd party sites.

  • Change ISO image of Solaris 10 install CD

    Hi all
    Is possible change iso image for Solarix 10 at may local machine?
    I want to add there patch, driver or change initial parameters.
    How can I do it? Please give me advise.
    Thanks
    Robert

    Check out:
    http://www.sun.com/blueprints/0301/BuildBoot.pdf

  • How to create menu function for link to open file

    Hi,
    I need help how to create menu function for link to access file and allow user to save the file when click on it.
    The file will keep inside server.
    Thank you.
    Regards,
    Wilson

    I need help how to create menu function for link to access file and allow user to save the file when click on it.
    The file will keep inside server.AFAIK, you have to write a custom code to achieve this and Oracle does not provide this functionality.
    If you want to store the file as an attachment, please see (How to Store Image/PDF Attachments on the File System in 11i and R12 (like Attachment File Directory) [ID 294525.1]).
    Thanks,
    Hussein

Maybe you are looking for

  • 80GB Ipod classic Not working

    well i have a 80 gb ipod classic and as soon as i plug into my computer it just decideds to freeze itunes and not let me click anything on itunes but allows me to still run everything else, also in my computer my ipod appears there but does not allow

  • Selecting from a list to a table

    need help.i have items in a list and combo box in which i want it in such away that when item is selected from the list and combo box it goes to the table i have in a panel.i want to discard the text area i used.thanks in advance my code: '\n' import

  • Port replicator for W530

    I can buy a 42W4631 replicator, but I am not 100% sure if it will fit a W530. When I search the Lenovo site i see it will fit a W500. I DO NOT read a "W500-SERIES", so I'm afraid it won't fit ??? Can anyone help me please ? Thanks ! Solved! Go to Sol

  • PS CS4 almost unusable with snow leopard

    Installed Snow Leopard.  Ran the adobe uninstall for CS3 then did a fresh install of CS4.  Downloaded all the updates.  When I open Photoshop I get a constant stream of the same error message that reads "Could not complete your request because of a p

  • EA4500 - Filter Guest Network Access

    Is there a way to filter guest network to restrict what services they can access? Support won't email me back.