Proliant install help

I've got Arch installed on my Compaq proliant with a smart 2e raid array containing 3 x 9Gb drives setup as mirors and the 3rd drive the spare.
Arch installed fine and i told grub to install on partition 1 which is my /boot
I rebooted but i get kernel panics saying unknown device hd(0,0)  or root=/dev/discs/disc0/part2 is wrong ?
Menu.lst says
root hd(0,1)        --- grub set this up and ive tried hd(0,0)
kernel (0,0)/vmlinuz26 root=/dev/discs/disc0/part2 ro
Oh forgot to say i can only get the 0.6 Arch installer to detect my array after loading my cpqarray module.
My drive is partitioned as follows
/         =      part2
/boot  =      part1
swap   =      part5
Dont tell me the 0.6 arch-scsi kernel does not have the cpqarray driver compiled in.
Can someone please help me out as im desperate to have Arch on my server.

I've got Arch installed on my Compaq proliant with a smart 2e raid array containing 3 x 9Gb drives setup as mirors and the 3rd drive the spare.
Arch installed fine and i told grub to install on partition 1 which is my /boot
I rebooted but i get kernel panics saying unknown device hd(0,0)  or root=/dev/discs/disc0/part2 is wrong ?
Menu.lst says
root hd(0,1)        --- grub set this up and ive tried hd(0,0)
kernel (0,0)/vmlinuz26 root=/dev/discs/disc0/part2 ro
Oh forgot to say i can only get the 0.6 Arch installer to detect my array after loading my cpqarray module.
My drive is partitioned as follows
/         =      part2
/boot  =      part1
swap   =      part5
Dont tell me the 0.6 arch-scsi kernel does not have the cpqarray driver compiled in.
Can someone please help me out as im desperate to have Arch on my server.

