FixerMac is a bash script designed to diagnose and fix common macOS issues, including file system, kernel, permissions, pending updates, and network errors. It also generates a report (report.md
) when it finds errors that it cannot fix automatically.
- macOS.
- Superuser permissions (sudo).
-
Clone the repository or download the script.
-
Run the script with superuser permissions:
chmod +x fixermac.sh
sudo ./fixermac.sh
- The script will perform the following checks:
- File system check (diskutil and fsck).
- Unofficial kernel extensions.
- Non-working kernel extensions
- Available disk space.
- Errors in system logs.
- Pending system updates.
- Network status and connectivity.
- Non-working drivers
- Correct date and time
- Options:
- The script will ask you if you want to fix the errors found. Answer
y
to proceed with the fixes orn
to finish. - After the fixes, you will be given the option to reboot the system. Required to apply the fixes.
If the script finds errors that it cannot automatically correct, a file called report.md
will be generated detailing the errors found and recommended actions.
Warning
The script itself is safe and designed for ethical purposes, it is necessary to request superuser permissions, since without them the script cannot correct errors, however, you can check the code yourself and verify that it does not contain potentially destructive behaviors, and on the contrary, it uses controlled and clear actions with user interaction. Risk potential: 3/10 (Low)
- Use of elevated permissions (necessary)
- Possible indirect damage (unlikely)
- Errors by the user
Note
Common problems If you cannot access HTTPS websites, it may be because the TLS certificate is expired or not recognized. To fix this, follow these steps:
- Check the certificate authority:
- Check if the problem is that the untrusted certificate authority (CA) is Let's Encrypt.
- Download the latest certificate:
- Go to this link and copy the entire contents of the certificate.
- Create a file with the certificate:
- Open Terminal and navigate to your preferred directory.
- Run the command
nano cert.pem
to create a text file calledcert.pem
. - Paste the copied contents of the certificate and save the file by pressing
Ctrl + X
, thenY
to confirm andEnter
.
- Install the certificate in Keychain Access:
- Open Finder and locate the
cert.pem
file. - Double-click the file to open it in Keychain Access.
- Enter your password to authorize the installation.
- Make sure you select the "System" keychain and check the "Trust" option to allow the system to trust this certificate.
- Verify the installation:
- Check that the certificate has been installed correctly and that the browser or system recognizes the certificate as valid.
- (Optional) Delete expired certificates:
- If you prefer, you can remove expired certificates from Keychain Access to keep the system clean.
If you would like to contribute to this project, please create a fork of the repository and submit a pull request with your improvements or fixes.
- Darwin Repository, MacOS Kernel
- Apple Support for Kernel Panic Bugs
- Apple Support for Mac
- Using Apple Diagnostics
This project is licensed under the MIT License. For more details, see the LICENSE
file.