Finder locked

My MacPro seems to have launched only partly : I can't drag files in Finder, Copy/Paste doesn't work, many user settings seem to be lost (Fonts missing, no MobileMe sync, no recognition of USB dongle etc). Looks like my user account isn't addressed, a new test account behaves the same.
All help is greatly appreciated since I'm stuck.

Happy to hear it helped, and thanks for the star.
When posting a problem it’s a good idea to list what you have tried already. Perhaps it took a long time to get a response because you had so many different things going on and so many different ways to approach it that the other users who help here didn’t want to list them all and then explain how to do each, even though many have unbelievable patience.
Anyway, you’re up and running now, and that’s good news.

Similar Messages

  • Finder locks up when attempting to access files on external drive

    HI all,
    I am experiencing a sinking feeling at the moment - I have been editing large amounts of video in a particular project and on recent captures I found I only had about 5gb left on my external Maxtor 300gb hard drive, which aborted the last capture, reporting "dropped frames" in final cut pro.
    History has shown this happens when the hard drive gets close to running out of space.
    I went to finder to delete some unneccessary files but when I try to, finder locks up and does not allow me to access any of the files. I believe this is also to do with the fact that the space is getting low, but how do I get into the files to delete them when finder won't let me do so?
    At the same time I am hoping this is not a hard drive failure in the making...
    Thanks
    David

    Ok - for a while there, the hard drive would not come up on the desktop - but now on a re-boot of the compter, or if I disconnect the hard drive and re-connect it, a message comes up with three buttons which say:
    Initialize
    Ignore
    Eject
    Sound like the hard drive has died?

  • Script to find locks in Database with Date and time.

    Hi all,
    I used to have a script which i have lost now due to a recent laptop crash. This script used to find locks in the database.. along with the date and time since when it is locking the session.
    It was quite a comprehisive one. I think i found it on this forum only, but not able to find it now. Can someone please help me find one such comprehensive script.
    Currently I am using this script.. which is also good.. but does not have the date and time stamp on it. Is there something better.?
    SET LINESIZE 165
    SET PAGESIZE 66
    COLUMN oracle_user     FORMAT a15      HEADING 'Oracle User'
    COLUMN usercode        FORMAT a12      HEADING 'SID/Serial#'
    COLUMN os_user         FORMAT a10      HEADING 'O/S User'
    COLUMN program         FORMAT a25      HEADING 'Program'
    COLUMN mode_held       FORMAT a15      HEADING 'Mode Held'
    COLUMN mode_requested  FORMAT a15      HEADING 'Mode Requested'
    COLUMN lock_type       FORMAT a15      HEADING 'Lock Type'
    COLUMN object_name     FORMAT a30      HEADING 'Object Name'
    COLUMN lock_time_min   FORMAT 999,999  HEADING 'Lock Time (min)'
    SELECT
    s.username                                 oracle_user
    +, l.sid || '/' || s.serial# usercode+
    +, s.osuser os_user+
    +, s.program program+
    +, DECODE(l.lmode,+
    +1, NULL,+
    +2, 'Row Share',+
    +3, 'Row Exclusive',+
    +4, 'Share',+
    +5, 'Share Row Exclusive',+
    +6, 'Exclusive', 'None') mode_held+
    +, DECODE(l.request,+
    +1, NULL,+
    +2, 'Row Share',+
    +3, 'Row Exclusive',+
    +4, 'Share',+
    +5, 'Share Row Exclusive',+
    +6, 'Exclusive', 'None') mode_requested+
    +, DECODE(l.type,+
    +'MR', 'Media Recovery',+
    +'RT', 'Redo Thread',+
    +'UN', 'User Name',+
    +'TX', 'Transaction',+
    +'TM', 'DML',+
    +'UL', 'PL/SQL User Lock',+
    +'DX', 'Distributed Xaction',+
    +'CF', 'Control File',+
    +'IS', 'Instance State',+
    +'FS', 'File Set',+
    +'IR', 'Instance Recovery',+
    +'ST', 'Disk Space Transaction',+
    +'TS', 'Temp Segment',+
    +'IV', 'Library Cache Invalidation',+
    +'LS', 'Log Start or Log Switch',+
    +'RW', 'Row Wait',+
    +'SQ', 'Sequence Number',+
    +'TE', 'Extend Table',+
    +'TT', 'Temp Table',+
    l.type)                                 lock_type
    +, o.owner || '.' || o.object_name+
    +|| ' - (' || o.object_type || ')' object_name+
    +, ROUND(l.ctime/60, 2) lock_time_min+
    FROM
    v$session     s
    +, v$lock l+
    +, dba_objects o+
    +, dba_tables t+
    WHERE
    l.id1            =  o.object_id
    AND s.sid            =  l.sid
    AND o.owner          =  t.owner
    AND o.object_name    =  t.table_name
    AND o.owner          <> 'SYS'
    AND l.type           =  'TM'
    ORDER BY
    +1+
    +/+

    What Brian said is true so are your sure your query was not just reporting the start time of the current transaction from v$transaction.start_time, or the start time of the session: v$session.logon_time, or perhaps the time since the last database call (v$session.last_call_et) which for an active session would be the time the current SQL statement has been running?
    HTH -- Mark D Powell --

  • Using Terminal to Find Locked Files

    Hello all,
    I am a photographer and often use the locking feature on my camera to lock certain images, ones that are good shots.  With Windows, I was able to sort by whether a file was locked or not.  However I am finding that Mavericks does not have this feature.  Therefore I have resorted to using terminal to find locked files.  However I was wondering if I could get assistance in creating a script/command that would take the results of the files I found locked and either copy or move them into a subfolder.
    IE: I have an event folder called BRB-Team1VsTeam2.  I use the command "find . -flags uchg" to find the locked files.  What I need to do now is get the returned result and either copy or move into a subfolder called "locked".
    I tried "find . -flags uchg && cp /locked" but I know the logic isn't quite there but I haven't played with terminal too much to know what I am doing.
    So anyone have a solution to this?  Or know of an application to at least let me search/filter/sort by the file status (IE: Locked vs unlocked)?

    Here is the basic idea, adjust as necessary. The -d option limits the depth into the folder you are searching. You don't need it; I just added if you want to limit the depth into subfolders.
    find /search/path -d 1 -flags uchg -exec cp {} /destination/path \;
    You could roll this up in an Automator workflow, Service, or Folder Action if you want:
    By checking the "Show this action when the workflow runs" you can choose the destination folder at run time. If always the same, leave it unchecked.
    A Folder Action would work on the items added to a particular folder. The find command would have to be modified.
    A Service could be used to pick the source folder, or to add a shortcut command.

  • How to find locked files and unlocked them???

    Having trouble for snxing itunes i need to find locked files but i dont know how and unlocked them so that i can sync again..

    When i connect my ipod into my computer "unknown error occured(-54)" is keep appearing thats why i cant see my library in my ipod.. And i think locked items caused this.. I open once another program that for browsing files to for iphones and ipods and after that the unknown error keep appearing and some of my musics are in grey i cant even delete it

  • Finder locked-up while running Garmin map manager

    In Maverick OS, Finder locked-up while running Garmin map manager; can't force quit because Garmin 450 is connected.  Also complicated by Sketch-up app trying to install; several license agreement screens on desktop. Any help will be appreciated. Thanks, DCC

    Hello saturdaysaint:
    I would try a couple of things:
    Run permission repair as a "precaution."
    Run repair disk from your software install DVD.
    Trash com.apple.finder.plist (the finder preference file).
    I never let software updates run automatically - I use the software update manually and then back up before any update.
    Barry

  • Find Locked Application users in Ebs R12

    hi,
    how to find locked Application users in Ebs R12.
    Regards,

    Please see these docs -- It is applicable to R12 as well.
    How Do User Accounts Get Locked After Exceeding the Signon Password Failure Limit In 11.5.10.2? [ID 367947.1]
    "Signon Password Failure Limit" Profile Option Does Not End Date User in FNDSCAUS Form [ID 332577.1] -- Run the query under Workaround1
    Thanks,
    Hussein

  • Finder Locks Up on "Open With" command

    Often, when I find a file in Finder that I want to open with a specific app, I right-click and mouse over "Open With" in the contextual menu. More than half the time I do that now, I get the beach ball and Finder locks up. I can't even force Finder to relaunch.
    I've tried repairing disk permissions from the OS X install disk, but still no luck.

    Do you have StuffIt Deluxe? More often than not problems with Finder like those you are having are caused by a contextual menu item installed by StuffIt. Take a look in
    /Library/Contextual Menu Items
    /Users/yourname/Library/Contextual Menu Items
    See what you've got. If you have anything from StuffIt, remove it.
    Francine
    Francine
    Schwieder

  • Finder Locks Up When Using AEBS Attached Drives & Network Backup

    This might be more of a general discussion as well as specific to my situation:
    I have a new Airport Extreme Base Station with two drives attached via USB powered hub. #1 is an OWC 1TB drive and #2 is a Seagate Momentus 500GB drive. Both are HFS+, and I have never had any issues when attached locally.
    I am attempting to back up using CCC and/or SuperDuper to the Seagate with a sparse bundle. Both programs hang up when trying to locate the drive. I am able to Force Quit once, but if I run the programs again the Finder locks up and I can't recover it even using Terminal.
    I'm not sure what the problem might be. The network mounted drives are always visible; these lock ups seem to only occur when trying to backup. I've read Finder can be tempermental with networking.
    I suppose, for troubleshooting, I should attach one drive directly and go from there?

    This might be more of a general discussion as well as specific to my situation:
    I have a new Airport Extreme Base Station with two drives attached via USB powered hub. #1 is an OWC 1TB drive and #2 is a Seagate Momentus 500GB drive. Both are HFS+, and I have never had any issues when attached locally.
    I am attempting to back up using CCC and/or SuperDuper to the Seagate with a sparse bundle. Both programs hang up when trying to locate the drive. I am able to Force Quit once, but if I run the programs again the Finder locks up and I can't recover it even using Terminal.
    I'm not sure what the problem might be. The network mounted drives are always visible; these lock ups seem to only occur when trying to backup. I've read Finder can be tempermental with networking.
    I suppose, for troubleshooting, I should attach one drive directly and go from there?

  • Finder locking up when browsing Time capsule hard drive

    Finder locking up when browsing Time capsule hard drive
    I am able to browse the hard drive preview some videos or open files for around 5-10 mins then Finder locks up. Internet still works and I can relaunch Finder and then works for a while again. It sounds like the hard drive is just going to sleep. I watch some films directly off of the hard drive through VLC and these just stop wilst viewing them.
    I am on 10.6.2 working on the 5GHZ channel on dual band time capsule.
    It is really annoying I have tried a few things like resetting the DCHP Lease. But it seems to be specific to the hard drive as the internet still works fine. It is really annoying as it jams up the finder really awkwardly.
    Ant ideas most wanted
    Thanks

    Are you browsing/viewing files in Time Machine backups on your Time Capsule, or files you've put there yourself?
    If the files are Time Machine backups, use the Time Machine interface (the "Star Wars" display), via the Time Machine icon in your dock (or in your Applications/Utilities folder) to see what's there. Backups are not meant to be used; they're duplicates that can be restored in case of a problem with the originals on your system.
    If the files are things you put there, you'll do better browsing, searching, or re-posting in the +Time Capsule+ forum, hiding in the +Digital Life+ section, at: http://discussions.apple.com/forum.jspa?forumID=1253

  • Finder Locks up if not used right away

    Hi Everyone!
      On my 2.4GHz Intel Core 2 Duo 24" iMac running Mountain Lion, latest updates, I'm finding the following problems that I can't quite figure out and was hoping someone might have an idea:
    Start up very slow - at least 3-4 min.
    It takes a VERY long time to populate the finder windows.   If I open a finder window it's empty for about 30 sec. before it starts populating and even then it takes quite a bit of time for the icons to change from generic to their proper symbols
    Once it's up and running, if I start using it right away, it's fine.  But if I walk away and don't use the computer for a few minutes, the finder locks up.  The mouse pointer will move, and if a program is open windows can be closed, but nothing can be initiated.  If my browser is open (Chrome), eventually I get this page is unresponsive alert.  No functions, no new windows in any program.  And eventually the beach ball comes on.  I've tried to wait it out for as much as 30 min. without success.  Opening Force Quit and it's showing the Finder as unresponsive, but force quitting does nothing.  I have to manually shut down by using the power button.
    When I check the console for error messages, there are none.  Very few messages at all.
    I can upload more info when I get home tonight, but in the meantime, does this ring any bells for anyone?
    THANKS!

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • Finder locking up on Connect to Server

    hey, sorry but I am new to this area of my Mac. Why would Finder lock up so quickly if I am trying to connect to a remote server? I conenct to my work's VPN and when I go to Go > Connect to Server and choose the smb path for our folder tree at work, it immediately locks up. Anyone got an idea why it may be happening? Or what I could do to resolve it?

    This is how I am connecting.
    ftp://[email protected]//[email protected]
    When I do that, it works. But all the files are only read-only.
    I am in talks with my server admin right now, he has some sgguestions. I will keep this post updated.

  • How do i find locked music files to solve my -54 error for windows 8

    everytime my itunes starts up, it comes up with " the ipod could not be synced, an unknown error occured (-54)", i've read that people find the locked files in their library and unlock them and it solves the problem, but i wanted to know how i find the files for a windows 8 pc?

    Maybe:
    https://answers.yahoo.com/question/index?qid=20090723091425AAM63Zz

  • Finder Lock Ups

    Hi everyone!
    I was going through my computer deleting folders and my Applications and Application Support folders were moved. I'm not sure what went wrong, but my Finder has been locking up ever since--I've returned the folders to where they belong, but something still isn't right. Launching applications from the dock is slow as well.
    Any advice?

    Hi Lyssa, it's difficult to figure without knowing which folders you deleted and moved. Try this approach.
    First Repair Disk:
    Steps for using Disk Utility
    1. Insert your Mac OS X CD-ROM disc or Restore DVD disc, then restart the computer while holding the C key until you see the spinning gear..
    2. Once started up from CD or DVD, choose Disk Utility from the Installer menu.
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from disc to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume, if necessary.
    6. Click Repair.
    If you repair errors run it until no errors found.
    Next, you may be able to repair this with the 10.3.9 Stand Alone Combo Update This is a full install, as opposed to an incremental "delta" update so it should overwrite any files that are damaged or missing. It does not matter if you have applied it before. It has worked well for many.
    Remember to Repair Permissions: This should be done BEFORE and AFTER all software installs and updates.
    1. Navigate to Utilities/DiskUtility and launch Disk Utility.
    2. Choose your volume (usually the second icon)
    3. Choose "First Aid" tab
    4. Click on "Repair Permissions"
    Good luck, let us know.
    -mj
    [email protected]

  • Report to find Locked objects in sap system

    Hi All,
    does anyone know the report to find out the locked objects in an sap system?
              or
    name of the table that stores locked objects ?
    or any other way through which we can find the number of locked objects ?
    Thanks and regards
    Abdul Hadi

    Hi,
    You can unlock locked objects in transaction SE03.
    Click on Display Repaired objects.
    You can see all the objects that are locked.
    To unlock you can select the particular object and click on Unlock.
    Do reward points if the answer to your question is met.
    Regards
    Suhas

  • To find locks on the objects  for the table-- urgent

    hi all..
    how to find which lock object is used for the table T001b...
    i want to lock a record of the table t001b before righting the select query and then  do some mofification and the unlock it again..
    plz can any one tell me how to do this...
    thnx
    Message was edited by:
            neha gupta

    Hi Neha,
    When you create a lock object System automatically creat two function module.
    1. ENQUEUE_<Lockobject name>. to insert the object in a queue.
    2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.
    You have to use these function module in your program.
    check this link for example.
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eea5446011d189700000e8322d00/content.htm
    tables:vbak.
    call function 'ENQUEUE_EZLOCK3'
    exporting
    mode_vbak = 'E'
    mandt = sy-mandt
    vbeln = vbak-vbeln
    X_VBELN = ' '
    _SCOPE = '2'
    _WAIT = ' '
    _COLLECT = ' '
    EXCEPTIONS
    FOREIGN_LOCK = 1
    SYSTEM_FAILURE = 2
    OTHERS = 3
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Thanks,
    Reward If helpful.

Maybe you are looking for

  • Error while running a WS client using jdeveloper 10g

    hi I am new to java. I am getting the following error when i try to run WS client stub that has a main method in it. Can anybody tell me how to resolve this. E:\oracle\DevSuiteHome_1\jdk\bin\javaw.exe -ojvm -classpath E:\oracle\DevSuiteHome_1\jdev\my

  • Collection in ABAP

    Hello Friends, Is there some kind of collection or Array concept in ABAP, Like in JAVA ( Java.util.Collection)?? In loop I want to take values 1 by 1 and store it in some kind of collection ?? Many thanks Marek

  • Cannot find a link to download Photoshop CS5

    I bought the disk version for £400+ but it's for Mac, I no longer have Mac and therefore want to install it on my PC. What I thought would be a simple download is turning into a nightmare. I cannot even find just a trial version. I don't want to down

  • Download function module is obsolute

    How to handle importing parameters of Download Function module in unicode conversion. If i am converting my SAP from Non unicode to unicode environment how should i handle the importing parameters od download Function module in Cl_gui_frontend_servic

  • Different output running Report  on server and running local

    hi all I have the following problem, running my report on development environment i have the desidered results, but running the same report with the same parameters on Web server side, I have no results. Could you help me??? Thanks in advance Antonio