Bus/Memory/ cpu problem? need help

I'll start with my system's profile:
*Intel Celeron 566 Mhz w/ 128 L2 Cache > socket 370
*NO-NAME slot1>socket370 slocket adapter
*MSI-6163 Pro Mobo (great product) > no onboard sound
*2x128 PC133 DIMM
*Leadtek Winfast GeForce 2 MX SH Pro (MX 400 chipset) w/ 32 DSRAM
*Creative SBLive Value
*3DeMon Provideo PCI TV Tuner (BT 878Audio/Video)
*Intel Pro 10+ PCI Ethernet adapter
*Intel HaM PCI 56K voice/data/fax modem
*IBM 120 GXP Deskstar 60Gb HDD
note: the system worked flawlessly @ 850 Mhz
I wanted to do a little upgrade on my CPU > so I borrowed an Intel P3 600E from a friend. I installed it on my Slot1>Socket 370 slocket adapter and powered my system up. Boot = OK. I tested it for some hours, that rebooted and took the 600E P3 @ 744 Mhz. I than first noticed that at boot time, during POST, the memory test was stopping for a fracton of a second after counting about 10Mb of memory: count - short stop - count - short stop .. and so on till all the the end (BTW, 2x128 Mb of RAM should read 262144 K ? is this right?) I know that it's not supposed to read 256000 ... I'm interested if it's the correct sum .. 262144...
Anyway .. I wasn't pleased with this count - stop -count - stop thing so rebooted. The P3 let and My good old Celeron is back ... but this count -stop- count-stop thing keeps going on. The memory test is counting the memory normally only when the CPU runs at it's normall 566Mhz speed. just a little OC and the count-stop gets on the screen. My problem with this is that before the testing of the P3 it used to run ok.
However , the system runs normally as far I can see, although WinMe crashes imediatly after the desktop is displayed. XP & RadHat run OK.
What I did trying to corect my problem: COMS reset, BIOS flash, Load SETUP Defaults in BIOS, messed up with the on board jumpers, everything I could think about. I'm not a begginer in terms of using everything that a mobo has to give, OC and so on. I'm just a little scared because I care about that system.
Any help is greatly apreciated. So 10x in advance...

   Well .. one of these days ...  (wednesday  ?? ).... I powered my system after I came home from work ... and surprise ...  everything wa normal as far as the memory test was concerned. It came back to normal by itself .... because I didn't modified anything in the BIOS for 3 days before that. So I don't know if it's from that PNP BIOS option, but I remember enabling and disabling it. So ... case closed ....  I'm happy to eport that the board is working as before .. flowless ....  
As far as the memory is concerned: I didn't test it on another system ... I was going to but it isn't the case no more. I do not use the first (left) slot (closest to the northbridge) because I use a heatsink and a fan that don't alow the usage of that memory slot. I use a TITAN cooler that has an aluminium heatsink and a 80x80x20 fan cooler (it's as big a power source fan). My temperatures are: CPU Idle: 25, 26 C > depends on the room temperature. Last summer CPU temp wasn't higher than 29 C > room temp was over 30. Under havy load it doesn't reach 30; last summer > 34 max.

