Auto install JAI?

Hi,
Does exist a way to auto install the JAI package on the client machine? maybe with Java web start or something like that..
I write an applet who use JAI.. when this package is not detected, I want a button who ask to the client if he wants to install JAI. The client can be on a Mac, PC or Unix (Sun/PC).
Is it possible?
Thanks
Patrick

My applet tag required the JRE 1.4.
I found the way how to launch the JAI installer if the package it's not found on the computer.
It works well.. except for Mac, because JAI for mac is availabale in a DMG file from Apple, not from Sun. I dont know how to lauch this file with the Java auto install package system.

Similar Messages

  • Messages.app no longer connects to Jabber after App Store auto-installed Remote Desktop Update 3.8.2

    Messages.app no longer connects to my company's Jabber server after App Store auto-installed Remote Desktop Update 3.8.2 (even though I never purchased that app). The Remote Desktop app can not be found anywhere on my machines.
    I suspect the Remote Desktop update because Messages stopped connecting on my office MB Air after the update but still worked on my home iMac. Next day the iMac received the update and Messages stopped connecting on that machine too.
    Messages attempts to connect for several minutes (it's been trying for 30 mins as I type this) and just hangs. Occasional I get the following error message:
    Error: Messages lost the connection to the Jabber account 'account'. A network error occurred.
    I've tried:
    - Deleting and recreating the Jabber account in Messages.app
    - Toggling on/off SSL (SSL required by our server)
    - Toggling on/off auto detect server and port (port 5222 on our server)
    - Deleting every plist, cache, etc., I could find in the Library for any IM client I've ever used
    - Checked that Keychain trusts the Jabber server SSL certificate (it is a self signed cert)
    - Tried connecting from three completely different networks including the company VPN
    - Multiple PRAM resets
    - Setup a Google Talk account in Messages - works fine
    I'm at a loss...
    Kurt

    I installed and setup Adium. Adium works but Messages.app still does not connect to Jabber.

  • Auto install of 1.4.1_02 -- How?

    I can't seem to get web start to auto install 1.4.1_02. If I use the following JNLP, it installs 1.4.1, not 1.4.1_02.
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp
    spec="1.0+"
    codebase="http://myapp.com/myapp"
    href="myapp.jnlp">
    <information>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4.1*" max-heap-size="144M" href="http://java.sun.com/products/autodl/j2se"/>
    </resources>
    <application-desc />
    </jnlp>
    Also, trying a version="1.4.1_02" gives an error when trying to install/download saying it is not found.

    The bug was "Closed, will not be fixed". See http://developer.java.sun.com/developer/bugParade/bugs/4827788.html
    This is rediculous!
    Everyone should submit a duplicate bug like this until they take us seriously.
    How can anyone rely on Web Start to auto-install a JRE if it will only install the x.x.0 version!

  • How to install PSE-12 x64 vs auto install of x32?

    I believe I followed all directions for install of PSE-12 from the Adobe PSE-12 DVD, but the auto-install puts the PSE-12 x32 version rather than the x64 version on both of my computers.  Computer-1 is an HP Pavillion Elite HPE 180t with 12GB of ram and an NVIDIA GPX 550i graphics card and is running Win-7 x64 with all Win-7 updates loaded.  Computer-2 is a new Acer Aspire V5-573P-9600 with 8GB of ram, Intel i7 CPU and Intel HD 4500 graphics adapter and is running x64 Win-8.1.  Both of these computers appear to comply with the hardware requirements needed to run the x64 version of PSE-12.  I upgraded to PSE-12 for the added features and capability ot run in x64 format as I do with Adobe Premier Elements.  Is there a way that I can force an install of PSE-12 x64 on my two computers?   Thanks in advance for any insight or assistance with my install issue.

    PSE12 is only available in 32 bit on Windows at present although a 64bit version is avaiable for Mac OSX. It will automatically install in Program Files (x86)
    PRE12 is available in 64 bit and will install in Program Files.

  • My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?

    My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?
    thanks

    for windows you should have an exe and a 7z file.  put both in the same directory and double click the exe.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Problem Installing JAI

    Hi
    I have installed JAI and included the .zip and .jai files in the classpath, but the JAI ImageReaders havn't got registered with ImageIO.
    Without JAI:
    code:
    Iterator<ImageReader> iterator=ImageIO.getImageReadersBySuffix("jpg");
    while(iterator.hasNext()){
    ImageReader reader=iterator.next();
    System.out.println("Reader " + reader.getClass().getName() + "\n" + (reader.readerSupportsThumbnails()?"does ":"doesn't ") + "support thumbnails");
    output:
    Reader com.sun.imageio.plugins.jpeg.JPEGImageReader
    does support thumbnails
    It says it does support thumbnails, but I'm still not able to read any.
    With JAI
    commandline:
    java -classpath jai-1_1_3-lib.zip:jai_codec.jar:jai_core.jar:. classfile
    output:
    Reader com.sun.imageio.plugins.jpeg.JPEGImageReader
    does support thumbnails
    I get the same ImageReader that I had previously! This ImageReader says it can read thumbnails, but it doesn't actually. I want an ImageReader that can read thumbnails, ie. I don't want "com.sun.imageio.plugins.jpeg.JPEGImageReader" but something else.
    Does anyone know how to install JAI properly, I mean does anyone know how to get new pluggin ImageReaders from JAI registered with ImageIO? My images do have thumbnails, I'm just trying to read them.

    The JAI-ImageIO package dosen't have its own JPEG image reader, so you'll still get the com.sun.imageio.plugins.jpeg.JPEGImageReader one. My recomendation for the ImageIO library was only because you said you wanted to support a few more image formats.
    While JAI core does have it's own JPEG "codec", I don't think JAI supports extracting information from an image's metadata. JAI is more about manipulating the core image, not about the finer details of a file's header.
    Lastly, in the code I posted in the previous post I made a fairly significant blunder.
    if (reader.readerSupportsThumbnails()) {
    }That if statement should have a not equals (!) exclamation mark. If you used my code then you probably kept getting "Image format does not support thumnails" when it does.
    So the question then is whether the standard JPEGImageReader correctly reads thumnail data. Here's my story of trying to answer that question:
    I googled for some programs for which I could insert a thumnail in the JPEG's metadata. The programs that came up were really old, but I used one of them. When I tried reading the embeded jpg thumnail from java I got an Exception stating that the thumnail was not a JFIF image. Basically, the first version of JPEG had some shortcommings. What's now used by pretty much everyone and everything is JPEG File Interchange Format or JFIF for short. To remedy the situation I needed a newer program to insert the thumnail.
    After googling some more, I learned that when saving an image as JPEG in Adobe Photoshop that little checkbox called "Preview" will attach a thumnail to the JPEG's metadata. I was able to confirm visually with the older program that this worked (that Adobe Photoshop inserted a thumnail). Going back to java, when I tried to read the thumnail - lo and behold - JPEGImageReader did not see the thumnail . When I look at the source code of JPEGImageReader it looks like it does make an attemp at looking for a thumnail. Obviously, something went wrong though. I don't know whether the JPEGImageReader is picky or it just dosen't see the thumnails, but in either case this is probably a bug. A quick bug search shows there is are several bugs related to JPEGImageReader and thumnails.
    At this point all I can recommend is that if you want to load embeded jpg thumnail data through java you will need to google search for 3rd party jpeg image readers. You won't find a different JPEGImageReader in JAI-ImageIO or JAI.
    As for the classpath thing you're suppose to set it on the Manifest File of your program, not the one that appears in the jdk or jre folder.

  • Automatically upgrade any superseded versions of this application not auto installing - Status always waiting for next maintenance schedule

    Hello,
    I'm trying to deploy an application to a user group with the option checked for "Automatically upgrade any superseded versions of this application" but it never auto installs.
    - The application is set to install to system whether the user is logged on or off. 
    - We do have user affinity, therefore the user does have a one or more primary devices setup.  
    - If I run the install manually, it will superseded and install the new application and uninstall the old applications.
    - The estimated installtion time minutes is set to 0
    - The maxmimum allowed run time is set to 120 minutes.
    We're on version SCCM 2012 SP1.
    My assumption of how it should work
    If the user is logged in or NOT and it's during the maintenance window, it should auto install the application. Maybe I'm wrong.
    Here's the scenario.
    User JohnDoe has application Viewer 1.0 installed on his machine.  He installed this app via the SCCM application catalog.   We now need to deploy Viewer 2.0 of this application.   I want to ensure when it's deployed it replaces Viewer 1.0 hence
    the reason to check the "auto upgrade.."check box.   
    Here's what happens. In software center, it will pre-downlaod the software and then set the status to "Waiting for next maintenance schedule".  The problem is that the status stays like this forever.   We do have maintenance windows set
    on the device collection that JohnDoe's primary device is part of.  Here are our maintenance windows.
    - Daily - 9PM to 5AM = 8 hours
    - Weekly - Saturday - 12:00AM to 12:00 = 24 hours
    - Weekly - Sunday - 12:00AM to 12:00 = 24 hours
    Coordinated UTC is not checked.
    The business hours in software center are set to 5am to 10pm.
    One would assume that it would auto install during the night since we have a big maintenance windows. I checked the ServiceWindowmanager.log and it does seem to show the various maitnenance windows.
    Here's what I've tried
    - If I make the deployment required, it will install right away regarless of maintenance windows.  However, i don't want to use this option because if the user logs in to other machine (e.g. boardroom computer), it will auto install this software.  
    - If JohnDoe clicks install in Software center or application catalog, it works.  There's nothing wrong with the packages.  The issue seems to be related with the maintenance windows. 
    - If I disable the maintenance windows, then it seems to work but only when I'm logged in.  It still does not work if I'm logged out.  It only kicks off the installation when I login if it's not during the business hour set in software center.  
     We need the maintenance windows since we don't want windows patching to occur during the day.
    - I searched and ran the report to ensure there's not another maintenance windows setup that would prevent this from installing.
    Our current workaround
    To ensure users are using the latest version, we deploy the application required for a couple of days, then delete that deployment once we reach a high 90%.  The problem with that is if some computers are turned off, they would be using the older version
    and it will never get upgraded unless the user installs it manually.
    Has anyone encountered this?  Any other log files I should look at? Anything else I should verify ?  I know in SCCM 2012 R2, you can set the maintenance window to only apply this schedule to software update (patching) but that option doesn't seem
    to be available in SCCM 2012 SP1.
    Any help, suggestiong, I will take.  Thanks.

    - If I make the deployment required, it will install right away regarless of maintenance windows.  However, i don't want to use this option because if the user logs in to other machine (e.g. boardroom computer), it will auto install this software. 
    Re-check your deployment, specially the user experience:
    If you've checked the box next to "Software installation", it will install after the deadline has passed and ignores maintenance windows. Change the deployment to required and uncheck that box and the software should be installed according to your
    maintenance windows.

  • How to setup Server 2008-2012 R2 to auto-install 3rd party updates

    I've been searching for about a month now on an easy way to install third party software updates  for individual workstations using the company's server.
    We have two, one is a 2008 server and the other is 2012 R2.  
    Is there any way I can set it up to where the updates will auto install without prompts or effecting productivity?

    Hi Rick
    there is no way you can set this up using existing built-in tools inside windows server. You would need to setup your existing infrastructure using some 3rd party tools.
    Hope this helps.
    Thanks
    Mohit

  • To auto install or not?

    We are preparing for our first UCS firmware upgrade since implementing over a year ago.  We have 10 blades, all B200 M3 between 2 chassis currently.  We are on 2.2(1b) and are preparing to upgrade to 2.2(3d).
    Seems like auto install would be the way to go for us - however a TAC engineer today said that while the auto install should would fine, most people in TAC recommend a manual upgrade.  The reason given is that if issues are experienced, then the manual upgrade leaves you in control of what is going on during the process, which can help limit complications.
    What do others find is the best method for updating?

    my 2c
    - autoinstall has 2 parts: infrastructure (UCSM, FI and IOM) and servers
    - autoinstall infrastructure follows the strict time order, e.g. UCSM first,....if you do it manually, you have to know when to do what.
    - most of the trouble happens with autoinstall infrastructure, e.g. IOM and/or FI are dead, sometimes autoinstall hangs, which can be recovered by starting it a second time
    - autoinstall servers is using Host Firmware Packages (and if you don't use HFP in your service profiles, don't forget that the default is "HFP default"
    In my opinion and experience, autoinstall works fine; follow the best practice guidelines
    - have a maintenance policy with ACK in place
    - if one fabric is updated and wait for ACK: check very carefully, if FI and IOM are up and configuration (cluster state) is ok, before giving the ACK
    - HFP for servers does BIOS, I/O adaptor, CIMC update requiring one server reboot; if you do that manually, it requires multiple reboots....
    Cheers Walter.

  • Firefox frequently 'not responding' having auto-installed version 10 yesterday. No previous problems. Have disabled all plugins and uninstalled and then re-installed Firefox several times today. Problem persists. Can anyone help please?

    Firefox frequently 'not responding' having auto-installed version 10 yesterday. No previous problems. Have disabled all plugins and uninstalled and then re-installed Firefox several times today. Problem persists making continued use of this browser very unlikely unless a quick solution is found! Can anyone help please?

    Perform the suggestions mentioned in the following articles:
    * [[Firefox is already running but is not responding]]
    * [[Firefox hangs]]
    Check and tell if its working.

  • Mountain Lion not auto installing

    Downloaded onto MBP after succesfully installing on imac, but after installation complete on MBP nothing changed, it's still running 10.7.4.
    Tried to re-start and still the same, any idea how to kick start the auto install again?

    Downloaded onto MBP after succesfully installing on imac, but after installation complete on MBP nothing changed, it's still running 10.7.4.
    Tried to re-start and still the same, any idea how to kick start the auto install again?

  • Auto-install updates, with no user interaction?

    Due to problems with malware, we can't really trust everyone to be logged on with administrator privileges all the time as it used to be with Windows 2000 and XP. Consequently the installed software can not be modified by staff anymore.
    This doesn't affect Windows Updates since those can be configured to install automatically on a schedule without any user interaction or privilege elevation.
    Java for Windows however does not detect when a logged in user does not have administrative rights, so it offers updates to everyone who logs on, including people who can not and will not ever be able to install the updates.
    One "solution" is to turn off the update checking so that people aren't hassled by useless update notifications, but then this means Windows desktops will gradually fall further and further out of date, opening them up to attack by malware that exploits unpatched bugs in older Java versions.
    The proper solution that I really want, is for Java to be capable of auto-update and self-install without any user interaction or privilege elevation at all. However so far I have not found a solution for this.
    A hack may be possible using Windows group policy, the Windows Server task scheduler, and a java website screenscraper.
    Nightly:
    * Screenscrape Java.com for a newer client version
    * If new one is found, download, put in global read-access share
    * Using a database of machines known to be running Java, flag each candidate that's using an older version
    * Wake-on-LAN the machines needing the update
    * Schedule a remote install of the update with Administrative privileges
    * If update successful, clear flag for that machine in central database
    * shut down again for the night.
    OR
    Java programmers could implement an auto-install mechanism of their own, that can run by itself without user interaction at system startup, shutdown, or on a timed schedule set by the administrator through registry entries (and therefore configurable via group policy applied to desktops).
    ==========
    How are other network administrators handling managed business desktops that need periodic, automatic, and non-interactive Java updates?

    We use Altiris Software Delivery solution to deploy our Java updates but you could also use similar solutions such as Microsoft System Center Configuration Manager.
    The problem is that these are both options that cost money and require investment and training.
    Altiris allows you to create a collection based on the text string held in the Add/Remove Programs list (as well as other fields) - so you can easily create a collection of computers that do not have the required version of Java.
    You can then create a software delivery task to silently install Java with admin rights and target it towards the collection that needs updating.
    The collection updates dynamically. As the computers get Java they drop out of the collection and are no longer targetted for upgrade. This used to work well for me - as I could update about 500 machines in about 2-3 days.
    The problem is that the Java installer doesn't work consistently as you mentioned since JRE 6u25 - the installer doesn't always behave as expected and the switches to do silent installs keep changing. You also have a problem if you try to update Java and the person has their web browser open... Yes, I do my updates during working hours as well.
    In a constantly changing environment in terms of security - you'd think Oracle would have sorted the deployment options out by now?

  • Auto-install a new web server instance

    Hi, i'm attempting to install a Sun ONE Web Server on my workstation as part of a tutorial for Sun Identity and Acess Management Servers.
    Within the tutorial it is stated that this web server is completely seperate from the web server within the Identity Server, and simply involves running an auto-install script called "install-webserver.sh".
    Each time i attempt to run this script I am recieving a "bad interpreter: Permission denied" error message.
    The line !/bin/sh is at the top of my file and yet this error is still occuring. The file was ftp'd from my windows NT directory across to my Unix directory "/export/home/opt/SUNWam/bin", and it is in this directory that I am attempting to run this scrpt.
    So, does this sound in any way familiar to anyone?? I can provide you with the script if necessary.
    Kind regards,
    Stephen

    6.1 unfortunately does not provide a way to create instances through command line tool. With 7.0 (soon to be released as Beta in the coming weeks) will have a full fledged command line tool for all server administration tasks
    meanwhile, as a temporary work around one could do the following within a shell or perl script.
    [ this approach is totally not supported by Sun. You are on your own ]
    1. cd INSTALL_ROOT
    2. copy https-HOSTNAME to https-test (/bin/cp -Rf https-HOSTNAME https-TEST) - assuming TEST is the new instance name that you want to create.
    3. use a script to edit the following files and replace 'https-HOSTNAME' to https-TEST in all occurrences.
    list of files to change:
    start , stop , reconfig , restart , rotate
    config/magnus.conf
    config/server.xml
    4. finally, you can use 'HttpServerAdmin' to change the listener port, security settings etc
    ./bin/https/bin/HttpServerAdmin -h
    http://docs.sun.com/source/819-0130/agcmdln.html
    for eg ( i would do something like this )
    (to create instance https-TEST from default server instance, assuming you do not have special ACL file configured in the default instance, I would do something like )
    use a perl script to copy https-HOSTNAME to https-TEST
    (/bin/cp -Rf https-HOSTNAME https-TEST)
    /bin/cp httpacl/generated.http-HOSTNAME.acl httpacl/generated.http-TEST.acl
    cd https-TEST
    replace https-HOSTNAME to https-TEST in following files (start, stop, restart, reconfig, rotate, config/magnus.conf, config/server.xml)
    cd ..
    now delete the listener socket id
    ./bin/https-TEST/bin/HttpServerAdmin delete -l -id ls1 -sinst https-TEST -d INSTALL_ROOT (where you server is installed)
    followed by create a new listener socket id
    ./bin/https-TEST/bin/HttpServerAdmin create -l -id ls1 -ip ANY -port NEW_PORT -sname HOSTNAME -defaultvs https-TEST -sinst https-TEST -d INSTALL_ROOT
    [ similarly, you can perform other server admin tasks using this command' ]

  • HPLIP auto install: does it work?

    I just bought an HP printer. Then I was installing HPLIP during 2.5 days; more than expected. (Needless to say I was cursing HP the last day). Now I am happy to succeed, but I also feel that it was a good luck. I think this story should be shared.
    I am a Linux user since 1998, of rather low geekness. Almost always I use precompiled binaries. Thus I hoped to use auto install (and ultimately did). Last years I use Debian.
    It seems I understand now the origin of the problem. People of hplipopensource.com take the current release of Debian (among other distros), and adapt auto-installer to this release. After that, Debian people include this new version of auto-installer to the next release of Debian. And so on. As a result, the auto-installer never works! It always complains that this release is not supported yet.
    I installed Debian 7.1 from my (somewhat old) DVDs. I instructed the installer not to use any network mirror. Do not laugh, this is essential. (When I did otherwise, I got Debian 7.4 instead of 7.1 - not supported yet...) According to this Debian release, the Installation Wizard gave me auto-installer 'hplip-3.14.1.run'. Running it I got a message: "Disable the CD sources in your apt sources list". Frankly, I use Synaptic rather than apt. Well, I've found this /etc/apt/sources.list and commented out all CD sources. Running hplip again I saw that it fails to install even gcc. Well, no wonder: no network mirror. I added a network mirror. The rest was rather easy.
    So, I got the impression that a not-so-geeky Linux user, like me, have some positive, but rather small probability to pass through all timing conditions before selling his/her new HP printer. Indeed, if Linux is quite new, it is not yet supported. If it is a bit older than needed, a new hplip fails for this reason, while an old hplip does not support the brand new printer (I guess so; I did not try). And most importantly: the hplip site tells me that
        Debian 7.1 supplies HPLIP 3.12.6 and it does support your printer.
        As the version of HPLIP supplied with your operating system supports your printer, you may continue to use that version of HPLIP.
    That is true; but it forgets to add that my distro contains an outdated version; it just does not work. What a catch!
    Or maybe I am naive somehow? Others seem to feel better. What do I miss?
    This question was solved.
    View Solution.

    Wow, it does work, the HPLIP auto install!
    See my session below.
    The following five points appeared to be critical for me.
    1. The hplip site says:
     "Debian 7.1 supplies HPLIP 3.12.6 and it does support your printer. As the version of HPLIP supplied with your operating system supports your printer, you may continue to use that version of HPLIP". No, do not believe. Download the last version (in my case, hplip-3.14.1.run), later called "XXX.run".
    2. Ensure that your repositories contain no CD/DVD (the auto-installer will warn you), and do contain "main" and "contrib" (the auto-installer will not warn you); "non-free" is not needed. I did it via Synaptic Package manager (Settings->Repositories).
    3. Run the XXX.run file by a command line "sh XXX.run" issued in the terminal window under GUI (not the console). Do not be root, and do not use "sudo". Rather, you need to know the root password.
    4. You'll get an error message like this: "error: debian-7.4 version is not supported, so all dependencies may not be installed. However trying to install using debian-7.2 version packages".
    Do not bother too much; in my case this was harmless. Answer "y".
    5. The final error message "RuntimeWarning: PyOS_InputHook is not available for interactive use of PyGTK set_interactive(1)" is also harmless.
    After the message
     "PRINTER SETUP. Please make sure your printer is connected and powered on at this time"
    you should get a graphical panel
     "HP Device Manager - Setup. Device discovery".
    Do the needed choice (in my case, USB), click "Next". You should get another graphical panel
     "HP Device Manager - Plug-in Installer. Driver Plug-in Installation".
    Choose "Download", click "Next" and be patient; in my case it took 5 minutes, with no visible progress. Next graphical panel:
    "Driver Plug-in License agreement". Browse it to the end, click "Agree"; observe message "Plug-in installation successful", click "OK".
    The last graphical panel: "HP Device Manager - Setup. Setup Device". Mark "Send test page", click "add printer" and hope for the best.
    boris@debian:~$ sh hplip-3.14.1.run
    Creating directory hplip-3.14.1
    Verifying archive integrity... All good.
    Uncompressing HPLIP 3.14.1 Self Extracting Archive...................................................................................................
    HP Linux Imaging and Printing System (ver. 3.14.1)
    HPLIP Installer ver. 5.1
    Copyright (c) 2001-13 Hewlett-Packard Development Company, LP
    This software comes with ABSOLUTELY NO WARRANTY.
    This is free software, and you are welcome to distribute it
    under certain conditions. See COPYING file for more details.
    Installer log saved in: hplip-install_Thu-27-Feb-2014_19:04:37.log
    note: Defaults for each question are maked with a '*'. Press <enter> to accept the default.
    error: debian-7.4 version is not supported, so all dependencies may not be installed. However trying to install using debian-7.2 version packages.
    Press 'y' to continue auto installation. Press 'n' to quit auto instalation(y=yes, n=no*): y
    INSTALLATION MODE
    Automatic mode will install the full HPLIP solution with the most common options.
    Custom mode allows you to choose installation options to fit specific requirements.
    Please choose the installation mode (a=automatic*, c=custom, q=quit) :
    Initializing. Please wait...
    INTRODUCTION
    This installer will install HPLIP version 3.14.1 on your computer.
    Please close any running package management systems now (YaST, Adept, Synaptic, Up2date, etc).
    DISTRO/OS CONFIRMATION
    Distro appears to be Debian 7.4.
    Is "Debian 7.4" your correct distro/OS and version (y=yes*, n=no, q=quit) ?
    ENTER ROOT/SUPERUSER PASSWORD
    Please enter the root/superuser password:
    INSTALLATION NOTES
    NOTE: Disable the CD Sources in your apt sources.list or the install will fail and hang.
    Please read the installation notes. Press <enter> to continue or 'q' to quit:
    RUNNING PRE-INSTALL COMMANDS
    OK
    INSTALL MISSING REQUIRED DEPENDENCIES
    warning: There are 9 missing REQUIRED dependencies.
    note: Installation of dependencies requires an active internet connection.
    warning: Missing REQUIRED dependency: gcc (gcc - GNU Project C and C++ Compiler)
    warning: Missing REQUIRED dependency: libpthread (libpthread - POSIX threads library)
    warning: Missing REQUIRED dependency: make (make - GNU make utility to maintain groups of programs)
    warning: Missing REQUIRED dependency: python-devel (Python devel - Python development files)
    warning: Missing REQUIRED dependency: cups-devel (CUPS devel- Common Unix Printing System development files)
    warning: Missing REQUIRED dependency: libusb (libusb - USB library)
    warning: Missing REQUIRED dependency: libtool (libtool - Library building support services)
    warning: Missing REQUIRED dependency: cups-image (CUPS image - CUPS image development files)
    warning: Missing REQUIRED dependency: libjpeg (libjpeg - JPEG library)
    INSTALL MISSING OPTIONAL DEPENDENCIES
    warning: There are 8 missing OPTIONAL dependencies.
    note: Installation of dependencies requires an active internet connection.
    warning: Missing REQUIRED dependency for option 'network': libcrypto (libcrypto - OpenSSL cryptographic library)
    warning: Missing REQUIRED dependency for option 'network': libnetsnmp-devel (libnetsnmp-devel - SNMP networking library development files)
    warning: Missing OPTIONAL dependency for option 'network': avahi-utils (avahi-utils)
    warning: Missing REQUIRED dependency for option 'gui_qt4': pyqt4-dbus (PyQt 4 DBus - DBus Support for PyQt4)
    warning: Missing REQUIRED dependency for option 'gui_qt4': pyqt4 (PyQt 4- Qt interface for Python (for Qt version 4.x))
    warning: Missing REQUIRED dependency for option 'fax': dbus (DBus - Message bus system)
    warning: Missing REQUIRED dependency for option 'scan': sane-devel (SANE - Scanning library development files)
    warning: Missing OPTIONAL dependency for option 'scan': xsane (xsane - Graphical scanner frontend for SANE)
    CHECKING FOR NETWORK CONNECTION
    Network connection present.
    RUNNING PRE-PACKAGE COMMANDS
    su -c "dpkg --configure -a" (Pre-depend step 1)
    su -c "apt-get install -f" (Pre-depend step 2)
    su -c "apt-get update" (Pre-depend step 3)
    warning: An error occurred running 'su -c "apt-get install --yes cupsys-bsd"'
    su -c "apt-get install --yes cupsys-bsd" (Pre-depend step 4)
    OK
    DEPENDENCY AND CONFLICT RESOLUTION
    Running 'su -c "apt-get install --force-yes -y g++"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libc6"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y make"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y python-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libcups2-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y cups-bsd"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y cups-client"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libusb-1.0.0-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libtool"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libcupsimage2"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libcupsimage2-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libjpeg8-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libssl-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libsnmp-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y avahi-utils"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y python-qt4-dbus"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y python-qt4"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libdbus-1-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y libsane-dev"'
    Please wait, this may take several minutes...
    Running 'su -c "apt-get install --force-yes -y xsane"'
    Please wait, this may take several minutes...
    HPLIP-3.12.6 exists, this may conflict with the new one being installed.
    Do you want to ('i'= Remove and Install*, 'o'= Overwrite, 'q'= Quit)? :
    Starting uninstallation...
    HPLIP uninstallation is completed
    RUNNING POST-PACKAGE COMMANDS
    OK
    RE-CHECKING DEPENDENCIES
    PRE-BUILD COMMANDS
    OK
    BUILD AND INSTALL
    Running './configure --with-hpppddir=/usr/share/ppd/HP --prefix=/usr --enable-qt4 --disable-libusb01_build --enable-doc-build --disable-cups-ppd-install --disable-foomatic-drv-install --disable-foomatic-ppd-install --disable-hpijs-install --disable-udev_sysfs_rules --disable-policykit --enable-cups-drv-install --enable-hpcups-install --enable-network-build --enable-dbus-build --enable-scan-build --enable-fax-build'
    Please wait, this may take several minutes...
    Command completed successfully.
    Running 'make clean'
    Please wait, this may take several minutes...
    Command completed successfully.
    Running 'make'
    Please wait, this may take several minutes...
    Command completed successfully.
    Running 'su -c "make install"'
    Please wait, this may take several minutes...
    Command completed successfully.
    Build complete.
    POST-BUILD COMMANDS
    CLOSE HP_SYSTRAY
    Sending close message to hp-systray (if it is currently running)...
    HPLIP UPDATE NOTIFICATION
    Do you want to check for HPLIP updates?. (y=yes*, n=no) :
    RESTART OR RE-PLUG IS REQUIRED
    If you are installing a USB connected printer, and the printer was plugged in
    when you started this installer, you will need to either restart your PC or
    unplug and re-plug in your printer (USB cable only). If you choose to restart,
    run this command after restarting: hp-setup (Note: If you are using a parallel
    connection, you will have to restart your PC. If you are using network/wireless,
    you can ignore and continue).
    Restart or re-plug in your printer (r=restart, p=re-plug in*, i=ignore/continue, q=quit) :
    Please unplug and re-plugin your printer now. Press <enter> to continue or 'q' to quit:
    PRINTER SETUP
    Please make sure your printer is connected and powered on at this time.
    RE-STARTING HP_SYSTRAY
    HP Linux Imaging and Printing System (ver. 3.14.1)
    System Tray Status Service ver. 2.0
    Copyright (c) 2001-13 Hewlett-Packard Development Company, LP
    This software comes with ABSOLUTELY NO WARRANTY.
    This is free software, and you are welcome to distribute it
    under certain conditions. See COPYING file for more details.
    /usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:127: RuntimeWarning: PyOS_InputHook is not available for interactive use of PyGTK
    set_interactive(1)
    boris@debian:~$

  • What triggers WebUtil auto-install?

    We are trying out JInitiator 1.3.1.14 with our 9i Forms app as suggested by Pedro Garza to fix 9i Forms on XP: the even more final insult.
    Unfortunately this seems to have broken the WebUtil download: neither the webutil.properties file nor the requisite DLL files are downloaded to JInit 1.3.1.14 directory. Not surprisingly this breaks the WebUtil functionality.
    It's been a long time since I did it with JInitiator 1.3.1.9, but I recall that being a seamless process. Certainly I cannot find anything in the FamMan or the checklist that specified re-configuration for a new version of JInitiator.
    It doesn't matter if the client PC had a previous version of JInitiator or is clean. Both fail to auto-install WebUtil.
    By the way, the Java console shows that WebUtil.jar is being downloaded and RegisterWebUtil is called. There are no error messages in the console.
    Cheers, APC

    Well I did try signing the 100 JAR with the 102 tools. Although that seemed to sign the JAR the Jar was rejected at load time (Java console snippet follows). I'm going to try the long way, using the JInit signing tools and see if that works better.
    I am open to suggestions.
    Cheers, APC
    ava.util.zip.ZipException: invalid entry crc-32 (expected 0x3a1ee813 but got 0x10a1111d)
         at java.util.zip.ZipOutputStream.closeEntry(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)
         at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)
         at oracle.jre.protocol.jar.JarCache.get(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Loading http://rulesdev.intra.ra/forms90/java/f90all_jinit.jar from JAR cache
    java.util.zip.ZipException: invalid entry crc-32 (expected 0x3a1ee813 but got 0x10a1111d)
         at java.util.zip.ZipOutputStream.closeEntry(Unknown Source)
         at java.util.zip.ZipOutputStream.finish(Unknown Source)
         at java.util.zip.DeflaterOutputStream.close(Unknown Source)
         at java.util.zip.ZipOutputStream.close(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)
         at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)
         at oracle.jre.protocol.jar.JarCache.get(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    WARNING: Unable to cache http://rulesdev.intra.ra/forms90/webutil/webutil.jar
    load: class oracle.forms.webutil.common.RegisterWebUtil not found.

Maybe you are looking for

  • Flash projector x-platform maddness-- Can't "show extension" in Mac OS

    Hi has anyone else seen this one?  Outputting flash projectors from CS4.  No problem, in running the mac version on my platform.  The issue is that when my associate emails the projector file from the PC it turns into a folder.  I've tried to "unhide

  • Using jquery to upload files

    Hi I have uploaded files before but not using jquery but now am trying to use jquery so that my files uploads without page refreshing. This is my Jquery code. and below is the html code. Can any one help me with the jquery code so that I can get the

  • Question on upgrade of SAP_BASIS & ABA component on Application component

    We have been recommended to upgrade SP21 for component SAP_BASIS (13) and SAP_ABA (12)  to resolve HR ALE issues where correction is available in SP21. We are in SRM6.0 SP03. My question is do we have to go for SRM6.0 support pack upgrade too which i

  • Transforming values in XSLT

    Hi, I needed some help with XSLT. I have a table which is returning me values in the following way 1,2,3,4,5,6 and I am suppose to put it in my element in the following way <root> <e1>1</e1> <e1>2</e1> <e1>3</e1> <e1>4</e1> <e1>5</e1> <e1>6</e1> </ro

  • Setting LOV in URL for viewrpt.cwr

    Hello, I am trying to find out how I can specify a list of values for a prompt when I build a URL using viewrpt.cwr? I would like to have a different list each time the report is viewed depending on a number of different factors unrelated to crystal.