Scrambled Text in Finder & Desktop

My friend was rushing one day and he disconnected his ipod without properly ejecting it in OSX. When he got home later his desktop and finder menus, etc. are not legible anymore. All the text on his menus consist of an "A" in a square box. Can anyone help please? I have screenshots of the desktop if anyone likes to see them. Here are some error messages from console...
Mac OS X Version 10.4.9 (Build 8P135)
2007-04-21 20:10:25 -0700
2007-04-21 20:10:25.830 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:26.536 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:26.593 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:28.586 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:31.468 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:38.857 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:38.881 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
2007-04-21 20:10:38.897 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.
Apr 21 20:10:39 shigeru-WC-iMac-G5 diskarbitrationd[39]: SystemUIServer [188]:19459 not responding.
2007-04-21 20:10:39.305 Finder[189] CFLog (0):
CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:
(UNKNOWN)
The parser will retry as in 10.2, but the problem should be corrected in the plist.

Ok, I opened terminal and typed this and this is what I got... Do I need to save changes in terminal before I restart? I have this file in finder, but not with OLD after the file name. Please advise.
Welcome to Darwin!
Erics-iMac-G5:~ iMac$ cd /Library/Preferences
Erics-iMac-G5:/Library/Preferences iMac$ mv com.apple.finder.plist com.apple.finder.plist.OLD
mv: rename com.apple.finder.plist to com.apple.finder.plist.OLD: No such file or directory
Erics-iMac-G5:/Library/Preferences iMac$

