There are times that we encounter stubborn files that can’t be deleted in Trash for some reason.
If you already tried restarting your mac, changing the file permission via Get Info, and deleting the file by force through terminal, then you may also try disabling the SIP (System Integrity Protection) temporarily.
A few years back I posted a guide on how to create a macOS OSX USB installer. The steps are basically the same even after a few iterations, so for today, I will just create a walkthrough on how to download full installers.
With the recent macOS Catalina update, we can now finally use the picture-in-picture mode while watching videos in Safari in just a few clicks. Meaning you can keep doing what you’re doing while still watching videos from websites like YouTube, Facebook, and the likes.
To enable the picture-in-picture mode, you can either right-click or hold the ctrl (control) button and left click the volume icon and then select the Enter Picture in Picture option.
Keychain is really a convenient tool for managing passwords even for terminal users, specifically for those people who uses passphrase in their private key. For newer versions of OSX, Catalina in my case, there’s an additional step to add and being able to use it.
I will be assuming that you already have your private key with you and just want to make things more convenient.
ssh-add -K ~/.ssh/[name of your private key]
Enter your passphrase, then hit enter.
Modify your SSH configuration file ~/.ssh/config
and add the following lines:
Host *
UseKeychain yes
AddKeysToAgent yes
IdentityFile ~/.ssh/[name of your private key]
Note: If you are using multiple private keys, just add a new IdentityFile
entry in your SSH config.
Storage capacity of iOS devices keeps on increasing, and if you own multiple iOS devices and an MBP with limited storage like me, then you’ll definitely have issues with your backups. The best way to solve this is to transfer the location. For this tutorial, I will change the backup location to an external drive.
Before we proceed, make sure that your terminal have administrative privileges. If you don’t know how to do it, you can see this post.
rm -rf ~/Library/Application\ Support/MobileSync/Backup
mkdir -p /Volumes/Seagate\ Bac/BACKUP/MobileSync/Backup
ln -s /Volumes/Seagate\ Bac/BACKUP/MobileSync/Backup ~/Library/Application\ Support/MobileSync/Backup
If you open the local backup directory…
By default, applications are being restricted by the operating system to limit the actions that might cause an issue to your machine. This usually causes the Operation not permitted error.
If you really know what you’re doing and you want to make modifications to your system files, like creating a symlink to another location, then you might have to give administrative priviliges to your apps (ie Terminal).
In my screenshot above, I’m trying to transfer the location of my iOS back-up to an external drive, but my 3rd party terminal app is being restricted which prevents me from doing it.
This presentation was used in our company’s internal training in Problem Solving and Critical Thinking. Some parts were customized to fit our needs.
Most common cause of this error is due to the invalid time in your mac. All you have to do is correct it then retry the installation.