Startup ibook from system CD not possible, what to do

After restoring my system via disc utilities I can not start from a cd holding the C. Startup Norton from CD same problem.
The system tries but than freezes. Restoring permissions OK. Norton via other Mac no problems found.
CD/DVD drive is OK when using it for reading/writing.

Hello ontop
Norton is very unpopular on these forums, causes myriad problems (like yours) and is largely redundant. Just do a search on Norton to see.
The only way I have managed to 'save' Norton infected machines (3 to date I think) is to erase and map out the bad sectors of the hard drives and start again. You are lucky if you can see your affected machine from another as you can get your data off before reformattting the drive.
Post back if you need more help.
S.

Similar Messages

  • Purchase requisition from sales document' not possible due to a credit bloc

    hi experts,
    i have to confirm delivery date and quantity for some purchase order items but i'm not able because i receive following message:
    Subsequent function 'Purchase requisition from sales document' not possible due to a credit block'
    Purchase requisition belongs to a sales order which has customer 10000.
    The customer 10000 was block from FD32 but now i have unblock the customer from FD32, i have assigned customer to a category risk which is only a warning. (in OVA8 risk category 002 static check, reaction C, status/block uncheck )
    There is any possiblilities to confirm quantity ?? I mean ... i understand that sales order was created when the customer was block due to credit limit exceded ... but now the customer is not blocked.
    What should i do?
    Thank you.

    Hi Dan
    If you want to  confirm the delivery date then change the static check reaction to B . in OVA8 . But if you change the static check reaction to A , you can do Delivery and billing also
    Regards
    Srinath

  • Multiple usage of Source System is not possible with installed DMIS version on source

    Hello folks!
    I`ve got a problem trying to adjust the Data Replication to SAP BW (on HANA) using SAP LT Replication Server.
    I`ve deleted one connection and after that I`m trying to create new one through  Configuration & Monitoring Dashboard (transaction LTR) with the same source / target systems.
    As result when on the second step (Specify Source System) I specify RFC destination of the source system it appears an error with text
    "Multiple usage of Source System is not possible with installed DMIS version on source".
    But there`s no any adjusted connection in system now..
    Please, help me to understand  how to fix that problem, I can`t find a solution

    Hi,
    When you say that you 'deleted one connection', did you delete the RFC connection or the SLT Configuration? If it is not a real multiple usage scenario, then deactivate the 'allow multiple usage' flag, else install the correct DMIS version on both SLT and source.
    Thanks
    kris

  • Commincation with the WFM Core system is not possible

    Hi All,
    Hi
    I'm using Netweaver 2004s, ECC 6.0, cProjects 4.0.
    When i go to communicate with WFM Core the Error occures:
    commincation with the WFM Core system is not possible
    Please provide me the solution
    Thanks
    Nitin sharma

    Hi
    Try activating some of the services in T code SICF:
    Default host -> SAP -> bc -> bsp -> sap -> prp*
    (Activate all prp related services)
    Also check the RFC connections.
    regards
    krishna

  • I got this message when saving photo from Iphone4s to my laptop's folder. "The device attached to the system is not functioning"  What can I do?

    I cannot save photo to my deskstop. When I copy to my folder, it indicated "The device attached to the system is not functioning".  I don't update my IOS to the latest version in case my photo from my iphone will be missing.  Please help. Thanks.

    The Only thing I could do to save my pictures on my computer was to send them via Facebook chat to myself, send them one by one then on your computer open then and dragging them is way faster than right-click Save As. I just did that and I do not want to reset my phone so I guess I will continue doing this as I get more pictures or until I feel like resetting my phone. I believe this issue happens when you Connect and while transfering one or more file from one end to another, and you suddenly disconnect the iPhone or any apple divece, the file that wasnt completely transfered gets corrupted and I guess the whole /Picture/Video folder or perhaps the whole device gets corrupted as well. I am sure that this is a cause to this issue but I do not know if there are other causes or if the same one happened to you.
    How to prevent this from happening again?
    Always go to iTunes and click on "Eject" under your device tab before disconnecting your device from your computer. Even if you are not transfering any files at all.

  • Fast file system search not possible in java?

    hi,
    I'd like to find all xml files on a disk as quickly as possible. The simple implementation takes far too long (e.g. over 30 seconds for a disk with 10,000 files and 1000 folders).
    This is a network drive, but the reason I think 30 seconds is slow is that the equivalent C code does it in much less time (over the same network conditions)
    I've seen it run on a drive with 200000 files and 30000 folders, and this takes between 10-15 minutes, while C code takes around 1-2 minutes.
    I'm not sure what the C code does exactly, and it may have access to much better OS calls than java can assume.
    The only three things I can think of are
    1) try to use fewer file objects (can't see a way of doing this)
    2) try threading (i've done small tests before and not got any gain)
    3) try using FileFilters (i've done small tests here too and not got any gain - I think they just implement what you'd do without them anyway..)
    the other option is JNI but this is very bad since I need to run any many platforms..
    profiling shows that most time is spent in the native code
    17.0% 0 + 287 java.io.WinNTFileSystem.list
    10.7% 0 + 181 java.io.WinNTFileSystem.getBooleanAttributes
    but I've heard that switching between java/native is very expensive? so there may be benefits from doing it all in one go somehow?
    any help would be really appreciated,
    thanks,
    asjf
    ps. caching the file list is not really an option since it needs to run fast on new targets

    heres some code that is much faster when I/O blocking is the main problem (seems to work much better on network drives..)
    it uses a slightly bizarre (?) thread pool of workers that process a list of Invocations.
    (this is one big file Pool.java)
    asjf
    ps. I don't normally write code like this :)
    import java.util.*;
    import java.lang.reflect.*;
    import java.io.*;
    public class Pool {
    List invocations;
    public void invoke(Invocation a){
    invocations.add(a);
    synchronized(invocations) {
    invocations.notify();
    //System.out.println("Added an invokation");
    ThreadGroup threads;
    Set pool;
    Pool(int noThreads){
    pool = new HashSet();
    threads = new ThreadGroup("Pool of "+noThreads);
    invocations = Collections.synchronizedList(new LinkedList());
    for(int i=0; i<noThreads; i++){
    Worker w = new Worker(i+" of "+noThreads);
    Thread t = new Thread(threads, w);
    pool.add(w);
    t.start();
    new Thread(new Runnable() {
    public void run(){
    try{
    while(poolActive) {
    int active = 0;
    for(Iterator i = pool.iterator(); i.hasNext(); ){
    Worker w = (Worker) i.next();
    if(w.working) active++;
    Thread.sleep(3000);
    System.out.println(invocations.size() + " : " + active);
    }catch(Exception e){
    e.printStackTrace();
    }).start();
    volatile boolean poolActive=true;
    public void join() {
    try {
    boolean alldone = false;
    while(!alldone) {
    alldone=true;
    for(Iterator i = pool.iterator(); i.hasNext(); ){
    Worker w = (Worker) i.next();
    if(w.working)
    alldone=false;
    if(invocations.size()>0)
    alldone=false;
    Thread.sleep(2000);
    }catch(Exception e){
    e.printStackTrace();
    //System.out.println("--------------------------> all done");
    poolActive=false;
    synchronized(invocations) {
    invocations.notifyAll();
    public void status() {
    threads.list();
    public static void main(String [] arg) throws Exception {
    long time=-System.currentTimeMillis();
    Pool pool = new Pool(200);
    Enumerater e = new Enumerater(pool);
    Invocation in = new Invocation(null,Enumerater.getXML, new Object [] {new File(arg[0]),e.result});
    pool.invoke(in);
    //pool.status();
    pool.join();
    time+=System.currentTimeMillis();
    System.out.println("Time taken "+time+"\nFound "+e.result.size());
    class Worker implements Runnable {
    String name;
    volatile boolean working;
    public Worker(String name) {
    this.name = name;
    public void run() {
    try {
    working=false;
    while(poolActive) {
    Invocation i = null;
    synchronized(invocations) {
    while(poolActive && invocations.size()==0){
    invocations.wait();
    //System.out.println("Hello from "+name);
    if(invocations.size()!=0) {
    working=true;
    i = (Invocation) invocations.remove(0);
    //System.out.println(name+" processed: "+i);
    if(i!=null)
    i.result=i.method.invoke(i.o,i.arg);
    working=false;
    }catch(Exception e){
    e.printStackTrace();
    class Invocation {
    Object o;
    Method method;
    Object [] arg;
    Object result;
    public String toString(){
    return o+" "+method+" "+arg;
    public Invocation(Object o, Method method, Object [] arg) {
    this.o=o;
    this.method=method;
    this.arg=arg;
    this.result=null;
    class Enumerater {
    Set result;
    static Pool pool;
    static Method getXML;
    static {
    try {
    getXML = Enumerater.class.getDeclaredMethod("getXML",new Class [] {File.class,Set.class});
    }catch(Exception e){
    e.printStackTrace();
    Enumerater(Pool p){
    pool = p;
    result = Collections.synchronizedSet(new HashSet());
    public static void getXML(File file, Set result) {
    File [] children = file.listFiles();
    if(children==null)
    System.out.println(file.getAbsolutePath()+" has null children");
    else
    for(int j=0; j<children.length; j++)
    if(children[j].isDirectory()) {
    Invocation in = new Invocation(null,getXML, new Object [] {children[j],result});
    pool.invoke(in);
    else
    if(children[j].getName().toUpperCase().endsWith(".XML"))
    result.add(children[j]);

  • ALEAUD not coming to SAP from XI & u0093Acknowledgment not possible" in idx5

    Hi All,
    I am trying to configure ALEAUD in SAP->XI->JDBC scenario for Idoc acknowledgment.
    I did following config in SAP
    WE21 create port for XI
    WE20 create Partner type XIDLOGSYS1 ‘LS’ , Inbound parameter ALEAUD.
    In XI I delete all entries from IDXNOALE table.
    But still I am not receiving any ALEAUD in D02 when, any IDOC posted from SAP to XI.
    In SXMB_MONI I am able to see Ack status “Acknowledgment not possible”
    Please guide how to get ALE AUD in SAP from XI.
    Regards

    Before I ask my questions, please note I do have a copy of the "How To Handle Acknowledgements for IDoc" How To Guide. I just need some clarification from the group.
    Here are my questions:
    1. XI will not send a positve acknowledgement/status to let the sender system know it made it to XI ok, correct?
    2. The only status that XI itself will initiate will be if there is a techncial issue with XI, correct? (Granted the Receiver system could send a positive or negative status back to Sender System) I just want to make sure that XI will not send a status back to Sender System that equates to "Triggering EDI subsystem OK" (or something like that)
    3. How does the status of an idoc get set to 12 from 03? Does that mean that I always have the program RBDMOIND configured when I am interfacing to XI in order to force the status from 03 to 12?
    4. As a norm, are those who are using XI seeing a 12 status on the Sender System IDoc Status?
    5. If a techical issue error occurs in XI, what specific error status will be sent back to the Sender System?(if at all) I am looking for an example status number of what to expect.
    6. If we are doing SAP R/3 to a partners XI system directly and that partner does not have RBDSTATE configured on their SAP R/3 environment and there is nothing else on their XI system for ALEAUD processing, I am out of luck in determining if the IDoc actually made it to their XI system, correct?
    7. The Configure Scenario 2 in the document How To Handle Acknowledgements for IDoc" How To Guide should allow us to determine "did the Idoc get to that Server" correct?
    Thanks for any feedback on this,
    Ian

  • Script to make 'delete' file from system and not just library svp.

    I would like something, possibly a script, to replace the delete option in iTunes so that a file deleted from within iTunes is actually deleted from the HDD. I have downloaded a script that can do this but the option ad to be called from the script menu and was not convenient, so I am looking for a way to amend or replace the menu option to achieve this in a natural fashion.

    Okay, here I found this page: http://ask.metafilter.com/18737/How-can-I-make-iTunes-delete-songs-again
    which is nice and informative. What I have found is that in order to delete files natively from within iTunes the default settings of keeping your music files in the iTunes music folder (which can be modified to another directory in iTune's preferences) must be left untouched. This is because iTunes will only delete files from the HDD if they reside in the music folder iTunes refences to. Its a nice structured system that iTunes itself keeps organised so its the better option, as oposed to having files everywhere.
    In order to reset the iTunes dialog messages, the file "com.apple.iTunes.plist" in the "~/Library/Preferences/" dir must be deleted - which resets everything, as the documentation suggests you will know because the copyright agreement will launch when iTunes is started. Please make sure iTunes is off before deleting the file. The documentation also suggests deleting another file but I didn't do this and it worked for me.
    However the ability to delete movies from the HDD is not an option from within iTunes, I suggest finding a script that will move all movies in a certain playlist to the recycle bin folder

  • Trans. launcher: system login not possible

    Hi,
    I configured the tx. launcher and was able to logon to the ECC system and execute required transaction (VD03), however somehow I am not able to login to ECC now, it prompts me for the password over and over again. RFC's are working fine , HTTP service running on both systems and no changes were made to the launcher settings. Is there an authorization object required for this ?
    Has anyone faced a similar problem ?? any solutions please!!
    Secondly, do we need Single Sign On to avoid the login screen ?
    Regards.
    PS: It is possible to logon to ECC from the GUI
    Edited by: Jacob Raj on Nov 8, 2008 12:52 PM

    I've tried to login to ECC through the http service running within ECC and its successful but CRM to ECC login is not happening.
    possible reasons please !

  • I forgot my macbooks password and i cant do it from terminal its not working what am i goingto do?

    Actually i didnt forgot my password i just wrote it with another keyboard language and i changed the keyboard now i cant find the password i tried from terminal but it says its a service error what am i going to do now ?

    If you know which keyboard layout is active, tell us the characters you need to make and I may be able to tell you how to make them.
    When you do have access to your machine, go to system prefs/users & groups/login options and check the box for Show Input Menu at Login Page.

  • Itunes download from apple site not possible

    The Download of Itunes 10.5 from the apple site is under Win XP pro not working?

    Unless you provide some details of what "Not working" means... you might as well not even bother posting.
    We're not mind readers, if you want help, provide some useful information.

  • Cold migration of old LDoms with slice-based system disks - not possible?

    We have a couple of older T5120s that we would like to upgrade both the firmware and LDoms software on.
    Currently they both run LDoms 1.2; we'd like to go to 2.0 or hopefully 2.1.
    cas2:1:1006 [root] # ldm -V
    Logical Domain Manager (v 1.2_patch)
    Hypervisor control protocol v 1.4
    Using Hypervisor MD v 1.1
    System PROM:
    Hypervisor v. 1.7.4. @(#)Hypervisor 1.7.4.a 2009/09/21 08:25\015
    OpenBoot v. 4.30.4 @(#)OBP 4.30.4 2009/08/19 07:23
    We thought we would clear out our other "sandbox" T5120 (with LDoms 2.0) and migrate the client LDoms in the machines to be updated over to the sandbox, so if anything went wrong we could clear out the old 1.2 machine and then re-migrate the LDoms back over to it.
    Well, it turns out the client LDoms on the 1.2 system were made with paired slices as the system disks instead of files :-(
    vdisk0@casdev c1t0d0s3
    vdisk1@casdev c1t1d0s3
    vdisk0@casray c1t0d0s1
    vdisk1@casray c1t1d0s1
    In one of the client LDoms it has (as you would expect, given this setup)
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    casdev active -n---- 5000 12 4G 0.1% 414d 18h
    DISK
    NAME VOLUME TOUT ID DEVICE SERVER MPGROUP
    vdisk0 c1t0d0s3@primary-vds0 0 disk@0 primary
    vdisk1 c1t1d0s3@primary-vds0 1 disk@1 primary
    The control LDom for these client LDoms has 2 disks and slice 0 of each disk (~ 20 GB) is used for the control LDom, and there are these other slices (slice 1, 3, ... also each ~ 20 GB) for the client LDoms.
    The target "sandbox" system we wanted to migrate to also has 2 disks, but slice 0 of each is a single, disk-spanning partition - since we're using files as virtual disks for the client LDoms that were previously on that system (since wiped out), there was no need for multiple slices.
    I'm guessing that with this setup there is no way to even do a cold migration of the old LDoms 1.2 client LDoms to the newer LDoms 2.0 sandbox system, short of a complete reinstall of the sandbox to create a similar slice-based setup. :-(
    (Unless it involved somehow re-slicing the control LDom's disks and making identically-sized partitions to match the old system's and then - somehow - "dd"'ing the source system's client LDom disk slices over into the target system's)
    Am I right?
    Edited by: Riot Nrrrd™ on Oct 28, 2011 3:30 PM

    I'm guessing that with this setup there is no way to even do a cold migration of the old LDoms 1.2 client LDoms to the newer LDoms 2.0 sandbox system, short of a complete reinstall of the sandbox to create a similar slice-based setup. :-(
    (Unless it involved somehow re-slicing the control LDom's disks and making identically-sized partitions to match the old system's and then - somehow - "dd"'ing the source system's client LDom disk slices over into the target system's)If you are not using SAN-disks, then it is a bit difficult to do the migration. If you are using ZFS on LDoms 2.0 sandbox, you could try to create ZFS volumes for guest domains and send data on those volumes from LDoms 1.2 system, after creating guest domains from exported XML configurationg files.
    Does this sound tryable solution?

  • Deleting files from Time Machine not possible

    Prior to Mavericks it was possible to delete specific files or directories form all TM backups using the action menu.
    this option no longer appears. this is an issue since it is no longer possible to prune the backups (remove files you really don't want to keep).
    I know it is possible to exclude directories from backup (beforehand) but this does not cover removing files after they have been backed up..

    It was always fraught to remove anything from Time Machine and I have read somewhere that there is now a bug that the engineers are working on.   It appears you cannot go back beyond the date you download Mavericks.
    Perhaps someone will come into the thread who knows more about this.

  • CS4 on 2 computers from MY OWN not possible????

    I'm not so happy with my new CS4. This bundle cost me 2000 (design premium), wich is much much higher than in us, where it would cost 1200.
    That also makes me (and many other European users) pissed !
    But that's not all.
    My wife uses the CS4 in the day as a professional, and I want to use it occasionally in the evening. I work in the daytime in an other company.
    Now my newly expensive CS4 starts naging because I installed it on 2 computers and I have 30 days to buy a second version.
    WHAT????
    Does Adobe think we're all as rich as their CEO's???
    Paying 4000 for occasional use?
    I think Adobe realy wants people to download illegaly so they can be catched (again $$$)

    (My previous message was sent before I saw the one in which you said you have installed on 3 computers)
    One of those three (the last one, probably) is not activated, so the application will only work there for 30 days. If after that you want to use it on the same computer you will need to deactivate (just removing is not enough) one of the others.

  • First time startup- Blinking amber light. Not sure what to do.

    So I just got my airport express and when i first started getting the airport utility downloaded for windows xp, i used my modem (time warner ubee modem) ethernet cable and all but I am just getting a blinking amber light. I don't know if it hasn't configured if I need to wait longer for to initally start.  I am kind of derp when it comes to networking, so..

    A persistent, flashing amber light indicates that any of the several potential conditions may require your attention:
    The base station has not yet been configured because it is new, or the reset switch has been set.
    You have selected a security configuration that is not recommended.
    One of several other conditions, such as a disconnected Ethernet cable or invalid IP address has been detected.
    (ref: http://docs.info.apple.com/article.html?artnum=305101)
    If you run the AirPort Utility, it will show an amber circle on the summary page next to the area(s) causing the problem. Click on this amber circle and it should provide an explanation. Please post back your findings.

Maybe you are looking for

  • Captivate 7 not recognizing animated GIF's?

    I've used photoshop CS6 to create an animated GIF from a video clip. using timeline I have a file saved in .GIF format and it is clearly an animation. When I insert > animation CV7 Tells me "file is not an animated GIF file". It is starting to become

  • Waring messages for PO Date in the contract creation?

    Hi Friends, Expecting answers with some functional knowledge, I am developing one webservice to create value contract from dotnet front end, So user can enter inputs from that front end and he will get SAP generated value contract id. Here I did vali

  • Pick random visitor by zip code

    im looking to have, when a random user enteres their zip code on my site, if they are "the chosen one" they win a coupon. i need to have a list of zip codes, since this is in a loal are of about 6 towns. then if the zip code is in the list, randomly

  • Calendar not showing up after update?

    I just did a software update and now my events aren't showing up on my mainscreen.  I have it set on the "Today" theme so that my events show up on my mainscreen.  After my update, they aren't showing up.  I have a Pearl 8130. Any ideas?

  • In addition to the adobe flash plugin crashing, i keep getting this javascript error: Bad NPObject as private data!

    I am having major issues right now! My browser has slowed to a crawl. The adobe flash plugin keeps crashing while im watching vids and now I am getting this javascript error msg: Bad NPObject as private data!...I am getting this msg ALL THE TIME What