Install device conflict for Solaris 9 on V60X

Can anyone help
Getting the following message when installing Solaris 9 on v60x using raid 1 ...
Warning: Resource Conflict - both devices are added
NON-ACPI device: ISY0050
Port:3F0-3F5, 3F7, IRQ: 6; DMA: 2
ACPI device: ISY0050
Port:3F2-3F3, 3F4-3F5, 3F7; IRQ: 6; DMA: 2

Cool, so i ignore the device conflict warning message and carry on, it gets thru the webstart dialogs to the welcome wizard, display a progress bar which get to 25% and then the wizard disapears, I click 'send kiosk to background', but the wizard has vanished, maybe it went of the visible screen area?
What i have achived tho is to stripe the disk for raid-1 and re-install the service partition, and the partial webstart intall as above.
My problem however is that it wont boot up, giving message
'no bootable partition'. The webstart doco says it creates the required fdisk partitions etc
There is a note in the 'solaris 9 install guide' that says ...
'if you restored the service partition before starting the install, you might not be able to upgrade to the Sun OE' .
Thanks for that Sun. Any ideas guys, perhaps its only a warning message.

Similar Messages

  • Trying to install nic drivers for solaris 10 on x86 machine

    i am trying to install nic drives for sis 900 downlaoded from http://homepage2.nifty.com/mrym3/taiyodo/eng/
    i am following the instruction in the readme file but when i reach
    (5) Make links to correct binary directory and Makefile according to your
    configuration. i386 and gcc are default.
    % cd /.../sfe-x.x.x
    % rm obj Makefile
    % ln -s Makefile.${KARCH}_${COMPILER} Makefile
    % ln -s ${KARCH} obj
    where ${KARCH} is the result of `isainfo -n`, and ${COMPILER} is
    "gcc" or "suncc" which you want to use to make the driver.
    when i execute the command
    ln -s Makefile.i386_gcc Makefile
    it gives me an error
    what should i do

    hi, your files and folders may be named by UPPER symbols. Rename them by LOWER symbols.
    goodluck !!!

  • Problem with a DDI Device driver for Solaris 8 and 9 on a Sun-Blade-1500

    The problem has to do with dma allocated memory and the little-endian format.
    When I copy blocks bigger than 256 bytes to the dma memory, using a uiomove() or bcopy(), the data after the first 32 bytes is swapped around over 8 bytes.
    The bcopy from a driver (stack) buffer into the dma virtual memory has the same affect.
    So it has to do with the kernel dma allocated memory and the endianess.
    When I set the byte order to big-endian inside the ddi_device_acc_attr the data seems to be alright, also with bigger transfer sizes.
    My device however needs the little-endian format.
    I have the same the same device driver running without any errors on a Sun Blade-150 Solaris 8 for a long time now.
    Can somebody please advise me?
    Data example,
    test data: 0x00,0x01,0x02,?.
    64, 128 or 256 bytes blocks:
    000: 07 06 05 04 03 02 01 00 0F 0E 0D 0C 0B 0A 09 08
    016: 17 16 15 14 13 12 11 10 1F 1E 1D 1C 1B 1A 19 18
    032: 27 26 25 24 23 22 21 20 2F 2E 2D 2C 2B 2A 29 28
    048: 37 36 35 34 33 32 31 30 3F 3E 3D 3C 3B 3A 39 38
    064: 47 46 45 44 43 42 41 40 4F 4E 4D 4C 4B 4A 49 48
    080: 57 56 55 54 53 52 51 50 5F 5E 5D 5C 5B 5A 59 58
    096: 67 66 65 64 63 62 61 60 6F 6E 6D 6C 6B 6A 69 68
    112: 77 76 75 74 73 72 71 70 7F 7E 7D 7C 7B 7A 79 78
    512 or 1024 bytes blocks:
    000: 07 06 05 04 03 02 01 00 0F 0E 0D 0C 0B 0A 09 08
    016: 17 16 15 14 13 12 11 10 1F 1E 1D 1C 1B 1A 19 18
    032: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F <----- ?
    048: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F <----- ?
    064: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F <----- ?
    080: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F <----- ?
    096: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F <----- ?
    112: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F <----- ?
    Code example, how I allocate the DMA (kernel) memory:
    DDI_STRUCTURE_LE_ACC = Little Endian format
    DDI_STRUCTURE_BE_ACC = Big Endian format
    static struct ddi_device_acc_attr sse_dma_attr =
    DDI_DEVICE_ATTR_V0, /* The version number of this structure */
    DDI_STRUCTURE_LE_ACC, /* see above */
    DDI_STRICTORDER_ACC, /* How CPU will reference data, default */
    The dma definitions for allocating the DMA memory
    static ddi_dma_attr_t dmaattr= {
    DMA_ATTR_V0, /* version */
    0, /* starting address for DVMA */
    0xffffffff, /* end address for DVMA */
    0xffffffff, /* max transfer count in one cookie */
    0x1, /* address restrictive alignment, 1 = byte alignment */
    0x7, /* burst sizes */
    1, /* min number of byes */
    0x00ffffff, /* max number of bytes device can transmit/receive */
    0xffffffff, /* upper bound of the DMA engine's address */
    1,
    512,
    0, /* DDI_DMA_FORCE_PHYSICAL doesn't work */
    ddi_dma_alloc_handle()
    if((ret=ddi_dma_alloc_handle(xsp->dip,
    &dmaattr,
    DDI_DMA_SLEEP,
    NULL,
    dmahandle_out)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_dma_alloc_memory, "
    "ERROR ddi_dma_alloc_handle status = %d\n",
    ret);
    return(ret);
    if((ret=ddi_dma_mem_alloc(*dmahandle_out,
    (uint_t) size,
    dma_acc_attr,
    DDI_DMA_CONSISTENT,
    DDI_DMA_SLEEP,
    NULL,
    (caddr_t *)&raw_kern_addr,
    &real_len,
    dma_acc_handle_out)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_ucr_dma_alloc_memory, "
    "ERROR ddi_dma_mem_alloc status = %d\n",
    ret);
    ddi_dma_free_handle(dmahandle_out);
    return(ret);
    This will also init the PCI - IOMMU for
    address translation.
    if((ret=ddi_dma_addr_bind_handle(*dmahandle_out,
    NULL,
    (caddr_t)raw_kern_addr,
    real_len,
    DDI_DMA_RDWR | DDI_DMA_CONSISTENT,
    DDI_DMA_SLEEP,
    NULL,
    &dma_cookie,
    &count)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_ucr_dma_alloc_memory, "
    "ERROR ddi_dma_addr_bind_handle status = %d\n",
    ret);
    ddi_dma_mem_free(dma_acc_handle_out);
    ddi_dma_free_handle(dmahandle_out);
    return(ret);
    if((ret=ddi_dma_sync(*dmahandle_out,
    0,
    real_len,
    DDI_DMA_SYNC_FORDEV)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_ucr_dma_alloc_memory, "
    "ERROR ddi_dma_sync status = %d\n", ret);
    ddi_dma_unbind_handle(*dmahandle_out);
    ddi_dma_mem_free(dma_acc_handle_out);
    ddi_dma_free_handle(dmahandle_out);
    return(ret);

    I am having the similar problem identified in this thread.
    OS: Sun Solaris 10 01/06
    Hardware: Sun Blade 2500
    PCI Memory card.
    Problem: When driver moves more then 40 bytes via PIO from a PCI device memory card, the long words are swapped starting at 40 byte transfer size and greater.
    device memory description:
    static ddi_device_acc_attr_t sdram_access_attr =
    DDI_DEVICE_ATTR_V0, /* Boilerplate value */
    DDI_STRUCTURE_LE_ACC,
    DDI_STRICTORDER_ACC /* Don't reorder accesses */
    The user application does a read call, which goes to xxread. xxread calls physio( xxstrategy, bp, dev, B_READ, xxminphys, uio );
    In xxstrategy the transfer is done using
    ddi_mem_rep_get8(ucb->ucb_sdram_accHndl,
    (uint8_t*) kaddr,
    (uint8_t*) raddr,
    (size_t) bp->b_resid),
    (uint_t) DDI_DEV_AUTOINCR );
    PCI Device memory is loaded with incrementing address (8bit), 0,1,2... This is confirmed using a PCI Bus Analyzer.
    A read of 36 bytes or less returns:
    03 02 01 00 07 06 05 04 ...
    A read of 40 bytes returns:
    07 06 05 04 03 02 01 00 ...
    If I peek 1 byte at a time using ddi_get8(ucb->ucb_sdram_accHndl, ...) I get
    00 01 02 03 04 05 06 07
    Why are the long words swapped starting at 40 byte transfer size and greater?

  • Windows Vista won't install device driver for Palm Centro

    My Windows Vista PC can't seem to find the device driver info to install my new Palm Centro.  I've downloaded the latest version of Palm software.  Any ideas?  Thanks!
    Post relates to: Centro (AT&T)
    This question was solved.
    View Solution.

    ch96hh wrote:
    I am having the same problem - my computer can't find the device driver (Windows Vista) but I DO have bluetooth installed and visible.  Can you help?!  I am really not very good with technical things, but I've done a tone of research and haven't been able to solve the problem.
    Thanks in advance!
    Post relates to: Centro (AT&T)
    Read through the several large threads at the top of this section concerning syncing with Vista64...
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Help needed to install a service for Solaris machines

    Hello,
    I have installed an admin server and 2 managed servers on the solaris box. How do I start the server using a cron job? Can someone point me to the steps please?
    All help will be greatly appreciated.

    Maybe this is of some help to you: http://www.kb.iu.edu/data/afiz.html
    and this example: http://solarisguru.getquickstart.com/2008/05/solaris-crontab.html
    and: http://www.pantz.org/software/cron/croninfo.html

  • How to write ACPI device driver for Solaris 8 (SPARC Edition)

    Hi, All,
    I wonder how to write ACPI driver to access battery life,
    can anyone help ? thanks!!

    I am having the similar problem identified in this thread.
    OS: Sun Solaris 10 01/06
    Hardware: Sun Blade 2500
    PCI Memory card.
    Problem: When driver moves more then 40 bytes via PIO from a PCI device memory card, the long words are swapped starting at 40 byte transfer size and greater.
    device memory description:
    static ddi_device_acc_attr_t sdram_access_attr =
    DDI_DEVICE_ATTR_V0, /* Boilerplate value */
    DDI_STRUCTURE_LE_ACC,
    DDI_STRICTORDER_ACC /* Don't reorder accesses */
    The user application does a read call, which goes to xxread. xxread calls physio( xxstrategy, bp, dev, B_READ, xxminphys, uio );
    In xxstrategy the transfer is done using
    ddi_mem_rep_get8(ucb->ucb_sdram_accHndl,
    (uint8_t*) kaddr,
    (uint8_t*) raddr,
    (size_t) bp->b_resid),
    (uint_t) DDI_DEV_AUTOINCR );
    PCI Device memory is loaded with incrementing address (8bit), 0,1,2... This is confirmed using a PCI Bus Analyzer.
    A read of 36 bytes or less returns:
    03 02 01 00 07 06 05 04 ...
    A read of 40 bytes returns:
    07 06 05 04 03 02 01 00 ...
    If I peek 1 byte at a time using ddi_get8(ucb->ucb_sdram_accHndl, ...) I get
    00 01 02 03 04 05 06 07
    Why are the long words swapped starting at 40 byte transfer size and greater?

  • T61 cannot install device drivers for any device plugged in, no permissions

    Hello to All,
    1. Vista is unable install a simple device driver.  There must be some trick to fix this.
    2. I've changed the one user from Administrator to single user. I can not open a file which requires Admin password. It says "type in password" and doesn't change with no place to type in the password. 
    Typeing => start 'control Userpassword2' ; I get the same message.
    The one user is a member of Administrators and has all rights. Yet has no actual rights, and UAC cannot be turned off.
    Please any help is appreciated.
    Blessings,
    Chetanji

    hi dunchilla,
    Could you please try this once?
    1. Uninstall Ovi Suite, PC Connectivity solution and Nokia Connectivity cable drivers from Add/remove program if anything is there.
    2. Delete the files from here If anything is there
    C:\Documents and Settings\User\Application Data\Nokia\Ovi Suite
    C:\Documents and Settings\user\Local Settings\Application Data\Nokia
    C:\Documents and Settings\All Users\Application Data\OviInstallerCache
    3. Please search and download MSI clean up utility from microsoft website
    Once installed please select the programs related to Nokia and click remove.
    Restart Computer.
    Then download from microsoft website and install Windows Installer, so that the installer is upto date.
    4. Restart the PC
    5. Download and Install latest OviSuite http://europe.nokia.com/support/download-software/​nokia-ovi-suite
    6. Connect the device and select pcsuite mode
    Please THANK me by clicking on the ****WHITE STAR** ( Giving KUDOS) the big GREEN BOX to your LEFT .
    It will help me to serve you better !!!!!
    Thanking You

  • SUN QuadFastEthernet Driver for Solaris 8

    Does anyone knows if I install the drivers for Solaris 2.5 on my Solaris 8 if I have any chance that it will work?

    I am having the similar problem identified in this thread.
    OS: Sun Solaris 10 01/06
    Hardware: Sun Blade 2500
    PCI Memory card.
    Problem: When driver moves more then 40 bytes via PIO from a PCI device memory card, the long words are swapped starting at 40 byte transfer size and greater.
    device memory description:
    static ddi_device_acc_attr_t sdram_access_attr =
    DDI_DEVICE_ATTR_V0, /* Boilerplate value */
    DDI_STRUCTURE_LE_ACC,
    DDI_STRICTORDER_ACC /* Don't reorder accesses */
    The user application does a read call, which goes to xxread. xxread calls physio( xxstrategy, bp, dev, B_READ, xxminphys, uio );
    In xxstrategy the transfer is done using
    ddi_mem_rep_get8(ucb->ucb_sdram_accHndl,
    (uint8_t*) kaddr,
    (uint8_t*) raddr,
    (size_t) bp->b_resid),
    (uint_t) DDI_DEV_AUTOINCR );
    PCI Device memory is loaded with incrementing address (8bit), 0,1,2... This is confirmed using a PCI Bus Analyzer.
    A read of 36 bytes or less returns:
    03 02 01 00 07 06 05 04 ...
    A read of 40 bytes returns:
    07 06 05 04 03 02 01 00 ...
    If I peek 1 byte at a time using ddi_get8(ucb->ucb_sdram_accHndl, ...) I get
    00 01 02 03 04 05 06 07
    Why are the long words swapped starting at 40 byte transfer size and greater?

  • Requesting Oracle Db Client 9i or 10g for Solaris

    Dear friends
    What is the name in "combo box" in metalink when i open an SR that identifies "Oracle Client for Solaris".
    i dont know what it is. Please you could help me?
    thanks
    cesar.

    I believe Oracle don't have CD that only have Oracle client for Solaris.
    They only have client only CD for Windows. To install Oracle client for Solaris you need to use Oracle server CD/DVD, which usually come with a combo box with all kinds of other products as well.

  • Help to install cyrus-sasl-2.1.21 for Solaris 9

    Want to install cyrus-sasl-2.1.21... the configure process : Configuration Complete. Type 'make' to build.
    try make and have next log :
    # make
    make all-recursive
    make[1]: Entering directory `/root/reactor/cyrus-sasl-2.1.21'
    Making all in include
    make[2]: Entering directory `/root/reactor/cyrus-sasl-2.1.21/include'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/root/reactor/cyrus-sasl-2.1.21/include'
    Making all in sasldb
    make[2]: Entering directory `/root/reactor/cyrus-sasl-2.1.21/sasldb'
    ar cru .libs/libsasldb.a db_ndbm.o allockey.o
    make[2]: Leaving directory `/root/reactor/cyrus-sasl-2.1.21/sasldb'
    Making all in plugins
    make[2]: Entering directory `/root/reactor/cyrus-sasl-2.1.21/plugins'
    if /bin/bash ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../lib -I../sasldb -I../include    -Wall -W -g -O2 -MT digestmd5.lo -MD -MP -MF ".deps/digestmd5.Tpo" \
    -c -o digestmd5.lo `test -f 'digestmd5.c' || echo './'`digestmd5.c; \
    then mv ".deps/digestmd5.Tpo" ".deps/digestmd5.Plo"; \
    else rm -f ".deps/digestmd5.Tpo"; exit 1; \
    fi
    gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../lib -I../sasldb -I../include -Wall -W -g -O2 -MT digestmd5.lo -MD -MP -MF .deps/digestmd5.Tpo -c digestmd5.c -fPIC -DPIC -o digestmd5.lo
    digestmd5.c:812: error: parse error before "des_key_schedule"
    digestmd5.c:812: warning: no semicolon at end of struct or union
    digestmd5.c:813: warning: type defaults to `int' in declaration of `ivec'
    digestmd5.c:813: warning: data definition has no type or storage class
    digestmd5.c:814: error: parse error before "keysched2"
    digestmd5.c:814: warning: type defaults to `int' in declaration of `keysched2'
    digestmd5.c:814: warning: data definition has no type or storage class
    digestmd5.c: In function `dec_3des':
    digestmd5.c:849: warning: implicit declaration of function `des_ede2_cbc_encrypt'
    digestmd5.c:852: error: dereferencing pointer to incomplete type
    digestmd5.c:853: error: dereferencing pointer to incomplete type
    digestmd5.c:854: error: dereferencing pointer to incomplete type
    digestmd5.c:855: error: `DES_DECRYPT' undeclared (first use in this function)
    digestmd5.c:855: error: (Each undeclared identifier is reported only once
    digestmd5.c:855: error: for each function it appears in.)
    digestmd5.c: In function `enc_3des':
    digestmd5.c:900: error: dereferencing pointer to incomplete type
    digestmd5.c:901: error: dereferencing pointer to incomplete type
    digestmd5.c:902: error: dereferencing pointer to incomplete type
    digestmd5.c:903: error: `DES_ENCRYPT' undeclared (first use in this function)
    digestmd5.c: In function `init_3des':
    digestmd5.c:918: error: invalid application of `sizeof' to incomplete type `digestmd5.c'
    digestmd5.c:923: warning: implicit declaration of function `des_key_sched'
    digestmd5.c:923: error: `des_cblock' undeclared (first use in this function)
    digestmd5.c:923: error: parse error before ')' token
    digestmd5.c:927: error: parse error before ')' token
    digestmd5.c:929: error: dereferencing pointer to incomplete type
    digestmd5.c:934: error: increment of pointer to unknown structure
    digestmd5.c:934: error: arithmetic on pointer to an incomplete type
    digestmd5.c:936: error: parse error before ')' token
    digestmd5.c:940: error: parse error before ')' token
    digestmd5.c:943: error: dereferencing pointer to incomplete type
    digestmd5.c: In function `dec_des':
    digestmd5.c:967: warning: implicit declaration of function `des_cbc_encrypt'
    digestmd5.c:970: error: dereferencing pointer to incomplete type
    digestmd5.c:971: error: dereferencing pointer to incomplete type
    digestmd5.c:972: error: `DES_DECRYPT' undeclared (first use in this function)
    digestmd5.c:976: error: dereferencing pointer to incomplete type
    digestmd5.c: In function `enc_des':
    digestmd5.c:1021: error: dereferencing pointer to incomplete type
    digestmd5.c:1022: error: dereferencing pointer to incomplete type
    digestmd5.c:1023: error: `DES_ENCRYPT' undeclared (first use in this function)
    digestmd5.c:1027: error: dereferencing pointer to incomplete type
    digestmd5.c: In function `init_des':
    digestmd5.c:1042: error: invalid application of `sizeof' to incomplete type `digestmd5.c'
    digestmd5.c:1047: error: `des_cblock' undeclared (first use in this function)
    digestmd5.c:1047: error: parse error before ')' token
    digestmd5.c:1049: error: dereferencing pointer to incomplete type
    digestmd5.c:1054: error: increment of pointer to unknown structure
    digestmd5.c:1054: error: arithmetic on pointer to an incomplete type
    digestmd5.c:1056: error: parse error before ')' token
    digestmd5.c:1058: error: dereferencing pointer to incomplete type
    digestmd5.c: In function `digestmd5_server_mech_step2':
    digestmd5.c:2095: warning: dereferencing type-punned pointer will break strict-aliasing rules
    digestmd5.c:2112: warning: dereferencing type-punned pointer will break strict-aliasing rules
    make[2]: *** [digestmd5.lo] Error 1
    make[2]: Leaving directory `/root/reactor/cyrus-sasl-2.1.21/plugins'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/root/reactor/cyrus-sasl-2.1.21'
    make: *** [all] Error 2
    What`s the problem ??? I can`t understand :(

    Cool, so i ignore the device conflict warning message and carry on, it gets thru the webstart dialogs to the welcome wizard, display a progress bar which get to 25% and then the wizard disapears, I click 'send kiosk to background', but the wizard has vanished, maybe it went of the visible screen area?
    What i have achived tho is to stripe the disk for raid-1 and re-install the service partition, and the partial webstart intall as above.
    My problem however is that it wont boot up, giving message
    'no bootable partition'. The webstart doco says it creates the required fdisk partitions etc
    There is a note in the 'solaris 9 install guide' that says ...
    'if you restored the service partition before starting the install, you might not be able to upgrade to the Sun OE' .
    Thanks for that Sun. Any ideas guys, perhaps its only a warning message.

  • How can I install Oracle Database 10g for Solaries (SPARC) from the console

    Dear Forum Members,
    In my office, I have to installed Oracle Database 10g for Solaries (SPARC). But I have to do it without DISPLAY Monitor.Is it possible install it by remote login to this server using response file (silent mode) or something like that?
    If yes. Then How?
    If anyone have the exact solution, then I need your feedback. I shall wait for your reply.
    Thanks
    Aungshuman Paul

    There are 2 possible ways to accomplish this.
    First,
    Silent installation
    http://www.informit.com/articles/article.asp?p=174771&rl=1
    Second, (cut/paste from other site)
    How to install Oracle software remotely?
    Remote Software Installation Steps: (For Solaris only)
    If you want to install Oracle Software remotely, you should perform the following steps. These steps are applicable only if your source and target machine are running Unix.
    For example, you can install Oracle Software from your home from Washington, DC to a target source in California.
    1. Pick your source server or machine for remote installation.
    2. Check that your CD is in your source CD-ROM drive.
    3. On the target machine, find your target machine name with the output of the /usr/bin/hostname
    4. On the source machine, login as a user.
    5. On the source machine, enable client access: % /usr/openwin/bin/xhost + target-machine-name
    6. Become root user by typing: su (don’t use -)
    7. Check that Volume Manger is running. # ps –ef |grep vold (if you see an entry that contains /usr/sbin/vold, Volume Manager is running. Then skip to Step 10.
    8. If not then do the following: # mkdir –p /cdrom/your-cd-file-name
    9. # mount –F hsfs –r cdrom-device /cdrom/your-cd-file-name
    10. Add the following line to your /etc/dfs/dfstab file: # share –F nfs –o ro /cdrom/your-cd-file-name
    11. Verify whether your source machine is an NFS server: # ps –ef | grep nfsd
    12. If you see an entry that contains /use/lib/nfs/nfsd –a 16, then nfsd is running and skip to Step 16.
    13. If nfsd is running, then type: # /usr/sbin/shareall
    14. If nfsd is not running, then start nfsd by typing: # /etc/init.d/nfs.server start
    15. Verify whether your source machine is an NFS server again by typing: # ps –ef | grep nfsd
    16. Make sure your source machine is exporting your product directory by typing: # /usr/sbin/dfshares
    17. Now, log in to the target machine by type: # rlogin target-machine-name –l user (not root)
    18. Then log in as the root user by typing: # su
    19. Go to the source machine by typing: # cd /net/source-machine/cdrom/your-cd-file-name ,then Skip to 24.
    20. If you cannot change to that directory in Step 19 and you do not have an auto-mounter on your network, then create amount point by typing the following commands.
    21. # mkdir /remote_products
    22. # /usr/sbin/mount –F nfs –r source-machine:/cdrom/your-cd-file-name /remote_products
    23. # cd /remote_products
    24. Redirect the target machine display to source machine by typing: # DISPLAY=source-machine:0; export DISPLAY (if you use a Bourne or Korn shell).
    25. Start the Web Start Installer by typing: # ./installer (or whatever the installer name program is).

  • How to install nabto plugin for danfoss solar app

    I want to install a plugin for a App taken from the iTunes store "Danfoss Solar App".
    There is a download for a Safari plugin to connect the App via network to an electronic device.
    Called nabto plugin, but I am not able to install the plugin in Safari.
    Does anybody know how to install the plugin from nabto in Safari?

    You need to contact the Danfoss Solar App developer for assistance here.

  • HT1349 Trying to install latest iTunes for Windows 7 64-bit. Keep getting this error message "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services."

    Initially iTunes would not run although it had been running quite well up until now. Suddenly received this error on PC start-up "The program can't start because MSVC80.dll is missing from your computer. Try reinstalling the program to fix this problem." Research on Net pointed me to iTunes as the issue. Tried to start iTunes and received that message again. Tried installing latest version of 64-bit iTunes and received the subject message part way through the install: Trying to install latest iTunes for Windows 7 64-bit. Keep getting this error message "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services."
    iTunes has been running great on this PC for years. What's up?
    Ron

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Windows needs to install driver software for your unknown device

    Windows needs to install driver software for your unknown device
    This is the message that i get when ever i plug in my ipod touch to my computer. the computer is running on vista. i dont know what to do, because i tried to follow the steps suggested, but it didnt work, the computer said that it couldnt find anything and to check with apple for some driver software. HELP!!!

    The iPod touch and iPhone do not use the same type of USB drivers that other Apple devices use. They both require Apple Mobile Device Services to be running. Using this tech article as a guide, you can easily fix this: http://support.apple.com/kb/TS1567

  • Iphone 5- Won't show up in itunes. Error message " Device drivr software was not successfully installed. Please consult with your device manufacturer for assistance getting this device installed. Digital Still Camera- Failed" HELP!

    Error message  " Device driver software was not successfully installed. Please consult with your device manufacturer for assistance getting this device installed. Digital Still Camera- Failed" HELP!

    Hi, I was able to reformat my iPod and that worked. I read it on one of the threads and I am copy pasting the method below:
    I opened the "My Computer" window and right-clicked on my ipod, and then selected "Format". I select "Yes" to format since I don't have anything on the nano to delete anymore.
    I then Eject my nano from the computer and did a restart while the nano is disconnected from the computer.
    Once Windows finish loading I reconnect the USB to the nano(back of computer) which automatically pulls up iTune. It asked me to name the new ipod detected and created a playlist for that specific ipod name.
    Pasted from <http://discussions.apple.com/thread.jspa?threadID=1050784&tstart=15>
    Thanks!

Maybe you are looking for