Similar Messages

  • Compaq proliant install help

    Can someone please give me some tips as i need to install Arch on my Compaq Proliant server.
    I know i need the cpqarray , tlan , sym53c8xx_2 , sd_mod , scsi_mod
    But i still cant see the dev files for ida blah blah so Arch cant see my drive.
    I have the raid setup as mirroring ( Raid 1 ) on 3 * 9Gb scsi drives.
    If you have installed Arch on one of these servers can you help me out. I will be using the 0.7.1 noodle cd.
    Regards,
    Justin Smithies

    /etc/udev/udev.conf
    # udev.conf
    # Where in the filesystem to place the device nodes
    udev_root="/dev"
    # The name and location of the udev database.
    udev_db="/dev/.udevdb"
    # The name and location of the udev rules file(s).
    udev_rules="/etc/udev/rules.d"
    # The syslog(3) priority: "err", "info", or the numerical value.
    udev_log="err"
    /etc/udev/scsi-devfs.sh
    #! /bin/sh
    # scsi-devfs.sh: udev external PROGRAM script
    # Copyright 2004 Richard Gooch <[email protected]>
    # Copyright 2004 Fujitsu Ltd.
    # Distributed under the GNU Copyleft version 2.0.
    # return devfs-names for scsi-devices
    # Usage in udev.rules:
    # BUS="scsi", KERNEL="sd*", PROGRAM="/etc/udev/scripts/scsi-devfs.sh sd %b %n",
    NAME="%c{1}", SYMLINK="%c{2} %k %c{3} %c{4}"
    # BUS="scsi", KERNEL="sr*", PROGRAM="/etc/udev/scripts/scsi-devfs.sh sr %b %n",
    NAME="%c{1}", SYMLINK="%c{2} %k %c{3} %c{4}"
    # BUS="scsi", KERNEL="st*", PROGRAM="/etc/udev/scripts/scsi-devfs.sh st %b %n",
    NAME="%c{1}", SYMLINK="%c{2} %k %c{3} %c{4}"
    # BUS="scsi", KERNEL="sg*", PROGRAM="/etc/udev/scripts/scsi-devfs.sh sg %b %n",
    NAME="%c{1}", SYMLINK="%c{2} %k %c{3} %c{4}"
    # Find out where sysfs is mounted. Exit if not available
    sysfs=`grep -F sysfs /proc/mounts | awk '{print $2}'`
    if [ "$sysfs" = "" ]; then
    echo "sysfs is required"
    exit 1
    fi
    cd $sysfs/bus/scsi/devices
    case "$1" in
    sd)
    # Extract partition component
    if [ "$3" = "" ]; then
    lpart="disc"
    spart=""
    else
    lpart="part$3"
    spart="p$3"
    fi
    sr)
    lpart="cdrom"
    spart=""
    st)
    # Not supported yet
    exit 1
    sg)
    lpart="generic"
    spart=""
    exit 1
    esac
    # Extract SCSI logical address components
    scsi_host=`echo $2 | cut -f 1 -d:`
    scsi_bus=`echo $2 | cut -f 2 -d:`
    scsi_target=`echo $2 | cut -f 3 -d:`
    scsi_lun=`echo $2 | cut -f 4 -d:`
    # Generate long and short common name parts
    l_com="bus$scsi_bus/target$scsi_target/lun$scsi_lun/$lpart"
    s_com="b${scsi_bus}t${scsi_target}u${scsi_lun}$spart"
    # Generate long and short logical names
    l_log="scsi/host$scsi_host/$l_com"
    s_log="$1/c${scsi_host}${s_com}"
    readlink $2 | grep -F -q pci
    if [ "$?" != "0" ]; then
    # Not a PCI controller, show logical locations only
    echo $l_log $s_log
    exit 0
    fi
    # Extract PCI address
    tmp=`readlink $2 | sed -e 's@/host.*/.*@@'`
    pci_addr=`basename "$tmp"`
    pci_domain=`echo $pci_addr | cut -f 1 -d:`
    pci_bus=`echo $pci_addr | cut -f 2 -d:`
    pci_slot=`echo $pci_addr | tr . : | cut -f 3 -d:`
    pci_function=`echo $pci_addr | cut -f 2 -d.`
    # Generate long and short physical names
    l_pci="domain$pci_domain/bus$pci_bus/slot$pci_slot/function$pci_function"
    l_phy="bus/pci/$l_pci/scsi/$l_com"
    s_phy="$1/pci/$pci_addr/$s_com"
    echo $l_phy $s_phy $l_log $s_log
    /etc/udev/rules.d/udev.rules
    # This ruleset should provide a DevFS-compatible device tree.
    # There are a number of modifiers that are allowed to be used in some
    # of the different fields. They provide the following subsitutions:
    # %n the "kernel number" of the device.
    # For example, 'sda3' has a "kernel number" of '3'
    # %e the smallest number for that name which does not matches an existing node
    # %k the kernel name for the device.
    # %M the kernel major number for the device
    # %m the kernel minor number for the device
    # %b the bus id for the device
    # %c the string returned by the PROGRAM
    # %s{filename} the content of a sysfs attribute.
    # %% the '%' char itself.
    # There are a number of modifiers that are allowed to be used in some of the
    # fields. See the udev man page for a full description of them.
    # global stuff
    # default permissions for all block devices
    SUBSYSTEM="block", GROUP="disk"
    # CD/DVD symlinks
    BUS="ide", KERNEL="hd[a-z]", PROGRAM="/etc/udev/cdsymlinks.sh %k", SYMLINK="%c{1
    } %c{2} %c{3} %c{4} %c{5} %c{6}"
    BUS="scsi", KERNEL="sr[0-9]*", PROGRAM="/etc/udev/cdsymlinks.sh %k", SYMLINK="%c
    {1} %c{2} %c{3} %c{4} %c{5} %c{6}"
    BUS="scsi", KERNEL="scd[0-9]*", PROGRAM="/etc/udev/cdsymlinks.sh %k", SYMLINK="%
    c{1} %c{2} %c{3} %c{4} %c{5} %c{6}"
    # ide block devices
    BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-devfs.sh %k %b %n", SYMLINK="%c{
    1} %c{2}"
    # permissions for IDE CD devices
    BUS="ide", KERNEL="hd[a-z]", SYSFS{removable}="1", PROGRAM="/bin/cat /proc/ide/%
    k/media", RESULT="cdrom*", NAME="%k", GROUP="optical"
    # permissions for SCSI CD devices
    BUS="scsi", KERNEL="sr[0-9]*", SYSFS{type}="5", NAME="scd%n", GROUP="optical"
    BUS="scsi", KERNEL="sg[0-9]*", SYSFS{type}="5", NAME="%k", GROUP="optical"
    # permissions for IDE floppy devices
    BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-floppy.sh %k", RESULT="floppy",
    NAME{all_partitions}="%k", GROUP="floppy"
    # permissions for removable devices like cardreaders or sticks
    BUS="usb", KERNEL="sd*", PROGRAM="/etc/udev/usb-storage.sh %k", RESULT="1", NAME
    ="%k", GROUP="storage"
    # permissions for ide storage like pcmcia card readers
    BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-storage.sh %k", RESULT="1", NAME
    ="%k", GROUP="storage"
    # permissions for SCSI scanners
    BUS="scsi", KERNEL="sg[0-9]*", SYSFS{type}="6", NAME="%k", GROUP="scanner"
    # pty and tty legacy devices
    KERNEL="pty[a-z][a-z,0-9]*", NAME="legacy/%k"
    KERNEL="tty[a-z][a-z,0-9]*", NAME="legacy/%k"
    # md block devices
    KERNEL="md[0-9]*", NAME="md/%n"
    # device-mapper
    KERNEL="device-mapper", NAME="mapper/control"
    # floppy devices
    KERNEL="fd[0-9]*", NAME="fd%n", SYMLINK="floppy/%n fd%nu1440 fd%nu720 fd%nh1200
    fd%nu360", GROUP="floppy"
    # tty devices
    SUBSYSTEM="tty", GROUP="tty"
    KERNEL="tty[0-9]*", NAME="vc/%n"
    KERNEL="ttyS[0-9]*", NAME="tts/%n", SYMLINK="ttyS%n"
    KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n"
    # vc devices
    KERNEL="vcs", NAME="vcc/0"
    KERNEL="vcs[0-9]*", NAME="vcc/%n"
    KERNEL="vcsa", NAME="vcc/a0"
    KERNEL="vcsa[0-9]*", NAME="vcc/a%n"
    KERNEL="ptmx", MODE="0666"
    KERNEL="tty", MODE="0666"
    # video devices
    SUBSYSTEM="video4linux", GROUP="video"
    KERNEL="dvb*", PROGRAM="/etc/udev/dvb.sh %k", NAME="%c", GROUP="video"
    KERNEL="nvidia*", GROUP="video"
    KERNEL="card[0-9]*", NAME="dri/%k", GROUP="video"
    KERNEL="3dfx*", NAME="%k", GROUP="video"
    # v4l devices
    KERNEL="video[0-9]*", NAME="v4l/video%n", SYMLINK="%k", GROUP="video"
    KERNEL="radio[0-9]*", NAME="v4l/radio%n", SYMLINK="radio%e", GROUP="video"
    KERNEL="vbi[0-9]*", NAME="v4l/vbi%n", SYMLINK="%k", GROUP="video"
    KERNEL="vtx[0-9]*", NAME="v4l/vtx%n", SYMLINK="%k", GROUP="video"
    # dm devices (ignore them)
    KERNEL="dm-[0-9]*", NAME=""
    # i2c devices
    KERNEL="i2c-[0-9]*", NAME="i2c/%n", SYMLINK="%k"
    # loop devices
    KERNEL="loop[0-9]*", NAME="loop/%n", SYMLINK="%k"
    # ramdisks
    KERNEL="ram[0-9]*", NAME="rd/%n", SYMLINK="%k"
    # framebuffer devices
    KERNEL="fb[0-9]*", NAME="fb/%n", SYMLINK="%k", GROUP="video"
    # misc
    KERNEL="rtc", NAME="misc/%k", SYMLINK="%k", GROUP="audio", MODE="0664"
    KERNEL="nvram", NAME="misc/%k", SYMLINK="%k"
    KERNEL="psaux", NAME="misc/%k", SYMLINK="%k"
    KERNEL="agpgart", NAME="misc/%k", SYMLINK="%k" GROUP="video"
    KERNEL="uinput", NAME="misc/%k", SYMLINK="%k"
    KERNEL="random", MODE="0666"
    KERNEL="urandom", MODE="0444"
    KERNEL="mem", MODE="0640", GROUP="kmem"
    KERNEL="kmem", MODE="0640", GROUP="kmem"
    KERNEL="port", MODE="0640", GROUP="kmem"
    KERNEL="full", MODE="0666"
    KERNEL="null", MODE="0666"
    KERNEL="zero", MODE="0666"
    KERNEL="sgi_fetchop", MODE="0666"
    KERNEL="sonypi", MODE="0666"
    KERNEL="inotify", NAME="misc/%k", SYMLINK="%k", MODE="0666"
    # sound devices
    # alsa devices
    SUBSYSTEM="sound", GROUP="audio"
    KERNEL="controlC[0-9]*", NAME="snd/%k"
    KERNEL="hw[CD0-9]*", NAME="snd/%k"
    KERNEL="pcm[CD0-9cp]*", NAME="snd/%k"
    KERNEL="midi[CD0-9]*", NAME="snd/%k"
    KERNEL="timer", NAME="snd/%k"
    KERNEL="seq", NAME="snd/%k"
    # oss devices
    KERNEL="audio*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="dmmidi*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="admmidi*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="dsp*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="adsp*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="midi*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="amidi*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="mixer*", NAME="sound/%k", SYMLINK="%k"
    KERNEL="sequencer*", NAME="sound/%k", SYMLINK="%k"
    # input devices
    KERNEL="mice", NAME="input/%k", MODE="0644"
    KERNEL="mouse*", NAME="input/%k", MODE="0644"
    KERNEL="event*", NAME="input/%k"
    KERNEL="js*", NAME="input/%k", MODE="0664"
    KERNEL="ts*", NAME="input/%k"
    KERNEL="uinput", NAME="input/%k"
    # USB devices
    KERNEL="hiddev*", NAME="usb/%k"
    KERNEL="auer*", NAME="usb/%k"
    KERNEL="legousbtower*", NAME="usb/%k", MODE="0666"
    KERNEL="dabusb*", NAME="usb/%k"
    BUS="usb", KERNEL="lp[0-9]*", NAME="usb/%k"
    BUS="usb", KERNEL="ttyUSB*", SYSFS{product}="Palm Handheld*", SYMLINK="pilot"
    # printer devices
    SUBSYSTEM="printer", GROUP="lp"
    # netlink devices
    KERNEL="route", NAME="netlink/%k"
    KERNEL="skip", NAME="netlink/%k"
    KERNEL="usersock", NAME="netlink/%k"
    KERNEL="fwmonitor", NAME="netlink/%k"
    KERNEL="tcpdiag", NAME="netlink/%k"
    KERNEL="nflog", NAME="netlink/%k"
    KERNEL="xfrm", NAME="netlink/%k"
    KERNEL="arpd", NAME="netlink/%k"
    KERNEL="route6", NAME="netlink/%k"
    KERNEL="ip6_fw", NAME="netlink/%k"
    KERNEL="dnrtmsg", NAME="netlink/%k"
    KERNEL="tap*", NAME="netlink/%k"
    # CAPI devices
    KERNEL="capi", NAME="capi20", SYMLINK="isdn/capi20"
    KERNEL="capi*", NAME="capi/%n"
    # Network devices
    KERNEL="tun", NAME="net/%k"
    # raw devices
    KERNEL="raw[0-9]*", NAME="raw/%k"
    # kbd devices
    KERNEL="kbd", NAME="%k", MODE="0664"
    # packet devices
    KERNEL="pktcdvd", NAME="pktcdvd/control", GROUP="optical", MODE="0660"
    KERNEL="pktcdvd[0-9]*", NAME="pktcdvd/pktcdvd%n", GROUP="optical", MODE="0660"
    pacman -Qi udev
    Name : udev
    Version : 057-1
    Groups : None
    Packager : maci <[email protected]>
    URL : http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
    License : None
    Architecture : i586
    Size : 301287
    Build Date : Mon Apr 18 03:00:55 2005 UTC
    Install Date : Sat Apr 23 19:59:26 2005 UTC
    Install Script : Yes
    Reason: : explicitly installed
    Provides : None
    Depends On : coreutils hotplug
    Required By : None
    Conflicts With : None
    Description : The userspace dev tools (udev)
    Hope that helps.

  • "Application wants to install Helper".  Is this genuine?

    A box keeps appearing saying Application wants to install Helper and asking for my password to access the hard drive.  It just doesn't feel right to me and I wonder if it is genuine.  Would be grateful for any advice.

    Like an idiot, I actually entered my password, Safari crashed, and now it won't open. Sad thing is, I knew it wasn't genuine but was in the middle of a deadline and just was trying to make the window go away. Now every time I relaunch Safari is closes unexpectedly and won't reopen. Help please. Is this malware?

  • My itunes wont pick up my phone so trying to install again but now wont install  help!!!!!!!!!, my itunes wont pick up my phone so trying to install again but now wont install  help!!!!!!!!!

    my itunes wont pick up my phone so trying to install again but now wont install  help!!!!!!!!!, my itunes wont pick up my phone so trying to install again but now wont install  help!!!!!!!!!

    Hello leeminor,
    If your iPhone is not seen in iTunes, please check out this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    If you have already started reinstalling iTunes, may also want to check out this article for the recommended steps to remove and install iTunes correctly.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Thank you for using Apple Support Communities.
    Nubz

  • I have a new pc with win8.1 and I can't get my Photoshop Elements vers 1.0.1 to instal  help, please.

    I have a new pc with win8.1 and I can't get my Photoshop Elements vers 1.0.1 to instal  help, please.
    Please assist with this compatibility issue.   Thank you

    Gordonr18571658 I am sorry I don't have any additional suggestions for how to install Photoshop Elements 1.0 besides installing in compatibility mode for Windows XP.
    As an alternative you can find details regarding Photoshop Elements 13 at Picture editor, edit pictures | Adobe Photoshop Elements 13.  Photoshop Elements 13 has been designed to install and function under Windows 8.1.  There is a 30 day trial if you wish to evaluate the software and complete any current photo editing projects you may be facing.

  • CS5.5 install help!

    I have just purchased CS5.5 but installation will not work (I've tried 5 times!). I have disabled my anti-virus, and my firewall and there are no previous versions on my PC! I have even deleted other Adobe products in case that was the problem. Any suggestions gratefully received as I'm really frustrated!!! Cannot get through to Adobe on the phone either!

    Thank you very much! I will try the links below.
    Unfortunately it is very hard to get in touvh with Adobe! The phone number for Australia is disconnected (if you have an Australian phone number for support I would be very grateful!!!)...and even the Education support number I tried the other day won't answer - have been on hold for 2 x 20minutes with no one answering! And the "chat" option...I've sat and waited for an operator to be available for ages...no operators available!
    I have disabled my anti-virus, and firewall, checked that I have all the appropriate plug-ins ie. Java, Quicktime etc and my computer is brand new, Windows 7 with no previous version of Creative Suite! I have no idea what I'm doing wrong!!!
    Regards,
    Sarah
    sarah trowell
    e [email protected]
    m 0402 814 804
    p (07) 5520 2051
    Date: Wed, 30 Nov 2011 20:26:12 -0700
    From: [email protected]
    To: [email protected]
    Subject: CS5.5 install help!
    Re: CS5.5 install help! created by Preran in Downloading, Installing, Setting Up - View the full discussion
    There are a couple of docs that I can point you to.
    http://kb2.adobe.com/cps/895/cpsid_89564.html
    http://kb2.adobe.com/cps/828/cpsid_82827.html
    If you still have problems, use the Contact Us page. (http://www.adobe.com/support/contact/). You have various options using which you can contact Adobe, including a Chat option.
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4056153#4056153
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4056153#4056153. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • HT1386 well I restored my iPhone and I try to activate it just with my iPhone and it said your iPhone could not be activated because the activation server is temorarily unavailable. So I tried doing it on iTunes and it said SIM card not installed help me

    well I restored my iPhone and I try to activate it just with my iPhone and it said your iPhone could not be activated because the activation server is temorarily unavailable. So I tried doing it on iTunes and it said SIM card not installed help me please.

    please GuyS Pleaseeeeeeeeeeeeeeeeee I am Arabian and i dont know what to do

  • Nokia car kit CK100 install help Audi TT 2003 conc...

    Hi 
    As per subject line. I have Nokia car kit CK100. And require install help for Audi TT 2003 concert radio & Bose. What additional wire harness do i need?
    I'm seeing lots all over ebay and the internet... And getting confused. And is it a simple as buying the lead and plug & play??
    Getting contradicting advice, some say as it bose it needs to be hooked up to the fuse box etc....
    Any help appreciated....

    More information as to what is required upon Page 148 of this resource:http://www.armourauto.com/sites/armourauto.com/files/AUTOLEADS_CATALOGUE_HandsfreeFittingSolutions.p...
    Have to say in UK would approach Nokia Accredited Carkit Installer to get it right first time!
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • My apps don't download/ install help please i'm going mad.

    Hello i purchased Bioshock and assasins creed 2 from the appstore, i click install and nothing happends the install button will still be grey it won't install i;m going mad i tried everything, No app will install, help please i tried everything

    Hey martinzg!
    I have a couple of suggestions for you regarding this issue. First, here is an article about resuming your interrupted downloads from the Mac App Store:
    Mac App Store: How to resume interrupted downloads
    http://support.apple.com/kb/HT4485
    If you are still unable to get the games to download after attempting to resume the interrupted download, you may need to report an issue with your purchases:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Itunes wont open and quicktime will not install. help?

    someone please help. my itunes will not open since i preformed an update (it has not been updated for a few years). i have noticed i no longer have quicktime on my laptop but cant re-install. i get to the 'welcome to quicktime 7 installer' screen, press next and windows installer stops working. some one please help.
    i am running windows vista.
    many thanks

    windows installer has stopped working
    a problem caused the program to stop working correctly.
    windows will close the program and notify you if a solution is avabilable.
    ... and that's one that I wasn't thinking of ...
    Head into your Windows Update. Are there any new updates available for you? If so, and you install, does that clear up the error message?

  • PSE 10  and Adobe CS6: When running silent install help is not working afterwards

    Hello,
    I'm not sure if this is the correct forum. If not: Please help me find the correct one.
    I have a big issue with Adobe CS6 (and former versions like Photoshop Elements 10): When installing it from DVD running GUI everything is working fine afterwards. If I install e.g. Photoshop Elements 10 using "Silent Installation" help is not working afterwards. It states that it cannot locate the URL. I have not installed AIR and also do not plan to install it.
    I have 'played' a little around with Common Files\Adobe\helpcfg and help directory. Now at least I do not get an error message but still it's not the online help which opens in the browser but the web page that is defined as 'home'.
    The same I see now in Adobe CS6. I have e.g. packaged After Effects and Illustrator and when deploying it I'm not able to open help as well and I fear that this is the same issue.
    Has anyone deeper knowledge about how "helpcfg" is working? Any example files? Any other help appreciated as well.
    Kind regards
    János

    @hannilator Have you checked the exceptions folder contents for instructions on how to push to logged off computers? Here's what I get when I package CS6 (DesignWebPrem) and excude AIR/CHC:
    After you have deployed the package, separately install the products in the exception folder.
    IMPORTANT: Before you install the products in the exception folder, refer to the following Adobe Knowledgebase article for information on installing these products and configuring the settings correctly:
    http://www.adobe.com/go/aamee_exceptions
    NOTE: The installation commands provided below will work when the user is logged in to the client machine where the package is being deployed. For the scenario where the user is not logged in, prefix the following string to the command:
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'`
    As an example, here is the command to install "Adobe AIR" when the user is not logged in to the client machine (assuming Adobe AIR is part of the package):
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'` Adobe\ AIR\ Installer.app/Contents/MacOS/Adobe\ AIR\ Installer -silent
    ###################################### Command to install Adobe Dreamweaver Widget Browser ######################################
    Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted -programMenu WidgetBrowser.air
    ###################################### Command to install AdobeHelp ######################################
    InstallAdobeHelp appVersion=4.0.244 appId=chc pubId=4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 installerArg1=-silent installerArg2=-eulaAccepted installerArg3=AdobeHelp.air

  • Oracle 8.1.5 for linux, install help.

    Does anyone have a successful installation of Oracle 8.1.5
    running on Red Hat 6.0? I have tried to install it but, I can't
    get the installer to run. I get java errors when I run,
    runInstaller. I have installed jre1.1.6. Any help would be
    appreciated.
    null

    David Tamburin (guest) wrote:
    : Does anyone have a successful installation of Oracle 8.1.5
    : running on Red Hat 6.0? I have tried to install it but, I
    can't
    : get the installer to run. I get java errors when I run,
    : runInstaller. I have installed jre1.1.6. Any help would be
    : appreciated.
    We have gotten it running on two RH6 machines. Took a little
    extra work.
    Briefly...
    * Make sure you use the latest JRE, and try using the one
    with native threads (if not you will have to hand edit the
    netasst script and remove the -native flag)
    * For some reason some of the libs that get installed are
    zero length. Find the thread on this forum where someone posted
    some sample code to recreate these. If I remember right its the
    libjni library. It is a very short easy compile.
    * Make sure you got lots of RAM (128 min) and double that in
    swap
    * Watch for binaries that get installed without the execute
    bit set. For instance I think tnslsnr is one of them, as well as
    SQLPlus. I can't remember exactly, but that's one other problem
    to watch out for.
    So far things here are working. I even tried a little java in a
    stored procedure. My latest issue is trying to get the PROC
    samples to compile.
    -Scott
    null

  • Mid-2010 27" iMac very slow, even after clean OS install - HELP!

    Good afternoon guys, I'm hoping someone can offer me some advice.
    I bought my Mid-2010 27" iMac in May-ish 2011. Everything was brilliant, I couldn't believe the ease of use, and especially the start up speed, coming from a world of PCs. My iMac was used almost every day, for web browsing, photo editing, etc.
    Maybe about April / May this year it started becoming very slow, slow to boot, slow to respond to mouse clicks, slow to do anything. Since I'd used about 750GB of my HDD (mainly photos), I decided I would archive some and hope that would ease the congestion. As my photos were stored in Aperture, it took about 3 days to export them all to my external HDD, 3 days of the iMac only getting so far, switching itself off, then me finally getting it to come back on (I was getting messages about Kernals, etc. now and again through boot too) - it finally backed up my photos I have from my daughters first year.
    Great news, but I still had probably 400GB / 500GB of photos from her second year and any other photos I'd taken. I found the root of my Aperture directory, and managed to pull these images off, so everything is now backed up.
    I decided I should try and clean install, and managed to get the HDD to boot and choose the option to re-install from Apple's Servers. All installed OK, and we're good to go! Fired up the iMac, and although it's fractionally quicker to respond, and a lot more stable, it's not quite right. And I've lost all my iLife Apps which originally came with the iMac.
    Does this sound like a HDD issue? As I say, it was on quite a lot through the backup procedure, and I had set it (maybe stupidly looking back now) to never sleep, and for the monitor to only switch off after 3 hours. Or does it sound like something more is wrong with it?
    I am quite confident of working with PCs, so would manage to replace the HDD I think, looking at some videos, etc. online. I did upgrade the RAM to 16GB, and that was simple enough. My question is, when you replace the HDD, how does it know where to look to the Apple Servers for the clean OS install? Or do I have to do something to let it know where to look first? I have to point out I don't have any Time Machine backup, etc. as the iMac was just not stable enough to get this in place - and up until that point, again probably stupid now looking back, I had never bothered to set up.
    Any help / advice on this matter would be greatly appreciated. At the moment I have totally fallen out of love with the iMac, for something to cost £1,500+ and only last 3 years, where my last build PC lasted Approx 8 years for half the price, is very disappointing.
    Thanks in advance,
    Col

    Just suggesting things right off the bat here-
    To me it sounds as though the HDD is failing, if your iMac shipped with a Seagate drive try entering your serial number to see if Apple will replace it:http://www.apple.com/au/support/imac-harddrive/
    Or try running Apple Hardware Test a few times back to see if it is a hardware error.
    As for the iLife apps they should've come on one of the install discs that shipped with your mac.
    If your iMac is ineligible for the program above I would consider replacing it yourself with either an SSD or HDD, as for recognising apples servers for download, you will need the original install discs that came with your computer or if you haven't already it will need a firmware update to enable internet recovery
    See here:Computers that can be upgraded to use OS X Internet Recovery
    Good Luck!

  • ITunes corrupted, can't uninstall or re-install  HELP!

    My iTunes program is corrupted, and I am unable to uninstall it. Up to today the program worked, though I could not install any downloaded updates, nor would it let me uninstall the program. However, this morning, it dumped about half of my music, including all of my purchased music from iTunes. My purchased folder is GONE, as is about 3500 songs with art work.
    I uninstalled QuickTime, then ran Windows Installer Cleanup to remove the QuickTime and iTunes programs leftover. (This was the suggestion on b noir from another post) However, when it came to the removing of the iTunes folder from the Program Files folder, I got this message: "ERROR DELETING FILE OR FOLDER - Cannot delete iTunesmini Player.dll: Access is denied." It looks like the folder contents, for the most part "?", is still there. STILL unable to uninstall, cannot reinstall, and my music is still gone.
    I manually sync my iPod, so my music is still on my iPod classic.
    First, I need a working iTunes program. Then I need to retrieve my music.
    Can anyone help me?

    I got this message: "ERROR DELETING FILE OR FOLDER - Cannot delete iTunesmini Player.dll: Access is denied." It looks like the folder contents, for the most part "?",
    Plausibly, that's a damaged file or files.
    Try running a chkdsk over the C drive (or whichever drive the iTunes program files are stored on), as per:
    How to perform disk error checking in Windows XP
    Does the chkdsk find/repair any damage? If so, does the folder delete properly afterwards?

  • HP 8500 Wireless printer will not install - HELP!

    I am using a new i7 MacBook Pro with boot camp running Windows 7 Professional 64bit with 8mb RAM.
    When trying to install my new HP8500 Wireless printer I get this error message:
    "Problem with the driver for Intel 5 Series/3400 series chipset family USB Universal Host controller - 3B36. Reinstalling the diver might fix this problem"
    I have installed the boot camp 3.1 drivers twice and no help. I need help with details as I am no expert!
    Message was edited by: GregGebhardt

    The same problem here:
    http://discussions.apple.com/thread.jspa?messageID=11448150&#11448150
    here:
    http://discussions.apple.com/thread.jspa?messageID=11431058
    and here:
    http://discussions.apple.com/thread.jspa?messageID=11431948

Maybe you are looking for