Initially after upgrading everything was working great until I tried to SSH into an older legacy linux server and was greeted with this lovely message:
sign_and_send_pubkey: no mutual signature supported user@example.com: Permission denied (publickey).
The reason for this issue is that MacOS 13 ships with OpenSSH_9.0p1 which has disabled RSA signatures on SHA-1 hash algorithms. If upgrading OpenSSH on the server and/or regenerating your SSH key isn’t an option you can workaround this issue by adding the following to your
~/.ssh/config file
Host * HostkeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa
If you don’t want to add this across the board you can also pass an SSH option when connecting via SSH as follows:
ssh -o 'PubkeyAcceptedKeyTypes +ssh-rsa' -i ~/.ssh/yourkey user@example.com
SSH Problems After MacOS 13 Ventura Upgrade →
Como compilar WebKit en macOS 12 Monterrey
Enable TouchID for
sudo
Open:
/etc/pam.d/sudo
Add:
auth sufficient pam_tid.so
A lot of people is speculating about the future Apple Mac computers are going to have a touchscreen because the design on macOS Big Sur , but after watching the Design for the iPadOS pointer session is pretty clear that they’re going to change the cursor on a future macOS release.