{$lblSkipToContent|ucfirst}

Why do fsck_apfs and tmutil report a different number of snapshots?

zaterdag 5 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I'm running macOS Mojave 10.14.6 on a Mac Pro 5,1 and investigating a Time Machine snapshot issue. When I run tmutil listlocalsnapshots /, it shows 20 of them: Host:~ user$ tmutil listlocalsnapshots / com.apple.TimeMachine.2023-08-03-11…

Lees meer

How can I bulk rename a bunch of files moving a portion of the name to another spot

vrijdag 4 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I have a bunch of files of the form: "1.1 Recursive Sequences KEY.pdf" I'd like to change that to be: "1.1 KEY Recursive Sequences.pdf" I have rename installed to my terminal, but I'm not sure how to make this work. I tried this: rename…

Lees meer

How can I bulk rename a bunch of files moving a portion of the name to another spot

vrijdag 4 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I have a bunch of files of the form: "1.1 Recursive Sequences KEY.pdf" I'd like to change that to be: "1.1 KEY Recursive Sequences.pdf" I have rename installed to my terminal, but I'm not sure how to make this work. I tried this: rename…

Lees meer

Is there a way around the minimum double-click speed being too fast for me?

vrijdag 4 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I have a disability that makes it difficult for me to double-click quickly enough to be detected, even after setting double-click speed as slow as possible. Is it possible to set it even slower or program a mouse button or key combinat…

Lees meer

Mac does not shutdown properly after update to macOS 13.5

vrijdag 4 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

Since I updated 16” 2019 MacBookPro (i9) to macOS 13.5, it does not shut down properly. After a shutdown, the computer simply stays on, for example with the background image. If the shutdown is initiated from the login screen, it simply…

Lees meer

How can I bulk rename a bunch of files moving a portion of the name to another spot

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I have a bunch of files of the form: "1.1 Recursive Sequences KEY.pdf" I'd like to change that to be: "1.1 KEY Recursive Sequences.pdf" I have rename installed to my terminal, but I'm not sure how to make this work. I tried this: rename…

Lees meer

Mac does not shutdown properly after update to macOS 13.5

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

Since I updated 16” 2019 MacBookPro (i9) to macOS 13.5, it does not shut down properly. After a shutdown, the computer simply stays on, for example with the background image. If the shutdown is initiated from the login screen, it simply…

Lees meer

Is there a way around the minimum double-click speed being too fast for me?

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I have a disability that makes it difficult for me to double-click quickly enough to be detected, even after setting double-click speed as slow as possible. Is it possible to set it even slower or program a mouse button or key combinat…

Lees meer

Why did macOS not create a folder in the home directory?

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I am using this script to create a folder under the home folder in Terminal like this: #!/usr/bin/env bash set -u set -e set -x directory="~/backup/tex1234" if [ ! -d "$directory" ]; then mkdir -p "$directory" echo "Directory c…

Lees meer

Mac does not shutdown properly after update to macOS 13.5

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

Since I updated 16” 2019 MacBookPro (i9) to macOS 13.5, it does not shut down properly. After a shutdown, the computer simply stays on, for example with the background image. If the shutdown is initiated from the login screen, it simply…

Lees meer

Why did macOS not create a folder in the home directory?

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I am using this script to create a folder under the home folder in Terminal like this: #!/usr/bin/env bash set -u set -e set -x directory="~/backup/tex1234" if [ ! -d "$directory" ]; then mkdir -p "$directory" echo "Directory c…

Lees meer

How can I bulk rename a bunch of files moving a portion of the name to another spot

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I have a bunch of files of the form: "1.1 Recursive Sequences KEY.pdf" I'd like to change that to be: "1.1 KEY Recursive Sequences.pdf" I have rename installed to my terminal, but I'm not sure how to make this work. I tried this: rename…

Lees meer

Mac does not shutdown properly after update to macOS 13.5

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

Since I updated 16” 2019 MacBookPro (i9) to macOS 13.5, it does not shut down properly. After a shutdown, the computer simply stays on, for example with the background image. If the shutdown is initiated from the login screen, it simply…

Lees meer

Mac does not shutdown properly after update to macOS 13.5

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

Since I updated 16” 2019 MacBookPro (i9) to macOS 13.5, it does not shut down properly. After a shutdown, the computer simply stays on, for example with the background image. If the shutdown is initiated from the login screen, it simply…

Lees meer

Login screen with just a wallpaper and no users

donderdag 3 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

my MacBook Air stopped showing any users on the login screen as well as the buttons in the lower part of the screen. How do I get in?

Lees meer

HOW do I delete cleverfiles on my Mac?

woensdag 2 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

This remains a mystery. In my "About this Mac", I have discovered over 560Gb in my system data. I have gotten a new Mac Mini M2 and need to migrate my files. Now, I've discovered thousands of .cleverfiles. Disk Drill support tells me to…

Lees meer

Mac how to delete broken symlink in Mac trash

woensdag 2 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

In the Trash folder on my Mac I have the following directory that contains a symlink I can't delete called X11R6 (/Users/gcn/.Trash/temp/Previously Relocated Items/Security/usr/). I've tried a variety of things (rm, unlink, etc). This i…

Lees meer

Mac how to delete broken symlink in Mac trash

woensdag 2 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

In the Trash folder on my Mac I have the following directory that contains a symlink I can't delete called X11R6 (/Users/gcn/.Trash/temp/Previously Relocated Items/Security/usr/). I've tried a variety of things (rm, unlink, etc). This i…

Lees meer

why the macOS did not create folder in the home dir

woensdag 2 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I am using this script to create a folder under the home folder in terminal like this: #!/usr/bin/env bash set -u set -e set -x directory="~/backup/tex1234" if [ ! -d "$directory" ]; then mkdir -p "$directory" echo "Directory c…

Lees meer

Can't install macOS Ventura from recovery: com.apple.BuildInfo.preflight.error error 10

dinsdag 1 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

I am trying to install macOS Ventura 13.5 using internet recovery, meaning a version of the OS is downloaded and then installed. I partitioned the disk using Disk Utility and formatted using a Mac OS Extended (Journaled) file system. I …

Lees meer

Mimic Terminal.app behavior in iTerm2 for option-arrow keys (left and right)

dinsdag 1 augustus 2023 inAsk Different (Tips-Tricks-Tutorials)

This is probably related to this question: How do I do Home and End in iterm2? but fiddling with the iTerm2 key mappings (both general and per-profile) to un-map option plus the left and right arrow keys still doesn't work right for me …

Lees meer

Internet - WiFi • e-mail • Software • Hardware • Reparatie • (Geheugen - SSD) Upgrades • Advies • Netwerken • Routers • Beheer op afstand (Teamviewer) • Onderhoud (Online Backup's) • Data Recovery • OSX Server • Synology NAS • Bootcamp - Parallels - VMWare

• 20 jaar ervaring •