Similar Messages

  • Memory leak problem need help!!

         public void query(String firstName, String lastName, String citizenId) throws Exception{
                   this.eimFirstName = firstName;
                   this.eimLastName  = lastName;
                   this.eimCitizenId = citizenId;
                   String searchstr = "(([First Name] =\""+firstName+"\" AND [Last Name]=\""+lastName+"\" )OR [Social Security Number]=\""+citizenId+"\") AND [Status]=\"Prospect\""; // = (([First Name] = 'firstName' AND [Last Name] = 'lastName') OR [Citizen Id] = 'citizenId') AND ([Status]='Prospect')
                   contactWrapper=null; // set to null
                   contactWrapper=new BusCompWrapper();//instantiate
                   contactWrapper.query(siebelWrapper, "Contact", "Contact", searchstr, queryFieldList);//leaks here     
    }if i comment out the last line , the memory leak won't happen.
    correct me if i'm wrong, i think that i need to free the reference of contactWrapper in order to avoid memory leak? but how do i do that? i set it to null but why still i have the leak
    thanks guys

    this may help
    public class BusCompWrapper
         private List fields;
         private int buscompstatus;
         private int position=0;
         private com.siebel.data.SiebelBusComp oBusComp;
         private com.siebel.data.SiebelBusObject oBusObj;
              Gets next record from Business Component
              @return Iterator of values in String
              @return empty Iterator if no more record to read
         public Iterator getNextRecord() throws BoaException
              try{
                   ArrayList al = new ArrayList();
                   if (position==0){
                        if (!oBusComp.firstRecord()){
                             return null;
                   }else{
                        if (!oBusComp.nextRecord()){//no more record left, return empty enumeration
                             return null;
                   position++;
                   Iterator it = fields.iterator();
                   while (it.hasNext()){
                        String next = (String)it.next();
                        oBusComp.activateField(next);
                        String s = oBusComp.getFieldValue(next);
                        al.add(s);
                   return al.iterator();
              }catch (SiebelException e){
                   throw new BoaException(e,new String[]{ExceptionConstants.ERROR_GETTING_NEXT_RECORD_IN_BUSINESS_COMP,"\n"+e.getErrorMessage()},2);
         public void query(SiebelWrapper siebelWrapper, String busobjname, String buscompname, String querystr,List fields) throws BoaException
              try{
                   oBusObj = siebelWrapper.getSiebelDataBean().getBusObject(busobjname);
                   oBusComp = oBusObj.getBusComp(buscompname);
                   Iterator it=fields.iterator();
                   while(it.hasNext()){
                        oBusComp.activateField((String)it.next());
                   oBusComp.setViewMode(3);
                   oBusComp.clearToQuery();
                   oBusComp.setSearchExpr(querystr);
                   oBusComp.executeQuery(true);
                   this.fields = fields;
                   position=0;
              }catch(SiebelException e){
                   e.printStackTrace();
                   throw new BoaException(e,new String[]{ExceptionConstants.ERROR_QUERYING_BUSINESS_COMP,"\n"+e.getErrorMessage()},2);
    public class  ContactSiebelWrapper
         private String
              currentRowId,
              currentFirstName,
              currentLastName,
              currentBirthDate,
              currentCitizenId;
         private SiebelWrapper siebelWrapper;
         private ArrayList currentUpdate;
         private String eimFirstName;
         private String eimLastName;
         private String eimCitizenId;
         private ArrayList phoneList;
         private ArrayList addressList;
         private BusCompWrapper contactWrapper;
    private static List queryFieldList=Arrays.asList(new String[]{"Id","First Name","Last Name","Social Security Number","Birth Date","Status","Integration Id","Party UId"});
    private static List phoneFieldList=Arrays.asList(new String[]{"ACU Telephone Type","ACU Telephone Number","ACU Telephone Extension"});
    private static List addressFieldList=Arrays.asList(new String[]{"Street Address","Street Address 2","ACU Street Address 3","City","Postal Code"});
         /**FileLogger for event logging*/
         private FileLogger logger;
         /**Date format for parsing date to Date object*/
         private String siebelDateFormat;
              Constructs ContactSiebelWrapper from specified SiebelWrapper and FileLogger objects
         public ContactSiebelWrapper(SiebelWrapper param,FileLogger logger,String siebelDateFormat)
              this.logger=logger;
              siebelWrapper = param;
              currentUpdate = new ArrayList();
              phoneList = new ArrayList();
              this.siebelDateFormat=siebelDateFormat;
              Advances to the next record in Business component.
              @return true if there is next record, false otherwise
         public boolean advanceRecord() {
              try {
                        Iterator retval = contactWrapper.getNextRecord();
                        if (retval==null){
    /*contactWrapper=null;
    phoneList=null;
    addressList=null;*/
                             return false;
                        currentRowId     = (String) retval.next();
                        currentFirstName = CommonUtils.iso8859_1ToMS874((String) retval.next());
                        currentLastName  = CommonUtils.iso8859_1ToMS874((String) retval.next());
                        currentCitizenId = (String) retval.next();
                        currentBirthDate = (String) retval.next();
                        getPhoneList();
                        getAddressList();
                        return true;
              } catch (Throwable e) {
                   logger.logLine("ERROR while advancing to next record");
                   e.printStackTrace();
                   return false;
         public void query(String firstName, String lastName, String citizenId) throws Exception{
                   this.eimFirstName = firstName;
                   this.eimLastName  = lastName;
                   this.eimCitizenId = citizenId;
                   String searchstr = "(([First Name] =\""+firstName+"\" AND [Last Name]=\""+lastName+"\" )OR [Social Security Number]=\""+citizenId+"\") AND [Status]=\"Prospect\""; // = (([First Name] = 'firstName' AND [Last Name] = 'lastName') OR [Citizen Id] = 'citizenId') AND ([Status]='Prospect')
                   contactWrapper=new BusCompWrapper();
                   contactWrapper.query(siebelWrapper, "Contact", "Contact", searchstr, queryFieldList);
         }

  • Zen Vision:M problem, NEED HELP!

    My zen vision:m is starting to run slowly. It started right after my player froze and i reset it.Now its really slow and barely even switches screens sometimes.Right now its just a black screen with the keypad lit up.Whats wrong with it'sI NEED HELP!

    johnnnyp wrote:
    hi, i have a problem with my creative vision m. i wanted to watch a movie and it froze. i tried to shut it down but it wouldnt respond, and now is frozen. please help me if you can!
    You know its kinda rude to derail XBenzinoFla thread with your own problems, make your own thread next time.
    But to the both of you especially XBenzinoFla, try putting your ZVM in rescue mode and run scan disk to see if it hel
    ps.

  • Zen Micro problem need help

    Today i was listening to music and my zen micro just froze while playing and no buttons could be pressed and the lock button wasnt on. So i took the battery out and rebooted the player but it froze at the creative screen. I went home and i went to recovery mode and tried to reload the firmware but it said erasing firmware for more than 2 hours. So then i tried a format but it said formating for the same amount of time. I need help please. Also, recently i've had problems witht the headphone jack. When ever i would stick it in it would sound distorted and i would have to move it around until i got it to a certain spot to hear it good again. If anyone else has this problem please tell me. One more thing i had returned my other micro zen in for hard dri've probems and this was my new one do u think if i have to return in (hopefully not) that they would accept it.

    If the functions in Rescue Mode aren't working properly then you need to contact Creative Support.

  • Still stuck with the same old producer consumer weight problem need help

    Hello All,
    This is the problem I am stuck with right now.
    I have two array lists one producer array list and one consumer array list denoted by a and b
    P1 P2 P3 P4 P5
    5 6 7 8 9
    C1 C2 C3 C4 C5
    2 3 4 5 6
    Now we find all those producer consumer pairs which satisfy the criteria Pi>=Ci
    We have the following sets
    (5,2)(6,2)(7,2),(8,2),(9,2)
    (5,3)(6,3)(7,3),(8,3),(9,3)
    (5,4)(6,4)(7,4),(8,4),(9,4)
    (5,5)(6,5)(7,5),(8,5),(9,5)
    (6,6)(7,6)(8,6),(9,6)
    Let us done each of them with Si
    so we have S1,S2,S3,S4,S5
    we assign a third parameter called weight to each element in Si which has satisfied the condition Pi>=Ci;
    so we we will have
    (5,2,ai),(6,2,bi),(7,2,ci)....etc for S1
    similarly for S2 and so on.
    We need to find in each set Si the the pair which has the smallest weight.
    if we have (5,2,3) and (6,2,4) then 5,2,3 should be chosen.We should make sure that there is only one pair in every set which is finally chosen on the basis of weight.
    Suppose we get a pair (5,2,3) in S1 and (5,2,3) in S2 we should see that (5,2,3) is not used to compare to compare with any other elements in the same set S2,
    Finally we should arrive at the best element pair in each set.They should be non repeating in other sets.
    Given a problem
    P0 P1 P2 P3 P4
    9 5 2 2 8
    6 5 4 5 3
    C0 C1 C2 C3 C4
    we have So as (P0,C0) and (P4,C0)
    assuming that the one with the smaller index has lesser weight PO is selected.In the program I have used random weights.from set S1 we select the pair PO,CO
    S1 =(P0,C1),(P1,C1) and (P4,C1)
    since P0 and P4 are already used in previous set we dont use them for checking in S1 so we have (P1,C1) as best.
    S2=(P0,C2),(P1,C2) and (P4,C2) so we dont use P0,C2 and P1 and C2 because PO and P1 are already used in S1.
    So we choose P4,C2
    in S3 and S4 ae have (P0,C3),(P1,C3),(P4,C3) so we dont choose anything
    and same in S4 also.
    So answer is
    (P0,C0),(P1,C1) and (P4,C2).
    My program is trying to assign weights and I am trying to print the weights along with the sets.It doesnt work fine.I need help to write this program to do this.
    Thanks.
    Regards.
    NP
    What I have tried till now.
    I have one more question could you help me with this.
    I have an array list of this form.
    package mypackage1;
    import java.util.*;
    public class DD
    private  int P;
    private  int C;
    private int weight;
    public void set_p(int P1)
    P=P1;
    public void set_c(int C1)
    C=C1;
    public void set_weight(int W1)
    weight=W1;
    public int get_p()
    return P;
    public int get_c()
    return C;
    public int get_x()
    return weight;
    public static void main(String args[])
    ArrayList a=new ArrayList();
    ArrayList min_weights_int=new ArrayList();
    ArrayList rows=new ArrayList();
    ArrayList temp=new ArrayList();
    Hashtable h=new Hashtable();
    String v;
    int o=0;
    DD[] d=new DD[5];
    for(int i=0;i<4;i++)
    d=new DD();
    for(int i=0;i<4;i++)
    d[i].set_p(((int)(StrictMath.random()*10 + 1)));
    d[i].set_c((int)(StrictMath.random()*10 + 1));
    d[i].set_weight(0);
    System.out.println("Producers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_p());
    System.out.println("Consumers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_c());
    System.out.println("Weights");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_x());
    for(int i=0;i<4;i++ )
    int bi =d[i].get_c();
    ArrayList row=new ArrayList();
    for(int j=0;j<4;j++)
    if( d[j].get_p() >=bi)
    d[j].set_weight((int)(StrictMath.random()*10 + 1));
    row.add("(" + bi + "," + d[j].get_p() + "," +d[j].get_x() + ")");
    else
    d[j].set_weight(0);
    row.add("null");
    rows.add(row);
    System.out.println(rows);
    int f=0;
    for(Iterator p=rows.iterator();p.hasNext();)
    temp=(ArrayList)p.next();
    String S="S" +f;
    h.put(S,temp);
    String tt=new String();
    for(int j=0;j<4;j++)
    if(temp.get(j).toString() !="null")
    // System.out.println("In if loop");
    //System.out.println(temp.get(j).toString());
    String l=temp.get(j).toString();
    System.out.println(l);
    //System.out.println("Comma matches" + l.lastIndexOf(","));
    //System.out.println(min_weights);
    f++;
    for(Enumeration e=h.keys();e.hasMoreElements();)
    //System.out.println("I am here");
    int ii=0;
    int smallest=0;
    String key=(String)e.nextElement();
    System.out.println("key=" + key);
    temp=(ArrayList)h.get(key);
    System.out.println("Array List" + temp);
    for( int j=0;j<4;j++)
    String l=(temp.get(j).toString());
    if(l!="null")
    System.out.println("l=" +l);
    [\code]

    In your example you selected the pair with the greatest
    distance from the first set, and the pair with the least
    distance from the second. I don't see how the distance
    function was used.
    Also it's not clear to me that there is always a solution,
    and, if there is, whether consistently choosing the
    furthest or the closest pairs will always work.
    The most obvious approach is to systematically try
    all possibilities until the answer is reached, or there
    are no possibilities left. This means backtracking whenever
    a point is reached where you cannot continue. In this case
    backtrack one step and try another possibility at this
    step. After all possible choices of the previous step,
    backtrack one more step and so on.
    This seems rather involved, and it probably is.
    Interestingly, if you know Prolog, it is ridiculously
    easy because Prolog does all the backtracking for you.
    In Java, you can implement the algorithm in much the same
    way as Prolog implementations do it--keep a list of all the
    choice points and work through them until success or there
    are none left.
    If you do know Prolog, you could generate lots of random
    problems and see if there is always a solution.

  • Ipod problem NEED HELP ASAP

    Hello guys,my ipod touch has battery problems and internal speaker are not working and will apple replace me a new one,i even have 1 year warranty and i want a new ipod touch white instead of black<<<plz plz plz reply ASAP plz really need HELP!THANK YOU

    If you iPod is defective, in warranty and not abused Apple will replace it with a refurbished one.  They may or may not replace it with the white one.  You will have to ask.
    Other users have asked the same question but I hav never heard them come back with whether or not they go the color changed.

  • Another Infinite Login Loop Problem - need help badly

    Hello. I need help.
    When I start up my iMac (24 inch last generation model) I can't log into the OS. When I enter my password I see the default OS wallpaper (nothing else) then it kicks me to a blue screen then right back to the login. Same thing over and over. I've already ran disk utility off of the install CD to repair permissions, etc... but no luck. This even happens when I enter into safe mode. I'm running the latest version of the OS.
    Can anyone help me?

    Restore the bootable backup/clone or Time Machine backup. Without one, you have a difficult situation. First thing to try is boot with your install disc, run Disk Utility, and repair the disk.

  • Ipod nano Problems need help fast!!!!!!

    I got my nano in october everything was working fine.Until 2 weeks ago my ipod wasnt getting reconized by itunes.Im really getting frustrated and i need help.

    Welcome to Apple Discussions!
    Read through this...
    http://docs.info.apple.com/article.html?artnum=61711
    btabz

  • Urgent Problem, need help asap.

    Hello everyone,
    I'm sorry for the alarmist title, but I need help and I need it badly. Just last night, my macbook froze with nothing working. The mouse froze, the interrupt keys didn't work, nothing. I shut down the laptop, and tried to restart. I noticed a clicking sound coming from the lower left hand corner of the macbook. I'm assuming this is the hard drive.
    What happens is that there will be two clicks happening in a rythmic fashion, and after 15 second of booting up, a folder will appear with a question mark on the screen. The only thing I can do is power it down. Can someone please describe what is happening and make suggestions?
    The kicker is that I'm a college student studying in Denmark for the semester. The laptop is my only lifeline to back home. Please, any help is greatly appreciated.
    Matt

    You may have a disk failure or simply corrupted files. If you have a bootable backup that is working, then you can boot from it, erase your hard drive, then restore your backup. If not then do this:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    If the drive is OK then you can reinstall OS X:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • 6085 Memory Problem - need help

    I have a new 2 Gb memory card installed in my 6085.  I have formatted the card and loaded some music using PC Suite.  I can get around 550 Megs of music loaded and when I try to load the next song I get a message "...cannot copy ______ the device has either stopped responding or has been disconnected..."  This happens when I get 550 Megs of music loaded - and the device is still connected.
    Also, when I try to download the English version of the user's manual I get an error message on my Adobe Reader screen which says  "the file is damaged and could not be repaired".
    Any help with these problems will be greatly appreciated.

    I have discovered that I can download the User's manual and open the document on my laptop.  The laptop has an older version of Adobe Reader (than the desktop where I was having the problem) which handles the downloaded file OK.
    I also have discovered that I can put more files onto my memory card if I put them into more folders.  There appears to be a limit on how many top level files or folders that can be on the memory card.  I discovered this by visiting the Kingston memory website.

  • MacBook crashing every so often with a some sort of memory leak? Need help to pinpoint cause.

    I've only owned this Macbook for about 4 months now and it has started giving me this save memory leak issue every so often. I am not 100% sure if this is the proper place to post this kind of stuff, but I've tried to uninstall some things that I've added in the last month (which is when it started). No luck.
    Can anyone tell what it might be just by looking?
    Error Report
    Anonymous UUID:       69F44AA1-027D-B2A4-9036-9DF6EBE5D770
    Thu Jan  1 22:53:52 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff8022b79085): "zalloc: zone map exhausted while allocating from zone kalloc.8192, likely due to memory leak in zone kalloc.64 (1112477184 total bytes, 17382449 elements allocated)"@/SourceCache/xnu/xnu-2782.1.97/osfmk/kern/zalloc.c:2521
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80bbd7bc00 : 0xffffff8022b3a811
    0xffffff80bbd7bc80 : 0xffffff8022b79085
    0xffffff80bbd7bdb0 : 0xffffff8022b42ef1
    0xffffff80bbd7bde0 : 0xffffff8022b22a90
    0xffffff80bbd7be10 : 0xffffff8022b3e8b7
    0xffffff80bbd7be40 : 0xffffff8022b235a3
    0xffffff80bbd7be90 : 0xffffff8022b33e8d
    0xffffff80bbd7bf10 : 0xffffff8022c0a142
    0xffffff80bbd7bfb0 : 0xffffff8022c3ac66
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    14B25
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:     0x0000000022800000
    Kernel text base: 0xffffff8022a00000
    __HIB  text base: 0xffffff8022900000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 182760011229369
    vm objects:24524880
    vm object hash entri:3801640
    VM map entries:5061280
    pv_list:19697664
    vm pages:64337216
    kalloc.16:91921984
    kalloc.32:130084416
    kalloc.64:1112477184
    kalloc.128:9461760
    kalloc.256:7639040
    kalloc.512:49831936
    kalloc.1024:4407296
    kalloc.2048:3215360
    kalloc.4096:10162176
    kalloc.8192:6324224
    mem_obj_control:1522048
    ipc ports:3965600
    threads:1624696
    vnodes:15977280
    namecache:5540640
    HFS node:21820528
    HFS fork:7712768
    cluster_write:2037072
    decmpfs_cnode:1866816
    buf.8192:10346496
    ubc_info zone:5286864
    vnode pager structur:2395720
    compressor_pager:2375680
    compressor_segment:4024080
    Kernel Stacks:3604480
    PageTables:155758592
    Kalloc.Large:19787177
    Backtrace suspected of leaking: (outstanding bytes: 21440)
    0xffffff8022b79486
    0xffffff8022b42ef1
    0xffffff802305e513
    0xffffff802307ada1
    0xffffff80230b665e
    0xffffff802305d01e
    0xffffff802305d1e7
    0xffffff80230b05c5
    0xffffff80230b6dd0
    0xffffff7fa35a3cc4
    0xffffff7fa359eb0c
          Kernel Extensions in backtrace:
             com.razer.common.razerhid(10.57)[91AF82D9-68E7-3D2F-9D29-31113DBA21EE]@0xffffff 7fa3599000->0xffffff7fa35b1fff
                dependency: com.apple.iokit.IOUSBFamily(705.4.14)[E15E9DC8-410F-3612-8371-E5FECD939E0D]@0xf fffff7fa3316000
                dependency: com.apple.iokit.IOHIDFamily(2.0.0)[917971EF-5947-3DF5-BB9F-D353D05C0484]@0xffff ff7fa3431000
                dependency: com.apple.iokit.IOUSBHIDDriver(705.4.0)[2CB055E6-0535-39A2-A393-F8FECDA6863B]@0 xffffff7fa34bb000
                dependency: com.apple.driver.IOBluetoothHIDDriver(4.3.1f2)[12CE576E-DC6B-3F99-A180-909E93DA F5C3]@0xffffff7fa3585000
    last loaded kext at 168541610122784: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa53cd000, size 20480)
    last unloaded kext at 168658428597842: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa53cd000, size 16384)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp 4.3.18
    org.virtualbox.kext.VBoxNetFlt 4.3.18
    org.virtualbox.kext.VBoxUSB 4.3.18
    org.virtualbox.kext.VBoxDrv 4.3.18
    com.razer.common.razerhid 10.57
    com.apple.filesystems.smbfs 3.0.0
    com.apple.driver.AudioAUUC 1.70
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.1f2
    com.apple.driver.AGPM 100.14.37
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 267.0
    com.apple.driver.AppleMikeyDriver 267.0
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleIntelHD4000Graphics 10.0.0
    com.apple.driver.AppleIntelFramebufferCapri 10.0.0
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.driver.AirPort.Brcm4360 901.19.10
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.iokit.AppleBCM5701Ethernet 10.1.2b3
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.driver.AppleUSBXHCI 705.4.14
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 267.0
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleHDAController 267.0
    com.apple.iokit.IOHDAFamily 267.0
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOAcceleratorFamily2 156.4
    com.apple.AppleGraphicsDeviceControl 3.7.21
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.IOBluetoothHIDDriver 4.3.1f2
    com.apple.iokit.IOBluetoothFamily 4.3.1f2
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.0
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 700.52
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    Model: MacBookPro9,2, BootROM MBP91.00D3.B09, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343235533641465236412D50422020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343235533641465236412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Samsung SSD 840 EVO 250GB, 250.06 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS41N
    USB Device: Hub
    USB Device: Hub
    USB Device: Razer DeathStalker
    USB Device: Razer DeathAdder
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    I'm sorry to have conveyed that impression. I do very much like EtreCheck, but it is completely misused by too many people who seem to think it's the answer to all problems. If is excellent for what it does. I helped beta test it for the developer. But it's a tool best used when a helper specifically asks for it when it is needed. That isn't for kernel panics. It may well be that some software can cause the panic, but the panic itself is generally in hardware. You can see that in the first few lines of the report. I urge you to learn more about them:
    Mac OS X- How to log a kernel panic
    OS X- About kernel panics
    Technical Note TN2063- Understanding and Debugging Kernel Panics
    Tutorial - Avoiding and eliminating Kernel panic
    What's a "kernel panic"? (Mac OS X)
    OSXFAQ - Troubleshooting Kernel Panics
    Visit The XLab FAQs and read the FAQ on diagnosing kernel panics.
    You will find a wealth of information about panics in the above references. There are many panic reports that simply don't give us any clues as to their root cause. They can be frustrating to deal with. But when someone is having a kernel panic EtreCheck is simply not the tool you whip out first or even second.
    Good luck learning and a Happy New Year.

  • Serius project problems - Need help please

    Hi,
    I'm using adobe premiere and after effects to my last film (this is not the first time). I'm using DV 1280*720 default sound settings (as I did before in other movies). I have an Imac C2D and plenty of hard disk space.
    Yesterday when I import new takes and done some light fx's (blur 10% and tint) when I saved the premiere frozen for 30 minutes and then I had to force quit.
    When I've tried to open that project again, it just don't open. I've tried everything. See if there was any corrupted file, checked for Hard drive problem (it doesn't have any) and I delete the previous rendered files (as I saw on some tutorial).
    At least I could recover that project using autosaved and previous project backup (I take care always of saving backups).
    But when I saved again (the new recovered and rendered project) it freezes on quit and there comes again. (it seems that premiere it is getting something from the old(damaged) project and just stack there !!!!!!
    The project then it just don't open (I don't see any error message) I just see after 1 hour my premiere freezed and there is no way to see the timeline to fix anything.
    I assume that I have to recover again and to all work over and over. I saw some forums talking about adobe "broken links" something related to video files source and corrupted files, but I still don't get it (since premiere doesn't tells me what is going wrong!!!!!!). They talk about deleting MACC file on windows but I'm on a mac. I didn't saw any tutorial about recovering.
    whe this thing happens I see my timeline with video and audio. I can render but when I quit the program doesn't load the project again.
    Please any help...... I'm working since a month ago on this movie and I need to deleiver that asap.
    Is it better to export the video in parts and them join in a new project or there is any other thing that I can do without missing my month of work.
    ohhh man I just want to scream

    For any reason that I can't explain when I arrived home after day work, I've tried last time before looking my backups and Premiere loaded my project
    Before save and quit I've take a look in all file (check the link and where is the source) I found 2 still frames (photos) were lost ( i mean from my hard drive).
    My biggest clue now it is, when I deleted some video file before, when I enter the premiere project 1st thing that show it is a windows asking me to "point" where is that file.
    But when happens with a photo, premiere doesn't say that this files are lost. It just stucks your project. Any tip to prevent this again?
    Hardware Overview:
      Model Name:    iMac
      Model Identifier:    iMac7,1
      Processor Name:    Intel Core 2 Duo
      Processor Speed:    2.4 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache:    4 MB
      Memory:    4 GB
      Bus Speed:    800 MHz
    Intel ICH8-M AHCI:
      Vendor:    Intel
      Product:    ICH8-M AHCI
      Speed:    3 Gigabit
      Description:    AHCI Version 1.10 Supported
    WDC WD3200AAJS-40VWA1:
      Capacity:    298.09 GB
      Model:    WDC WD3200AAJS-40VWA1
      Revision:    58.01D02
      Native Command Queuing:    Yes
      Queue Depth:    32
      Removable Media:    No
      Detachable Drive:    No
      BSD Name:    disk0
      Mac OS 9 Drivers:    No
      Partition Map Type:    GPT (GUID Partition Table)
      S.M.A.R.T. status:    Verified
      Volumes:
    iMac:
      Capacity:    297.77 GB
      Available:    158.68 GB
      Writable:    Yes
      File System:    Journaled HFS+
      BSD Name:    disk0s2
      Mount Point:    /
    ps: about your question "Next, please verify your Project/Sequence Presets. Do they match your footage 100%?" I've changed 2 video files, they were pretty bigger than the part I was taking for this project, so I edit and save just the part that I am using.
    Btw I've heard that Journaled HFS+ it is not good on Imac to use premiere render option. Is that right?
    Many thanks in advance.

  • CPU "Hogging" - Need Help

    QUESTION: How can I monitor in greater detail how my CPU is being utilized? Can you suggest a program, or can I do it directly on the iMac.
    REASON FOR ASKING: Shortly after turning on my iMac (OS 10.5.5) the fans start running at a very high rate (about 3400 rpm for the CPU fan) and the iMac is very noisy. I have installed a widget the monitors the overall status of my CPU. This widget indicates approximately the following (there is some minor fluctuation): User = 100%, System = 0%, Nice= 0%, and Idle = 0%. So, it appears that some application or ??? is taking control of my iMac and "hogging" the CPU. Hence the need to get further granularity about the CPU's utilization.
    YOUR DIAGNOSIS?: Have you seen similar problems before? Can you suggest possible causes and solutions?
    Thanks

    Apple provide just the thing you want: go to Applications>Utilities>Activity Monitor and choose "all processes". You will be shown exactly what function or application uses what amount of CPU, real memory and virtual memory, and who owns the process. You can also quit processes, or inspect them.
    Hope this helps,

  • Searching Problem, need help plz...

    Hi All,
    I have a problem. After created index my_doc_idx1, i’m searching a word on all document i stored but find nothing. Everytime i search there’s no rows selected.
    anybody help me please?
    I including my code.
    My documents are:
    1. doc1.html contain:
    “Oracle interMedia audio, document, image, and video is designed to manage Internet media content”
    2. doc2.html contain:
    “Oracle interMedia User’s Guide and Reference, Release 9.0.1”
    3. word1.doc contain:
    “Oracle application server.”
    4. oracletext.pdf contain:
    “Stages of Index Creation.”
    Oracle9i 9 realese 2, Windows XP
    Thanks,
    Robby
    set serveroutput on
    set echo on
    -- create table
    create table my_doc (
    id number,
    document ordsys.orddoc);
    INSERT INTO my_doc VALUES(1,ORDSYS.ORDDoc.init());
    INSERT INTO my_doc VALUES(2,ORDSYS.ORDDoc.init());
    INSERT INTO my_doc VALUES(3,ORDSYS.ORDDoc.init());
    INSERT INTO my_doc VALUES(4,ORDSYS.ORDDoc.init());
    COMMIT;
    -- create directory
    create or replace directory dir_doc as 'e:\projects'
    -- import data
    DECLARE
    obj ORDSYS.ORDDoc;
    ctx RAW(4000) := NULL;
    BEGIN
    SELECT document INTO obj FROM my_doc WHERE id = 1 FOR UPDATE;
    obj.setSource('file','DIR_DOC','doc1.html');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 1;
    COMMIT;
    SELECT document INTO obj FROM my_doc WHERE id = 2 FOR UPDATE;
    obj.setSource('file','DIR_DOC','doc2.html');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 2;
    COMMIT;
    SELECT document INTO obj FROM my_doc WHERE id = 3 FOR UPDATE;
    obj.setSource('file','DIR_DOC','word1.doc');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 3;
    COMMIT;
    SELECT document INTO obj FROM my_doc WHERE id = 4 FOR UPDATE;
    obj.setSource('file','DIR_DOC','oracletext.pdf');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 4;
    COMMIT;
    END;
    -- check properties
    DECLARE
    obj ORDSYS.ORDDoc;
    idnum INTEGER;
    ext VARCHAR2(5);
    dotpos INTEGER;
    mimetype VARCHAR2(50);
    fname VARCHAR2(50);
    ctx RAW(4000) := NULL;
    BEGIN
    fname:= '';
    DBMS_OUTPUT.PUT_LINE('----------------------------------------');
    FOR I IN 1..4 LOOP
    SELECT id, document INTO idnum, obj FROM my_doc
    WHERE id = I;
    fname := obj.getSourceName();
    dotpos := INSTR(fname, '.');
    IF dotpos != 0 THEN
    ext := LOWER(SUBSTR(fname, dotpos + 1));
    ext := LOWER(ext);
    mimetype := 'application/' || ext;
    IF ext = 'doc' THEN
    mimetype := 'application/msword';
    obj.setFormat('DOC');
    ELSIF ext = 'pdf' THEN
    mimetype := 'application/pdf';
    obj.setFormat('PDF');
    ELSIF ext = 'ppt' THEN
    mimetype := 'application/vnd.ms-powerpoint';
    obj.setFormat('PPT');
    ELSIF ext = 'txt' THEN
    obj.setFormat('TXT');
    END IF;
    obj.setMimetype(mimetype);
    END IF;
    DBMS_OUTPUT.PUT_LINE('Document ID: ' || idnum);
    IF TO_CHAR(DBMS_LOB.getLength (obj.getContent())) = 0 THEN
    DBMS_OUTPUT.PUT_LINE('Content is NULL.');
    DBMS_OUTPUT.PUT_LINE('No information available.');
    ELSIF TO_CHAR(DBMS_LOB.getLength (obj.getContent())) <> 0 THEN
    DBMS_OUTPUT.PUT_LINE('Document Source: ' || obj.getSource());
    DBMS_OUTPUT.PUT_LINE('Document Name: ' || obj.getSourceName());
    DBMS_OUTPUT.PUT_LINE('Document Type: ' || obj.getSourceType());
    DBMS_OUTPUT.PUT_LINE('Document Location: ' || obj.getSourceLocation());
    DBMS_OUTPUT.PUT_LINE('Document MIME Type: ' || obj.getMimeType());
    DBMS_OUTPUT.PUT_LINE('Document File Format: ' || obj.getFormat());
    DBMS_OUTPUT.PUT_LINE('BLOB Length: ' || TO_CHAR(DBMS_LOB.getLength (obj.getContent())));
    END IF;
    DBMS_OUTPUT.PUT_LINE('----------------------------------------');
    END LOOP;
    EXCEPTION
    END;
    -- create index
    create index my_doc_idx1
    on my_doc(document.comments)
    indextype is ctxsys.context;
    commit;
    alter index my_doc_idx1
    rebuild online
    parameters('sync memory 10m');
    -- searching
    select id from my_doc t
    where contains(t.document.comments,'oracle') > 0
    order by id;
    select id from my_doc t
    where contains(t.document.comments,'application server') > 0
    order by id;
    select id from my_doc t
    where contains(t.document.comments,'index creation') > 0
    order by id;

    Hi,
    Which is best depends on the type of application you are building and the nature of the docs. For simple use with pdf's and word docs I prefer to use bfile or blob which is why I mentioned it. No sense in overcomplicating it.
    My recommendation - look at the interMedia docs and determine if you need the advanced features it provides. I like the application a lot, but am a firm believer in not adding complexity if there is no benefit to be had. Unless you are just playing around with it to learn, I'd recommend matching your project requirements up with what best meets them and go whichever route that is.
    Thanks,
    Ron

  • Nokia Ovi Player License Problem(Need Help Asap)

    Greetings to everyone,
    I am using nokia ovi player to download songs as I have gt the license to do so since i bought an X6 but now after i have restored my laptop i was told to redownload DRM by the ovi player.The problem is it does not want to download DRM as an error comes out that states it is not authorised to use the computer.Can anyhere here help me to solve this problem??
    Thanks

    @teishi: If you have been in contact with the contact centre, and they have confirmed that the device you are using is in fact associated with your account, next step would be for you to delete the "drm folder" on your PC:
    DRM is an acronym for Digital Rights Management, a broad term used to describe a number of techniques for restricting the free use and transfer of digital content. DRM is used in the Nokia Music Store application. Occasionally you may receive an error which specifies a problem with the Digital Rigths Management.
    This problem suggests that the DRM component of Windows is corrupt and is not recognising that you have a license in order to allow you to play, burn or transfer the tracks that you have downloaded.  In order to correct this error message you will need to reset the DRM folder on your PC. This is accomplished by first renaming the folder and then relaunching the track you are having difficulty with. To complete this process first close the Nokia Music application and/or Windows Media player then follow the steps below:
    Double Click on My Computer. 
    Double click on C: The DRM folder in both Windows XP and Vista is hidden by default so you will need to take the following steps to make it visible: 
    Click Start, then Run.
    Type control folders in the box and press Enter.
    In the window that appears, select the View tab. 
    Select Show hidden files and folders. 
    Deselect Hide protected operating system files/folders. 
    Deselect Hide extensions for know file types
    If you are using Windows XP, Browse to C:/Documents and Settings/All Users/DRM for Vista go to C:/ProgramData/Microsoft/Windows/DRM
    Right click on the DRM folder and choose rename.
    Rename the folder to DRMBACKUP [or something similar] Occasionally, attempting to rename this folder will cause an Access Denied error. If this occurs, follow the below steps otherwise continue to step 6. 
    Reset the DRM security component by going to http://go.microsoft.com/FWLink?LinkID=34506 and Clicking upgrade to upgrade the DRM security component Note: If the Upgrade button is greyed out You may need to install the Active -X control by right clicking on the security banner at the top of the windo and choosing Run Active X Control then clicking Run when the security window pops up. 
    Note: When you access this site through Internet Explorer on a Windows Vista-based computer, you may receive a user account control popup message that requires that you enter the administrator password to continue. 
    Note: If you are running Windows Vista x64 and the Upgrade button on the site listed earlier in this step appears dimmed, you will have to start Internet Explorer by using an account on the computer that has Administrative privileges in order to continue. 
    If the DRM protected tracks from Nokia Music Store are now played, your system will perform a security upgrade, which resets all the necessary DRM files. Each track requests a new license when first played. 
    If you are still receiving the error message, the DRM component can be manually installed from http://drmlicense.one.microsoft.com/crlupdate/en/crlupdate.html (Use Internet Explorer for this link). Once upgraded, try to play your downloaded tracks again. Each track should then request a new license when you first play it and will then play as normal and should be burnable to CD This will download new licenses for your entire library.
    For additional information on DRM visit http://en.wikipedia.org/wiki/Digital_rights_management
    if this does not help, try to format your memory card and/or mass memory of you phone.
    let me know if it doesn't help!
    http://www.nokia.com/support

Maybe you are looking for

  • I'm accruing data usage when I'm connected to wifi

    I'm positive that Verizon is committing Fraud. 10 days ago my husband and I switched from Sprint to Verizon and got new Galaxy S5 phones.  While with Sprint, my husband used about 1.5GB of data a month and I used .5GB a month.  The reason my usage wa

  • Why are emails missing in the to: line?

    In the iOS mail app I have noticed that some mass emails are missing addressees are missing in the to: line. They are not in the cc: or bcc: line either. However I know they are there when I view the email online or on my computer. This is happening

  • Error while importing a DC from track

    Hi, I am importing a DC from a track and I am getting the below error after the build. The project was not built since its classpath is incomplete. Cannot find the class file for com.sap.engine.lib.lang.array.ByteArray. Fix the classpath then try reb

  • Runtime Errors Raise Exception in Solution Manager

    Hi Guru's, While I try to excute the transaction solman_issue_mgnt in solution manager for issue tracking, runtime errors occurs. Error analysis     A RAISE statement in the program "CL_GUI_HTML_VIEWER============CP" raised the      exception     con

  • Moving picture from laptop hard drive to larger external hard drive

    I am not changing anything in my system.  I am using windows 7 and will continue to.  No change in elements version (10).  Please give me a step by step instructions on how to move my pictures from my computer hard drive to an external hard drive (th