Similar Messages

  • Data from itab to be store in text file in desktop

    hi
    i am tyring to store the data from itab into a text file in desktop,but its now owrking.
    i am using open dataset statment,but no where data is storing.My code:
    TYPES : BEGIN OF ST_DEMO,
    REG_NO(10) TYPE C,
    NAME(20)   TYPE C,
    ADDR(20)   TYPE C,
    END OF ST_DEMO.
    DATA : WA_DEMO TYPE ST_DEMO,
    IT_DEMO TYPE TABLE OF ST_DEMO,
    L_FNAME TYPE dxfile-filename .
    PARAMETERS: P_FNAME(128) TYPE C DEFAULT '\usr\sap\put\vipin.txt' OBLIGATORY.
    L_FNAME = P_FNAME.
    WA_DEMO-REG_NO = '100001'.
    WA_DEMO-NAME = 'ANAND'.
    WA_DEMO-ADDR = 'NAGARKOVIL'.
    APPEND WA_DEMO TO IT_DEMO.
    OPEN DATASET L_FNAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    WRITE :5 'REG NUM',16 'NAME',37 'ADDRESS' .
    LOOP AT IT_DEMO INTO WA_DEMO.
      IF SY-SUBRC = 0.
        TRANSFER WA_DEMO TO L_FNAME.
        WRITE :/5 WA_DEMO-REG_NO,16 WA_DEMO-NAME,37 WA_DEMO-ADDR.
      ENDIF.
    ENDLOOP.
    close DATASET L_FNAME.
    please tell me where is the prob?I wan to schedule it for background job.
    regds
    vipin

    hi
    here is the code for :  "data from itab to be store in text file in desktop"
    TABLES: vbak.    " standard table
    *                           Type Pools                                 *
    TYPE-POOLS: slis.
    *                     Global Structure Definitions                     *
    *-- Structure to hold data from table CE1MCK2
    TYPES: BEGIN OF tp_itab1,
           vbeln LIKE vbap-vbeln,
           posnr LIKE vbap-posnr,
           werks LIKE vbap-werks,
           lgort LIKE vbap-lgort,
           END OF tp_itab1.
    *-- Data Declaration
    DATA: t_itab1 TYPE TABLE OF tp_itab1.
    DATA : i_fieldcat TYPE slis_t_fieldcat_alv.
    *                    Selection  Screen                                 *
    *--Sales document-block
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.
    SELECTION-SCREEN END OF  BLOCK b1.
    *--Display option - block
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t02.
    PARAMETERS: alv_list RADIOBUTTON GROUP g1,
                alv_grid RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END OF  BLOCK b2.
    *file download - block
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-t03.
    PARAMETERS: topc AS CHECKBOX,
                p_file TYPE rlgrap-filename.
    SELECTION-SCREEN END OF  BLOCK b3.
    *                      Initialization.                                *
    *                      At Selection Screen                            *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
        EXPORTING
          dynpfield_filename = 'P_FILE'
          dyname             = sy-cprog
          dynumb             = sy-dynnr
          filetype           = 'P'      "P-->Physical
          location           = 'P'     "P Presentation Srever
          server             = space.
    AT SELECTION-SCREEN ON s_vbeln.
      PERFORM vbeln_validate.
    *                           Start Of Selection                         *
    START-OF-SELECTION.
    *-- Fetching all the required data into the internal table
      PERFORM select_data.
    *                           End Of Selection                           *
    END-OF-SELECTION.
      IF t_itab1[] IS NOT INITIAL.
        IF topc IS NOT INITIAL.
          PERFORM download.
          MESSAGE 'Data Download Completed' TYPE 'S'.
        ENDIF.
        PERFORM display.
      ELSE.
        MESSAGE 'No Records Found' TYPE 'I'.
      ENDIF.
    *                           Top Of Page Event                          *
    TOP-OF-PAGE.
    *& Form           :      select_data
    * Description     : Fetching all the data into the internal tables
    *  parameters    :  none
    FORM select_data .
      SELECT vbeln
         posnr
         werks
         lgort
         INTO CORRESPONDING  FIELDS OF TABLE t_itab1
         FROM vbap
         WHERE  vbeln IN s_vbeln.
      IF sy-subrc <> 0.
        MESSAGE 'Enter The Valid Sales Document Number'(t04) TYPE 'I'.
        EXIT.
      ENDIF.
    ENDFORM.                    " select_data
    *& Form        : display
    *  decription  : to display data in given format
    * parameters   :  none
    FORM display .
      IF alv_list = 'X'.
        PERFORM build_fieldcat TABLES i_fieldcat[]
                               USING :
    *-Output-field Table      Len  Ref fld Ref tab Heading    Col_pos
       'VBELN'       'T_ITAB1'     10   'VBAP'  'VBELN'    ''            1,
       'POSNR'       'T_ITAB1'     6    'VBAP'  'POSNR'    ''            2,
       'WERKS'       'T_ITAB1'     4    'VBAP'  'WERKS'    ''            3,
       'LGORT'       'T_ITAB1'     4    'VBAP'  'LGORT'    ''            4.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
    *        i_callback_pf_status_set = c_pf_status
            i_callback_user_command  = 'USER_COMMAND '
    *        it_events                = t_alv_events[]
            it_fieldcat              = i_fieldcat[]
          TABLES
            t_outtab                 = t_itab1[]
          EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
      IF alv_grid = 'X'.
        PERFORM build_fieldcat TABLES i_fieldcat[]
                                 USING :
    *-Output-field Table      Len  Ref fld Ref tab Heading    Col_pos
         'VBELN'       'T_ITAB1'     10   'VBAP'  'VBELN'    ''            1,
         'POSNR'       'T_ITAB1'     6    'VBAP'  'POSNR'    ''            2,
         'WERKS'       'T_ITAB1'     4    'VBAP'  'WERKS'    ''            3,
         'LGORT'       'T_ITAB1'     4    'VBAP'  'LGORT'    ''            4.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
    *        i_callback_pf_status_set = c_pf_status
            i_callback_user_command  = 'USER_COMMAND '
            it_fieldcat              = i_fieldcat
          TABLES
            t_outtab                 = t_itab1[]
        EXCEPTIONS
       program_error                     = 1
       OTHERS                            = 2.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " display
    *& Form        : vbeln_validate
    *  description : to validate sales document number
    * parameters   :  none
    FORM vbeln_validate .
      DATA: l_vbeln TYPE vbak-vbeln.
      SELECT SINGLE vbeln
        FROM vbak
        INTO l_vbeln
        WHERE vbeln IN s_vbeln.
      IF sy-subrc NE 0.
        MESSAGE 'ENTER THE VALID SALES DOCUMENT NO:' TYPE 'I'.
        EXIT.
      ENDIF.
    ENDFORM.                    " vbeln_validate
    *& Form       :build_fieldcat
    * Description : This routine fills field-catalogue
    *  Prameters  : none
    FORM build_fieldcat TABLES  fpt_fieldcat TYPE slis_t_fieldcat_alv
                        USING   fp_field     TYPE slis_fieldname
                                fp_table     TYPE slis_tabname
                                fp_length    TYPE dd03p-outputlen
                                fp_ref_tab   TYPE dd03p-tabname
                                fp_ref_fld   TYPE dd03p-fieldname
                                fp_seltext   TYPE dd03p-scrtext_l
                                fp_col_pos   TYPE sy-cucol.
    *-- Local data declaration
      DATA:   wl_fieldcat TYPE slis_fieldcat_alv.
    *-- Clear WorkArea
      wl_fieldcat-fieldname       = fp_field.
      wl_fieldcat-tabname         = fp_table.
      wl_fieldcat-outputlen       = fp_length.
      wl_fieldcat-ref_tabname     = fp_ref_tab.
      wl_fieldcat-ref_fieldname   = fp_ref_fld.
      wl_fieldcat-seltext_l       = fp_seltext.
      wl_fieldcat-col_pos         = fp_col_pos.
    *-- Update Field Catalog Table
      APPEND wl_fieldcat  TO  fpt_fieldcat.
    ENDFORM.                    "build_fieldcat
    *& Form        : download
    *  description : To Download The Data
    *  Parameters  :  none
    FORM download .
      DATA: l_file TYPE string.
      l_file = p_file.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_file
          filetype                = 'ASC'
        TABLES
          data_tab                = t_itab1
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " download
    hope it will help you
    regards
    rahul

  • Scrambled text in mail

    Does anyone know what might be causing scrambled text in mail. I recently installed some fonts and I'm thinking that may have caused this. Check out the screenshot:
    http://www.flickr.com/photos/27106722@N00/2426367911/
    I installed a lot of fonts so I can't just easily delete them. They're all mixed in with the rest. Any other ideas?

    One of your bad fonts is probably Helvetica Fractions. It must be deleted. Also delete Times Phonetic if you have it.

  • Reader 8.1.2 :  garbled / scrambled text when printing

    After upgrading to version 8.1.2 from 7.1, our work place noticed that certain PDF documents will print garbled text if the Reader window is closed prior to the document being completely processed in the Print Queue. (Windows XP) These documents are PDF files that use an active script to import information from the user's log-in to fill in various fields (name, birth date, etc...). For example, if you print a document that is 10 pages and you close the Reader window prior to the 10th page being printed, every page printed after the closed window will be printed with garbled/scrambled text. This issue is not present before version 8. Its as if Adobe 8 maintains a link to spool/stream data from the Reader window to the print queue. Has anybody else experienced this or any suggestions for a fix? (other than rolling back to version 7) thnks

    Hi,
    I am having a similar issue with Ver 8.1.2 running over cirtix with a similar setup to Jans-Peter.
    The difference is that Reader opens fine but when you try to edit preferences it crashes.
    This only happens on an citrix session. If I run reader on the server directly it works OK.
    However after reading above I can replicate the problem on the server by moving or deleting the ADMPlugin.apl file.
    Any further ideas at all?
    Mark

  • Audio CD doesn't show up in Finder, desktop or iTunes

    Before I upgraded to Snow Leopard, I had no problems playing my audio CDs and importing them to iTunes. After I upgraded, 1 out of 5 times an audio CD won't be recognized by the OS and thus doesn't show up on the Finder, Desktop (as an icon), or in iTunes.
    As a result, I can't eject the disc and I have to reboot the system to get it out (terminal way doesn't work). Any suggestions on why this is and if this is a bug?
    I do not want to reboot my system each time the OS doesn't recognize an audio CD.

    HI,
    Try repairing disk permissions.
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Also, open System Preferences/CD&DVD's.
    Where you see: When you insert a blank CD click the pop up menu and select: Ask What To Do.
    Carolyn

  • Synchronized text issue from desktop to mobile site design

    Hello, I love the idea of synchronized text, but is there a way to assign different styles on both desktop and mobile site pages?
    For example, If I use synchronized text on my desktop pages, my font sizes will be larger then the font sizes I would use for my mobile site pages. But, using synchronized text, if that content is linked between my desktop and mobile pages, I'm limited to one font size, which would work for my desktop site but the font size would be too large for my mobile site.
    The content between between desktop and mobile would be the same text, but I need the option to assign a different font size for my mobile site.
    Is this possible? If not, can you please add this to new features.
    Thanks much
    Cheriss

    Hi,
    Single page websites can be great for new sites or for some special projects, but I won't recommend them as long-term solutions and, if you already have a multi-page website, I do not recommend switching to a single-page site.
    If your single page site has great content and good structure, google might provide same treatment as it does for various sub pages website.
    A useful Video by Matt Cutt, head of the webspam team at Google
    Search engines will index all the pages of your website, providing multiple opportunities for your site to come up in searches. When your site consists of only one page, a single page is exactly what you’ll have indexed.
    That means if you have many services, many products, single page design will really compromise your rank and result in search engine.
    Do let me know if you have some more questions.

  • HT4650 In Finder, Desktop, it shows a zillion photos ...jpgs.. all greyed out.  I have no idea how they got there and they have been a nuisance since I cannot seem to get them off.  Tried dragging them to the trash, didn't help.

    In Finder,  Desktop,  a zillion photos show .  I have no idea how they got to the desktop but have not been able to get rid of them.  They are listed as greyed out.  ON the Desktop I tried dragging them to the Trash.  If I try to empty trash, 'some of the items you are moving are in use by another application. etc.."  and now,  another, Copy   "Preparing to undo "move to Trash".

    Try an All Images Search:
    In the Finder:
    Command - f
    Kind: Images
    Size: Greater than 300kb (This is to avoid all the thumbnails, icons and so on.)
    Set it to search the Mac.
    As to why? The most likely answer is user error, I'm afriad. It does point up the importantce of always having a back up.
    Regards
    TD

  • Finder/Desktop Not Refreshing

    Since I have updated to system 10.5 (Leopard) i have been experiencing issues with the finder. Whenever I try to save a file or download a file to save on the desktop it does not appear. This also happens when I do a "Print Save to PDF". I have had this happen using multiple programs (Safari, preview, Illustrator, ect.)
    When I go into the finder desktop window (Macintosh HD/Users/Me/Desktop) and view the desktop the files are there and can be opened. The only way I have been able to resolve the issue and get these files to appear is either by Relaunching the Finder, Restarting, or Changing the Screen Resolution.
    Please let me know if anyone else have experienced this issue and any ways to resolve it. Thank You!

    yes, it's likely the result of using a second monitor. when you disconnect the second monitor, the computer still thinks it's there and the files that you save to the desktop are saved to the second monitor, i.e. off the screen. this is a common problem actually and I don't know of a good way to resolve it. try disconnecting the second monitor while the computer is still on as opposed to after you turn it off or put it to sleep.

  • Mac Mail 7.3 Scrambling Text

    Mac Mail 7.3 Scrambling Text
    My text scrambles or bunches up when I backspace or try to forward space. I cannot isolate a single letter.
    For about a year. I keep waiting for it to get fixed in the next update. I have been typing everything in my stickies and pasting it in for the past year hoping it would get fixed but now I'm thinking it may be me and my machine. Mac Pro. About 2 years old. If anyone else has had this problem please let me know. Thanks!!
    Stephen

    This has been happening for months. If anyone knows what's going on I would be very grateful.
    Stephen
    Forward spacing pulls from behind
    Words crash when I try to backspace delete
    I highlight a word and it stops in the middle of a letter
    See cursor in middle of "m"

  • Cant find Desktop[SYNC] in Service Book in my Curve 8900?

    Trying to restore read-only Address Book database on the BlackBerry 8900, but cant find Desktop[SYNC] in Service Book?

    Hi TheSommelier,
    You should only have this service book on your device if you are or were previously on a BlackBerry Enterprise Server.
    As a workaround you could also backup and security wipe the device then attempt restoring the address book once again:
    http://www.blackberry.com/btsc/KB02318
    If it still fails there may be an issue with the backup.
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • WD My Book 4TB opens in disk utility but does not show in finder/desktop?

    I am able to see my drive and open it from within the Disk Utility but it has disappeared from my desktop/finder. Verify and repair show NO issues. When I open it from the Disk Utility all information is intact.
    Thank you in advance!

    Back up all data.
    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Triple-click anywhere in the line below on this page to select it:
    sudo chflags nohidden /V*/Wo*
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting. You'll be prompted for your login password. Nothing will be displayed when you type it. If you don’t have a login password, you’ll need to set one before you can run the command. You may get a one-time warning to be careful. Confirm. You don't need to post the warning.
    If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Log in as one and start over.
    Wait for a new line ending in a dollar sign (“$”) to appear. You can then quit Terminal. Test.

  • All text in Finder has vanished

    Hi,
    My father-in-law is having problems with his G5 running Tiger; all of the text seems to have vanished from the Finder. The names are missing from his login window, and he can't see what he's typing, but he can log in. All the icons are on his desktop but without names.
    I've suggested reinstalling the system software. Any suggestions for a less involved solution? It's hard for him to run any applications given that he can't read anything...
    Any help is appreciated!

    Still no joy-- text was still missing in Safe Boot mode. Also, it's not confined to his user account: he logged into the Admin account on his machine and observed the same problem. When he did so it seems like Disk Utility popped up and was giving him alerts-- with no text in any of the boxes or buttons, it was hard to figure out what was going on. Even harder to do all of this diagnosing over the phone.
    I've sent him off looking for his Tiger install disk, which he has not been able to locate (you'd know why if you saw his computer room-- anyone else have an in-law like that?). The problem seems to extend beyond a corrupted font; his menus drop all the way down to the bottom of the screen, and are completely blank. I've not encountered anything like this before.
    Thanks for all your help!

  • Garbled/scrambled text with Air for Android & GPU mode

    Please excuse the big image! Has anyone come across this? As you can  see the 'U' in 'Nebula' is scrambled and so are the digits below best  time.  It only happens within  the space a character would occupy. The line under 'game' is just a reflection.
    I can't work out what's causing it, it's not always the same  characters that do it although the U in Nebula is always scrambled.  Sometimes digits are scrambled and sometimes the same ones are not. It  seems to occur with embedded fonts and with normal ones like Arial. I've  tried using both Classic and TLF text, and changing anti-aliasing  settings. It occurs on both dynamic and static text.
    But it only happens  with GPU rendering, not CPU rendering.
    I can't find any mention of this at all on Google, starting to wonder if perhaps it's just my phone? (Desire S).
    Any input is greatly appreciated!

    Thanks for the fast reply! Switching to device fonts does fix the problem, but it means using some horrible default font rather than the one I want to, which I've embedded. I've tried a few more settings and Bitmap Text seems to fix it in some instances but not in others.

  • How to repair finder/desktop issues?

    Hi,
    I am new to the discussion forum, so apologies if this is the wrong area to be posting this question.
    I have a 5 year old powerbook G4 that has been running fine up until the other night when I (I guess stupidly) decided to add some extra memory to the laptop. After adding the memory and powering the unit back up, the memory was correctly recognised and I began to test some programs to see if everything was okay. After about 10 minutes the machine froze, with the only option available to me, being a force shut down (power button).
    When I started up the machine again, the machine booted to the desktop, but no Mac OSx apps work. For example, the top bar that has the Apple logo in the left corner appears, but when you click it, the icon is selected but no menu appears. Same thing for finder, except none of the other menu icons appear - no date, no airport etc either. Yet strangely I was able to launch and run MS Office apps - just I couldn't quit them.
    I tried a safe-boot but again no luck, and looking through the logs, I see that the SystemUIServer seems to be crashing with the following text:
    "localhost xinetd 272 {init_services} no services Exiting."
    I also tried fsck, and this reports:
    invalid extent entry (4, 907)
    I have since removed the new memory and reverted back to the initial memory.
    So I am guessing something happened with the new memory to crash the system, but now I really just want to get back to a working machine. Can anyone suggest the steps I should follow to get back to my previously stable machine?
    I did try to reset the PMU, as I am unsure what has been affected by the crash, but that has made things even worse - so much so that the machine now boots, but every 5 seconds, the desktop (or maybe finder) keeps re-starting, so it just cycles and cycles between the desktop and the re-launch of the desktop. Any ideas on how to fix this too would be greatly appreciated since I am unable to do anything now using the desktop.
    Thank you in advance for any help.

    Your hard drive's directory is damaged. This could have resulted from bad RAM, but since you removed the new RAM but cannot operate the computer it's not possible to know if RAM was the cause.
    You can start with the following:
    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.

  • Highlighting text in Find

    Hello, while looking for text in a Mail message by doing Command-F the found text is highlighted in a faint grey box.  Is there a way to change the box color to make it easier to find on the page?  Thanks!

    Install espeak and write this script:
    sayit.sh
    #!/bin/sh
    espeak "`xsel -p -o`"
    Put that in a folder in your $PATH and bind a key to it. It'll speak any highlighted text anywhere in your X11 environment.

