Wlwbuild task doesn't support jrockit

In an attempt to speed up our build, we have tried out using the JRockit JVM for
ant. However, we were foiled by the wlwbuild task - it insists on invoking java
with the argument -XX:-UseThreadPriorities, which is not supported by JRockit.
We get:
[wlwBuild] Unknown option or illegal argument: -XX:-UseThreadPriorities.
[wlwBuild] Could not create the Java virtual machine.
[wlwBuild] Please check for incorrect spelling or review documentation of start
up options.
BUILD FAILED
file:C:/pfa_portal/src/PortalApplication/wlwbuild.xml:80: Java returned: 1
at org.apache.tools.ant.taskdefs.Java.execute()V(Java.java:110)
at workshop.core.WlwBuildTask.execute()V(WlwBuildTask.java:141)
at org.apache.tools.ant.Task.perform()V(Task.java:341)
at org.apache.tools.ant.Target.execute()V(Target.java:309)
at org.apache.tools.ant.Target.performTasks()V(Target.java:336)
at org.apache.tools.ant.Project.executeTarget(Ljava.lang.String;)V(Proje
ct.java:1339)
at org.apache.tools.ant.Project.executeTargets(Ljava.util.Vector;)V(Proj
ect.java:1255)
at org.apache.tools.ant.Main.runBuild(Ljava.lang.ClassLoader;)V(Main.jav
a:609)
at org.apache.tools.ant.Main.start([Ljava.lang.String;Ljava.util.Propert
ies;Ljava.lang.ClassLoader;)V(Main.java:196)
at org.apache.tools.ant.Main.main([Ljava.lang.String;)V(Main.java:235)
Any suggestions would be most welcome. Should we try to override the ant java
task to ignore the option? Or is there a simpler fix?

Dude!
Try this.
change that target I was talkin about to
<target name="admin_command_common">
     <property file="${j2ee.home}/j2eetutorial14/examples/common/admin-password.txt"/>
<echo message="Doing admin task ${admin.command} with password"/>
<sun-appserv-admin
command="${admin.command}"
user="${admin.user}"
password="${AS_ADMIN_PASSWORD}"
host="${admin.host}"
port="${admin.port}"
/>
</target>
Reason?
well, the blinkin 'asinstalldir' attrib is ... optional!
The build succeeds and deploys the war.
C:\java\Sun\Appserver\j2eetutorial14\examples\web\bookstore1>asant deploy-war
Buildfile: build.xml
deploy-war:
admin_command_common:
[echo] Doing admin task deploy bookstore1.war with password
[sun-appserv-admin] Executing: deploy port 4848 host localhost --password ad
min123 --user admin bookstore1.war
[sun-appserv-admin] Command deploy executed successfully.
BUILD SUCCESSFUL
Total time: 7 seconds

Similar Messages

  • The sun-appserv-admin task doesn't support

    Help! - this is driving me nuts! I am trying to build the bookstore example and get this error on asant steps that involve the admin-command-common target (such as "asant deploy-war").
    I am running Studio Creator with SunAppServer8 under it. The command looks right. If I remove the passwordfile line from the admin-command-common target, I get the same error on another attribute in the command.
    The password file exists where it should and contains valid information, including the correct password.
    I have run this same bookstore example build on another workstation and it worked, but on that box, there was an instance of SunAppserver 7 (not under Studio Creator). That build was successful so I assume this is a configuration issue, but I don't know what it is. I am attaching the error and the listprops. If anyone knows what is wrong I sure would appreciate your help
    Thanks!
    Robert Hill
    C:\j2eetutorial14\examples\web\bookstore1>asant deploy-war
    Buildfile: build.xml
    deploy-war:
    admin_command_common:
    [echo] Doing admin task deploy bookstore1.war
    BUILD FAILED
    file:C:/j2eetutorial14/examples/common/targets.xml:36: The <sun-appserv-admin> t
    ask doesn't support the "passwordfile" attribute.
    Total time: 1 second
    C:\j2eetutorial14\examples\web\bookstore1>
    C:\j2eetutorial14\examples\web\bookstore>asant listprops
    Buildfile: build.xml
    listprops:
    [echo] Path information
    [echo] j2ee.home = C:/Sun/Creator/SunAppServer8
    [echo] j2ee.tutorial.home = C:/j2eetutorial14
    [echo] j2ee.home = C:/Sun/Creator/SunAppServer8
    [echo] env.Path = .;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    ;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Common Fil
    es\Adaptec Shared\System;c:\Program Files\Microsoft SQL Server\90\Tools\Binn\;c:
    \j2sdk1.4.2_06\bin;C:\Sun\Creator\SunAppServer8\bin;C:\j2sdk1.4.2_06
    [echo] env.PATH = ${env.PATH}
    [echo] Classpath information
    [echo] classpath = C:\j2sdk1.4.2_06
    [echo] Admin information
    [echo] admin.password =
    [echo] admin.password.file = C:/j2eetutorial14/examples/common/admin-passwo
    rd.txt
    [echo] admin.host = localhost
    [echo] admin.user = admin
    [echo] admin.port = 14848
    [echo] https.port = 18181
    [echo] Domain information
    [echo] domain.resources = "domain.resources"
    [echo] domain.resources.port = 18080
    [echo] Database information
    [echo] db.root = C:/Sun/Creator/SunAppServer8/pointbase
    [echo] db.driver = com.pointbase.jdbc.jdbcUniversalDriver
    [echo] db.host = localhost
    [echo] db.port = 19092
    [echo] db.sid = sun-appserv-samples
    [echo] db.url = jdbc:pointbase:server://localhost:19092/sun-appserv-samples
    [echo] db.user = pbpublic
    [echo] db.pwd = pbpublic
    [echo] url.prop = DatabaseName
    [echo] ds.class = com.pointbase.jdbc.jdbcDataSource
    [echo] db.jvmargs = -ms16m -mx32m
    BUILD SUCCESSFUL
    Total time: 1 second
    C:\j2eetutorial14\examples\web\bookstore>
    clipped from targets.xml
    <target name="admin_command_common">
    <echo message="Doing admin task ${admin.command}"/>
    <sun-appserv-admin
    command="${admin.command}"
    user="${admin.user}"
    passwordfile="${admin.password.file}"
    host="${admin.host}"
    port="${admin.port}"
    asinstalldir="${j2ee.home}" />
    </target>

    Dude!
    Try this.
    change that target I was talkin about to
    <target name="admin_command_common">
         <property file="${j2ee.home}/j2eetutorial14/examples/common/admin-password.txt"/>
    <echo message="Doing admin task ${admin.command} with password"/>
    <sun-appserv-admin
    command="${admin.command}"
    user="${admin.user}"
    password="${AS_ADMIN_PASSWORD}"
    host="${admin.host}"
    port="${admin.port}"
    />
    </target>
    Reason?
    well, the blinkin 'asinstalldir' attrib is ... optional!
    The build succeeds and deploys the war.
    C:\java\Sun\Appserver\j2eetutorial14\examples\web\bookstore1>asant deploy-war
    Buildfile: build.xml
    deploy-war:
    admin_command_common:
    [echo] Doing admin task deploy bookstore1.war with password
    [sun-appserv-admin] Executing: deploy port 4848 host localhost --password ad
    min123 --user admin bookstore1.war
    [sun-appserv-admin] Command deploy executed successfully.
    BUILD SUCCESSFUL
    Total time: 7 seconds

  • Wlwbuild task not supported?

    Sorry for the crosspost - but I don't think many JRockit peopple hang out in the
    .workshop group.
    In an attempt to speed up our build, we have tried out using the JRockit JVM for
    ant. However, we were foiled by the wlwbuild task - it insists on invoking java
    with the argument -XX:-UseThreadPriorities, which is not supported by JRockit.
    We get:
    [wlwBuild] Unknown option or illegal argument: -XX:-UseThreadPriorities. [wlwBuild]
    Could not create the Java virtual machine. [wlwBuild] Please check for incorrect
    spelling or review documentation of start up options.
    BUILD FAILED file:C:/pfa_portal/src/PortalApplication/wlwbuild.xml:80: Java returned:
    1 at org.apache.tools.ant.taskdefs.Java.execute()V(Java.java:110) at workshop.core.WlwBuildTask.execute()V(WlwBuildTask.java:141)
    at org.apache.tools.ant.Task.perform()V(Task.java:341) at org.apache.tools.ant.Target.execute()V(Target.java:309)
    at org.apache.tools.ant.Target.performTasks()V(Target.java:336) at org.apache.tools.ant.Project.executeTarget(Ljava.lang.String;)V(Proje
    ct.java:1339) at org.apache.tools.ant.Project.executeTargets(Ljava.util.Vector;)V(Proj
    ect.java:1255) at org.apache.tools.ant.Main.runBuild(Ljava.lang.ClassLoader;)V(Main.jav
    a:609) at org.apache.tools.ant.Main.start([Ljava.lang.String;Ljava.util.Propert
    ies;Ljava.lang.ClassLoader;)V(Main.java:196) at org.apache.tools.ant.Main.main([Ljava.lang.String;)V(Main.java:235)
    Any suggestions would be most welcome. Should we try to override the ant java
    task to ignore the option? Or is there a simpler fix?
    I'm also considering to polish up on my C skills to write my own java.exe which
    just strips out offending options, add a few JRockIt specific ones and calls JRockit.
    Would this be a feasable way?

    Looks like there is no easy way - I had a look at the code for the
    wlwBuild task and it looks like the WLW people have indeed hardcoded
    that option.
    I don't know enough about ant to know if it is possible to override the
    task and remove the argument.
    Writing a custom java.exe should work. Here is some code that could get
    you started:
    http://java.sun.com/j2se/1.4.2/docs/guide/jni/spec/invocation.html
    Sorry for this inconvenience,
    /Staffan
    Niels Harremoes wrote:
    Sorry for the crosspost - but I don't think many JRockit peopple hang out in the
    workshop group.
    In an attempt to speed up our build, we have tried out using the JRockit JVM for
    ant. However, we were foiled by the wlwbuild task - it insists on invoking java
    with the argument -XX:-UseThreadPriorities, which is not supported by JRockit.
    We get:
    [wlwBuild] Unknown option or illegal argument: -XX:-UseThreadPriorities. [wlwBuild]
    Could not create the Java virtual machine. [wlwBuild] Please check for incorrect
    spelling or review documentation of start up options.
    BUILD FAILED file:C:/pfa_portal/src/PortalApplication/wlwbuild.xml:80: Java returned:
    1 at org.apache.tools.ant.taskdefs.Java.execute()V(Java.java:110) at workshop.core.WlwBuildTask.execute()V(WlwBuildTask.java:141)
    at org.apache.tools.ant.Task.perform()V(Task.java:341) at org.apache.tools.ant.Target.execute()V(Target.java:309)
    at org.apache.tools.ant.Target.performTasks()V(Target.java:336) at org.apache.tools.ant.Project.executeTarget(Ljava.lang.String;)V(Proje
    ct.java:1339) at org.apache.tools.ant.Project.executeTargets(Ljava.util.Vector;)V(Proj
    ect.java:1255) at org.apache.tools.ant.Main.runBuild(Ljava.lang.ClassLoader;)V(Main.jav
    a:609) at org.apache.tools.ant.Main.start([Ljava.lang.String;Ljava.util.Propert
    ies;Ljava.lang.ClassLoader;)V(Main.java:196) at org.apache.tools.ant.Main.main([Ljava.lang.String;)V(Main.java:235)
    Any suggestions would be most welcome. Should we try to override the ant java
    task to ignore the option? Or is there a simpler fix?
    I'm also considering to polish up on my C skills to write my own java.exe which
    just strips out offending options, add a few JRockIt specific ones and calls JRockit.
    Would this be a feasable way?

  • Fx:application doesn't support the nested "resources" element

    All
    I am trying to use the ant tasks to package up javafx as per this document https://blogs.oracle.com/talkingjavadeployment/entry/native_packaging_for_javafx
    When running it with the following target
    <fx:deploy  nativeBundles="all"  outdir="${dist.dir}" outfile="${application.title}">
                   <fx:application name="${application.title}" mainClass="${main.class.name}">
                        <fx:resources>
                             <fx:fileset dir="${basedir}/${dist.dir}" includes="BrickBreaker.jar" />
                        </fx:resources>
                        <info title="${application.title}" vendor="${application.jnlp.vendor.name}" />
                   </fx:application>
              </fx:deploy>I am getting fx:application doesn't support the nested "resources" element.

    Apologies fixed by moving it out of fx:application

  • Error: Startup task doesn't exist. This is not a continuation after a restart

    I want to try to install sharepoint 2013 on windows server 2008 r2 with sp1, but when I install the prerequistes, always restart again and again, I check the log file, found the below error:
    2014-02-27 22:55:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-02-27 22:55:12 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-02-27 22:55:15 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-02-27 22:55:15 - Last return code (0X3EC=1004)
    2014-02-28 03:27:05 - Error: A pending restart blocks the installation
    2014-02-28 04:45:03 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-02-28 04:45:03 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-02-28 04:45:03 - Locating the following command line arguments file:
    2014-02-28 04:45:03 - C:\SP2013_Chery\2Installation\Sharepoint\PrerequisiteInstaller.Arguments.txt
    2014-02-28 04:45:03 - Error: This file does not exist
    Awen

    Hi Awen,
    According to your description, my understanding is that you got an error when you installed prerequisities for SharePoint 2013.
    Please run the following command, compare the result:
    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regii -enable –i
    Here is a similar post for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/37cc20db-6cc7-45e0-928c-9a1ddbdab2ae/the-tool-was-unable-to-install-application-server-role-web-server-iis-role?forum=sharepointadmin
    In addition, there is a KB article about this issue, please take a look at:
    http://support.microsoft.com/kb/2765260/en-us
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Error in allInOne.js: Object doesn't support this property or method

    We are having an issue deploy our website (Developed in .Net) on a specific server. When we try to visualize a report on any browser we get this error:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.4; OfficeLivePatch.0.0)
    Timestamp: Wed, 7 Apr 2010 17:52:31 UTC
    Message: Object doesn't support this property or method
    Line: 10
    Char: 281690
    Code: 0
    URI: http://{IP ADDRESS}/WebUserInterface/aspnet_client/system_web/2_0_50727/crystalreportviewers12/allInOne.js
    We have install the Crystal reports 2008 runtime and the Crystal report 2008 sp2.5 runtime. Both of them give me the same results.
    It's killing me because i have installed the same solution on many other server without any issue.
    Ben
    P.s. The Web server is  a Window Server 2003 R2 standard edition

    Perhaps using [modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] will at least tell us what dlls are loading. Look at the CR dlls. There should not be any v11 files loaded by your app.
    You may also start considering obtaining phone support for this one. I have a feeling this will take more than just forums to solve...
    Phone support can be obtained here:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300
    Ludek

  • Iwlist scanning gives: Interface doesn't support sc [solved]

    When I'm trying to scan for all available networks I get:
    # iwlist eth1 scanning
    eth1 Interface doesn't support scanning : Operation not supported
    My wireless card works fine if I set every parameter manually. I'm currently using the orinoco drivers that came along with ArchLinux.
    It seems like that the version of the orinoco drivers installed doesn't support the scan stuff. But building the new orinoco drivers failed with
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c: In function `orinoco_ pci_suspend':
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c:330: error: too many a rguments to function `pci_save_state'
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c: In function `orinoco_ pci_resume':
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c:347: error: too many a rguments to function `pci_restore_state'
    make[2]: *** [/usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.o] Error 1
    make[1]: *** [_module_/usr/local/download/orinoco/orinoco-0.15rc2] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.11.3-ARCH'
    make: *** [modules] Error 2
    So I did try the wlan-ng26 driver downloaded and installed with pacman.
    I remove the orinoco modules with
    [root@ArchThinkpad orjanp]# modprobe -r orinoco_pci
    But when I try to insert the prism2_pci module, it doesn't exist. Why?
    [root@ArchThinkpad orjanp]# modprobe prism2_pci
    FATAL: Module prism2_pci not found.
    Any heads up on what to do?
    This is iwconfig before removing the orinoco modules.
    [root@ArchThinkpad orjanp]# iwconfig
    lo no wireless extensions.
    sit0 no wireless extensions.
    eth0 no wireless extensions.
    eth1 IEEE 802.11-DS ESSID:"" Nickname:"Prism I"
    Mode:Managed Access Point: 00:00:00:00:00:00 Bit Rate:11 Mb/s
    Tx-Power=15 dBm Sensitivity:1/3
    Retry min limit:8 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    Link Quality=0/92 Signal level=-68 dBm Noise level=-122 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0
    This is lspci
    [root@ArchThinkpad orjanp]# lspci
    00:00.0 Host bridge: Intel Corp. 82845 845 (Brookdale) Chipset Host Bridge (rev 04)
    00:01.0 PCI bridge: Intel Corp. 82845 845 (Brookdale) Chipset AGP Bridge (rev 04)
    00:1d.0 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #1) (rev 02)
    00:1d.1 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #2) (rev 02)
    00:1d.2 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #3) (rev 02)
    00:1e.0 PCI bridge: Intel Corp. 82801BAM/CAM PCI Bridge (rev 42)
    00:1f.0 ISA bridge: Intel Corp. 82801CAM ISA Bridge (LPC) (rev 02)
    00:1f.1 IDE interface: Intel Corp. 82801CAM IDE U100 (rev 02)
    00:1f.3 SMBus: Intel Corp. 82801CA/CAM SMBus (rev 02)
    00:1f.5 Multimedia audio controller: Intel Corp. 82801CA/CAM AC'97 Audio (rev 02)
    00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem (rev 02)
    01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]
    02:00.0 CardBus bridge: Texas Instruments PCI1250 PC card Cardbus Controller (rev 01)
    02:00.1 CardBus bridge: Texas Instruments PCI1250 PC card Cardbus Controller (rev 01)
    02:02.0 Network controller: Harris Semiconductor Prism 2.5 Wavelan chipset (rev 01)
    02:08.0 Ethernet controller: Intel Corp. 82801CAM (ICH3) PRO/100 VE (LOM) Ethernet Controller (rev 42)
    This is lsmod before removing orinoco.
    [root@ArchThinkpad orjanp]# lsmod
    Module Size Used by
    radeon 78336 1
    ohci_hcd 23048 0
    ehci_hcd 36488 0
    irtty_sir 7552 0
    sir_dev 18636 1 irtty_sir
    irda 144184 1 sir_dev
    crc_ccitt 2432 1 irda
    parport_pc 29252 0
    parport 38600 1 parport_pc
    rtc 13260 0
    pcspkr 4044 0
    eepro100 32528 0
    orinoco_pci 7552 0
    orinoco 44172 1 orinoco_pci
    hermes 9472 2 orinoco_pci,orinoco
    yenta_socket 23560 0
    rsrc_nonstatic 11648 1 yenta_socket
    pcmcia_core 51488 2 yenta_socket,rsrc_nonstatic
    snd_intel8x0m 19396 0
    snd_intel8x0 34624 0
    snd_ac97_codec 79224 2 snd_intel8x0m,snd_intel8x0
    snd_pcm_oss 56224 0
    snd_mixer_oss 21120 1 snd_pcm_oss
    snd_pcm 98564 4 snd_intel8x0m,snd_intel8x0,snd_ac97_codec,snd_pcm_oss
    snd_timer 27268 1 snd_pcm
    snd 59492 7 snd_intel8x0m,snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
    soundcore 10848 1 snd
    snd_page_alloc 10244 3 snd_intel8x0m,snd_intel8x0,snd_pcm
    i2c_i801 8972 0
    i2c_core 23296 1 i2c_i801
    usbhid 47744 0
    uhci_hcd 33424 0
    usbcore 125560 5 ohci_hcd,ehci_hcd,usbhid,uhci_hcd
    shpchp 100996 0
    pci_hotplug 34760 1 shpchp
    tsdev 8256 0
    joydev 10560 0
    evdev 9984 0
    cpufreq_powersave 2176 0
    cpufreq_userspace 5680 0
    p4_clockmod 6164 0
    speedstep_lib 4868 1 p4_clockmod
    freq_table 5008 1 p4_clockmod
    e100 37760 0
    mii 5760 2 eepro100,e100
    nls_cp437 6144 1
    vfat 14976 1
    fat 41884 1 vfat

    orjanp wrote:
    Thanks.
    I installed the 0.15RC1 version of the Orinoco drivers found here.
    I rebooted but I still had the 0.13 version. I did a make and make install as the readme file said.
    What do I have to do to update the driver?
    do you use a PKGBUILD?
    update the driver: if it was copied to the right place and the kernel knows about it (depmod -a) it should work
    for a start, check under
    ls -la /lib/modules/`uname -r`/kernel/drivers/net/wireless/
    that your module is installed under the correct location (the orinoco files should be newer than the other ones)
    if this is so, make sure you are depmod -a (as root) ... and if even this is ok, then either you are running the new modules or something strange happened

  • HT4356 Mavric doesn't support my 5 years old Big Screen Display, OR? Tried to connect my Mac Book Pro after installing Mavric, The Screen didn't work as before. I could only see the Desktop but not the movies for example. What can I do?

    Mavric doesn't support my 5 years old Big Screen Display, OR? Tried to connect my Mac Book Pro after installing Mavric, The Screen didn't work as before. I could only see the Desktop but not the movies for example.
    <E-mail Edited by Host>

    It appears what happened is the installer though it was looking at a empty drive and just went ahead and installed.
    I of course am assuming here you didn't use Disk Utility to format the drive first before installing, that would wipe out your files and programs for sure.
    So what to do, what to do.
    Well there is hope for you as long as the drive wasn't Filevaulted.
    I'll explain. When a hard drive writes data for the first time to a drive, it starts at the very top and works it's way down.
    When OS X was installed the first time, it was at the top of the drive, unless you upgraded then the upgraded OS X could have been written elsewhere.
    Now when you just reinstalled OS X, the new OS went on the top of the drive, overwriting any data that was there previously, so what was there you have lost forever which is about 8GB or so. If it was the previous OS there, then your more in luck because only the old OS X was overwritten.
    The remaining space on the drive still can have a copy of your files, provided it's not overwritten yet.
    It's because when a hard drive deletes data or reformats, it doesn't remove the data off the drive or overwrites it immediately, it's just made so it's SPACE is available for new files to be written there.
    So technically one can recover the deleted data off a non-encrypted/scrubbed hard drive with special software.
    The way it does this is it reads the 1's and 0's of the files themselves, and through a lot of figuring out, can tell what that file is and what it belongs too.
    So what you will have to do is this:
    Create a data recovery/undelete external boot drive
    or if you don't have the skills, then take it to a local PC/Mac tech and they can do a direct image of the drive and then you can run Data Rescue on it to rebuild your files.

  • 3000 J115 7387 - Current BIOS 2NKT31A doesn't support 4gb RAM

    I have a Lenovo 3000 Desktop J115 7387-26u and the current BIOS, just downloaded and tested from Lenovo's "support" site, doesn't support 4gb of RAM properly.  I have dual 2gb DIMMs, for a total of 4gb, and both Lenovo's PC-Doctor diagnostics and another memory scanner report to me that I have 4gb.  See this screen print showing PC-Doctor's RAM report compared to what Windows "sees".  
    When I boot the system, the BIOS only reports 3006mb RAM is present.  Clearly it's recognizing both DIMMs.  I've swapped the DIMMs and the results are the same.
    Lenovo, PLEASE RELEASE A BIOS that properly supports what the system claims to support!
    Message Edited by GeoApps on 04-06-2009 03:00 PM

    dhaj1964 wrote:
    just to let you know....32 bits systems....can only read 3gigs of memory....64 bits system can read more .....
    Two things.  First, "just so you know", the Lenovo 3000 J115 7987 is an Athlon 64 X2 (which you would know if you checked the system specs),and second, I'm talking about the BIOS failing to recognize the RAM that the system specs claim it should be recognizing.  This is regardless of OS.

  • How do I get my music from iTunes Match to my older ipod that doesn't support iTunes Match

    I have an old ipod ios 4.2 that doesn't support iTunes Match how do i get my music from the cloud to my computer library in order for me to put the music onto my older ipod for the car

    Setup iTunes Match on your computer. Download the songs to your iTunes libary and then sync to your old iPod.
    http://www.apple.com/itunes/itunes-match/

  • How can I watch a Disney movie from the Disney website I have purchased movie cd and I can go to the website on by gateway computer but can't get it to play on my iPad it wants me to download flash but apple doesn't support flash or I can down loadQuickTi

    How can I watch a Disney movie from the Disney website I have purchased movie cd and I can go to the website on by gateway computer but can't get it to play on my iPad it wants me to download flash but apple doesn't support flash or I can down loadQuickTime but don't know how. Says to email website did that but takes me back to same place to email help

    Contact iTunes Customer Support, but honestly, there are no returns for iTunes purchases.

  • I have a model 1,1 Mac Book in the black case.  How can I transfer about 30 GB of stuff to a MacBook Pro running Yosemite?  Can't do a Thunderbolt transfer.  The Seagate backup drive I bought doesn't support 10.5.8.  Thank you.

    How do I transfer 30 GB of stuff, mostly text documents, bookmarks and a few hundred photos from a MacBook model 1,1 in the black case, purchased in (2007?) running Leopard 10.5.8 with a 667 bus, 2 GB, 256 GB to a MBP 13" Retina running Yosemite 10.10.1?  Using Migrate is out.  Discovered after I bought it that the Seagate Plus Backup for Mac does not work with 10.5.8.  OnetoOne recommends backing up my data before I do that, which seems like a good idea.  Have a 801.11 n Time Capsule that also isn't working so that is not presently an option.  Thank you.

    The Seagate backup drive I bought doesn't support 10.5.8
    The only reason I can see for that is it's formatted NTFS, which would likely be Read Only in 10.5.x, if you can reformat it MacOS extended, which would erase everything on it now, then that should work for your purposes.

  • I have a macbook pro 15" Retina Display with 2.6 ghz and 8gb of ram yet when i try to download a HD movie from itunes it says my computer doesn't support HD?

    i have a macbook pro 15" retina Display with 2.6 ghz and 8gb of ram when i try to download an HD movie from itunes it says my computer doesn't support HD? i went to the support on the apple website and looked at the specs that a computer has to meet in order to play HD movies and mine is well above them. Why can't i play the movies?

    That would at least partially explain it.
    These MacBook Pros drew more power than the power brick could readily supply, and so would only run at top speed when the power brick was supplemented by the battery.
    Though the applicable tech note has been removed, it stated:
    "If the battery is removed from a MacBook or MacBook Pro, the computer will automatically reduce the processor speed. This prevents the computer from shutting down if it demands more power than the A/C adapter alone can provide."

  • Want to download itunes 10.6 and not 10.7 because my comp doesn't support yet, where can I download 10.6 still?

    want to download itunes 10.6 and not 10.7 because my comp doesn't support yet, where can I download 10.6 still?

    iTunes 10.6.3.25 - http://support.apple.com/kb/DL1575

  • I have an iBook G4 and iTunes is no longer updating. The last update is 9.2.1 but it doesn't support my iPhone or iPad. Is there anything I can do to update iTunes or is my only recourse to update my laptop?

    I have an iBook G4 and iTunes is no longer updating. The last update is 9.2.1 but it doesn't support my iPhone or iPad. Is there anything I can do to update iTunes or is my only recourse to update my laptop?

    As Niel has suggested Mac OS X 10.5 Lepaord.
    But first of all make sure that your iBook is above 800Mhz and you have at least 512 Meg of memory. (1 GB recommended)
    Please note, that if you do install Mac OS X 10.5 on your iBook, it will not allow you to install the latest version of iTunes version 11. The most recent version of iTunes that can be installed would be 10.5, which will be compatible with your iPod touch 4th gen, provided it's not been updated to iOS 6.
    Sadly you can't install any version of Mac OS X above 10.5 Leopard, as it they requires an Intel processor, which your iBook G4 does not have.
    Hope this helps.

Maybe you are looking for