The "To Keep Up" Wiki

A collection of information we find useful

User Tools

Site Tools


os_x_annoyances

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
os_x_annoyances [2024.06.28 12:15] – [Reset Networking] Steve Isenbergos_x_annoyances [2025.03.07 15:02] (current) – [Eject USB Stick/drive Issues] Steve Isenberg
Line 263: Line 263:
     * From apple in upper left, choose Reboot     * From apple in upper left, choose Reboot
     * If this fails, start terminal and enter command ''sudo shutdown -r now''     * If this fails, start terminal and enter command ''sudo shutdown -r now''
 +
 +====Eject USB Stick/drive Issues====
 +If you try to eject a USB drive and get message "drive wasn't ejected because one or more programs may be using it" here's some things you can try. 
 +
 +Suppose drive is called DD1.\\ (You would run these commands in Terminal.)
 +
 +===What processes are using the drive?===
 +
 +''sudo fuser -u /Volumes/DD1''
 +
 +===Info about the process===
 +Suppose the command above returns process ID 129.\\ 
 +''ps -fp 129''\\ 
 +A process with /System/Library/ in the path is a system process.  If it's in /Applications/ then it's likely a third-party app.
 +
 +===Command that started the process===
 +''ps aux | grep 129''
 +
 +===Parent of the process===
 +''ps -o ppid= -p 129''
 +
 +===If the process is something 'mds'===
 +A process with ''mds'' in it means it's a Spotlight app.  To temporarily exclude the drive from Spotlight,\\ 
 +''sudo mdutil -i off /Volumes/DD1''\\
 +or\\ 
 +System Settings > Spotlight > Spotlight Privacy\\ 
 +Click + and select DD1, and add it to the list.
 +
 +
  
 ===== Interesting Software and Applications ===== ===== Interesting Software and Applications =====
Line 546: Line 575:
 |13|Ventura| |13|Ventura|
 |14|Sonoma| |14|Sonoma|
 +|15|Sequoia|
  
 =====Inserting Symbols===== =====Inserting Symbols=====
os_x_annoyances.1719602138.txt.gz · Last modified: 2024.06.28 12:15 by Steve Isenberg