Maybe you are looking for

  • Adding different insert statement in batch.

    Hi, I want to add values in 3 different table. I am using postgre. If any of the query fails i want to roll back others. Is there any class that supports this this feature. I have searched regrading but i was enable to get some relevant information.

  • SAP B1 as career option_Need expert suggestions

    Hello there, I am a B.E electronics guy graduated in 2009. I wish to pursue SAP B1 training. Could you please tell me (1) Chances of getting a job in this SAP stream? (2) Any good institute in Bangalore for SAP B1 training? (3) Is getting into ERP be

  • Removing the Browser Notification Icon (with 1 beside it) - Please Help!

    Hi, Just got my new blackberry. The last day or so, I got a nofication of a 'browser' icon with a number '1' beside it. And I have tried everything to to try and get rid of it. However it has been persistent... Two Questions: 1. How to get rid of it?

  • Ipod touch 4th Generation 16 GB

    my ipod is giving very low battery back up and heats very much, got 4 times repalced but same problem. IPOD Touch 4th Genration 16 GB

  • Can't read PageMaker 6.5 files with InDesign CS3

    I have a lot of old PageMaker 6.5 files that need to be upgraded to InDesign. When I try to open them in InDesign CS3, I get an error that says: Cannot open the file "XYZ". Adobe InDesign may not support the file format, a plug-in that supports the f