PC Doctor Godalming

Dedicated to Fixing Computers of all Shapes and Sizes
01483 424378
07876 476990

Category: Apple

Apple Operating Systems and Devices

Enable 3rd Party SSD Trim in MacOS

Enabling TRIM for third-party SSDs is primarily done through the trimforce command in Terminal. Here’s a breakdown of the process and important considerations:

Understanding TRIM

  • TRIM is a command that allows the operating system to tell an SSD which data blocks are no longer in use and can be erased. This helps maintain the SSD’s performance over time.

Enabling TRIM

  • The trimforce command is the native way to enable TRIM in macOS High Sierra and later versions.

Continue Reading

MAC Terminal command to stop indexing external drive

sudo mdutil -i off /Volumes/YourExternalDriveName

Explanation:

  • sudo: This command requires administrator privileges to modify system settings.
  • mdutil: This is the command-line utility for managing the Metadata Server, which handles Spotlight indexing.
  • -i off: This option tells mdutil to turn off indexing.
  • /Volumes/YourExternalDriveName: This is the path to your external drive. You must replace “YourExternalDriveName” with the actual name of your drive as it appears in the Finder or in the /Volumes directory.

Continue Reading

Copy files with rsync on Mac

Use the power of rsync to ensure file creation dates are preserved whilst copying and the ability to restart if interrupted and automatically skip files which have already been copied

MacOS does come with a version of rsync pre-installed. However, this is normally an ancient version and needs the newer version installed to get the latest features, e.g. preserve creation times option or bug fixes. Here’s how you can typically achieve this on MacOS:

    • Install Homebrew (package manager for macOS) :
      • Open Terminal.

Continue Reading

Manually remove a printer on a Mac

Step-by-Step Instructions

  1. Open System Settings:
    • Click the Apple menu and choose System Settings.
  2. Access Printers & Scanners:
    • In the System Settings window, click on Printers & Scanners from the sidebar. You might need to scroll down to find it.
  3. Select the Printer:
    • Find the printer you want to delete in the list on the right side of the window.

Continue Reading

Chrome Remote Desktop Client Set Up

  1. On client PC open Chrome (or New Edge) and log into client Google account
  2. Browse to Chrome Remote Desktop Set-up page URL below:
    https://remotedesktop.google.com
  3. In section titled Set up remote access and click download icon
  4. In Chrome Web Store click Add to Chrome to add extension
  5. In Add “Chrome Remote Desktop” dialog click Add extension
  6. Close “Chrome Remote Desktop has been added”

Continue Reading

Mac Show Hidden Files

In Finder to display of Hidden files by type Cmd + Shift + . (dot)

To turn on globally type the following command in Terminal:

defaults write com.apple.finder AppleShowAllFiles -bool true

To revert back to hidden append false:

defaults write com.apple.finder AppleShowAllFiles -bool false

To make the Finder change effective type:

killall Finder

HP 7520 WiFi scanning not working Mac OS High Sierra

If when installing an HP 7520 WiFi printer with HP Easy Start you get a warning that the scanner does not support “Bonjour” then you may end up with a working printer but no scanner!

In most cases this happens because you have a dual band router advertising 2.4GHz and 5GHz on the same SSIDs. In short the HP 7420 only works with the 2.4GHz network.

One solution is to disable the 5GHz network or rename it and only connect the Mac and printer to  the 2.4GHz SSID network.

Continue Reading

Mac Clean Install

The steps below are for Catalina but it should be the same for other versions of macOS.

  1. Ensure you have a Time Machine backup and have iCloud configured to backup important app settings, e.g. Documents, Device Settings, Mail, Contacts, Keychain, etc. and everything is synchronised to the iCloud server.
  2. Make a list of installed Applications for later use as follows:
    • In Finder open Applications folder and press Command+A to select all apps, then press Command+C
    • In TextEdit,

Continue Reading

MAC Cleanup

Check hard disk Integrity to rule out disk faults

Boot the computer up in single user terminal. On chime press Command + S and run file system checker and repair

/sbin/fsck -fy

Reboot as follows:

/sbin/mount -uw /
reboot

Repair Permissions

Open Disk Utility and choose your main hard drive from the sidebar (in most Macs there will only be one.) Now click on First Aid and Repair Permissions.

Continue Reading