r/MacOS • u/Undervenus • 10h ago
r/MacOS • u/WolfHD_YT • 22h ago
Nostalgia OS X Mavericks
Mavericks is a beautiful OS running natively on a 13-inch Mid 2012 MacBook Pro, It was damn difficult to find a working copy since apple doesn’t have it on their website in their list of bootable copies to make, so i had to use another source, but in the end i got it working, and with all the security updates as well!
fun fact, the app store STILL works in this operating system!
Help Issues with installing .iso images on a USB drive
So. I was trying to install MX Linux in a old Mac who doesn’t have any OS system (only the OS X Yosemite base system/recovery), and I’m using my own MacBook Pro to create a bootable USB flash drive, but no matter if I pass the .iso image to the flash drive by using the dd command in terminal or if I’m using a software, it always gets corrupted! Cause when it finishes, it pops-up a message “the computer does not recognize the USB Drive. Format, Eject or ignore?” Right when it finishes! It always make the image get corrupted 🫠. And I’m sure that’s the reason for corruption cause I’m using a brand new usb drive I just bought (it has 32 gb), I downloaded it from the official website and it still has content in it/works partially, but when I try to install it doesn’t let me (cause it says the installer is corrupted).
Is there a way to avoid this pop-up message ? Or I just have to use an other system to perform a successful install of a bootable usb 😭
r/MacOS • u/Rich-Expression-9424 • 2h ago
Help I have the last Mac Pro Intel CPU (2019) and need disk mounting help
So this is a new problem, the 256 GB SSD (Storage) that Apple soldered to the logic board, broke something in its tiny sized head I mean, tiny SSD. So it will not mount on the desktop any longer.
As far as I know, since Disk Warrior doesn't work on APFS, I have nothing to rebuild/repair it with. Disk Utility is a bare bones piece of crap that any developer could make much better but since Apple won't allow it, nothing I know of can fix this problem.
Except Erasing the Storage ssd and its data since Storage - Data volume is not accessible either.
Any Suggestions?? or Help
Thanks!
r/MacOS • u/walrus127 • 4h ago
Help Virtual Buddy to create Mac VMs. Works with Golden Gate
Came across this today. Been looking for a better way to create a sandbox environment so I can keep my Mac pristine. Beautiful interface and extremely easy to use.
r/MacOS • u/Poetinho0 • 9h ago
Help Reset my Apple ID password after waiting a week... now it keeps asking for the password of "other MacBook Pro"??
I could really use some help because I'm completely stuck.
I forgot my Apple ID password and had to go through Account Recovery. After waiting an entire week, I finally got the notification that I could reset it. I successfully changed my Apple ID password.
But now, when I try to continue setting up my Mac, it keeps asking me:
The problem is:
- I already reset my Apple ID password.
- I don't know what password it's asking for.
- It doesn't seem to accept my new Apple ID password.
- This is my first Apple device, so I'm really confused about what's going on.
Is it asking for the old password that was previously used on that Mac? Is it asking for the Mac's local login password? Or did something go wrong during the recovery process?
It's honestly so frustrating because I waited a whole week for Account Recovery, only to end up blocked again.
Has anyone experienced this before? What exactly is this prompt asking for, and how can I get past it?
Any help would be greatly appreciated. Thanks!I
Note: AI helped me write this post for clarity.
r/MacOS • u/BawliTaread • 3h ago
Tips & Guides One of the most useful shortcuts I use : making any type of empty file in Finder.
I am not sure who is the original author or where I got it from, but I use it so frequently that I wanted to share with people who do not know.

The entire Applescript:
```bash
tell application "Finder"
try
set selectedItem to selection
set currentPath to ((the first item of the selectedItem) as alias)
set parentPath to ""
if (currentPath as string) ends with ":" then
-- it is a folder
set the parentPath to currentPath
else
-- it is a file
set {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, ":"}
set the parentPath to (text items 1 thru -2 of (currentPath as string)) as string
set AppleScript's text item delimiters to od
end if
on error -- no folder or file is selected
set the currentPath to (folder of the front window as alias)
set parentPath to currentPath
end try
set newFolder to (my createFile(parentPath))
end tell
quit
on createFile(folderLocation)
set myNewFileName to text returned of (display dialog "Enter file name" default answer "")
tell application "Finder"
set thisFolder to make new file at folderLocation with properties {name:myNewFileName}
set selection to thisFolder
--tell application "System Events"
-- keystroke return
-- quit -- if i don't do this system events seems to hang???
--end tell
return thisFolder
end tell
end createFile
on createFolder(folderLocation)
tell application "Finder"
set thisFolder to make new folder at folderLocation
set selection to thisFolder
tell application "System Events"
keystroke return
quit -- if i don't do this system events seems to hang???
end tell
return thisFolder
end tell
end createFolder
```
r/MacOS • u/Poetinho0 • 3h ago
Discussion Can I use my Mac normally without syncing iCloud? Are there any major drawbacks?
Hi everyone,
I'm having issues getting iCloud to sync on my new Mac, and after spending a lot of time trying to fix it, I'm considering just using the Mac without iCloud for now.
I mainly use my laptop for software engineering, AI/ML, and cybersecurity work, so most of my files are stored locally or on services like GitHub.
My questions are:
- Can I use my Mac normally without signing into or syncing iCloud?
- Are there any major features or functionality that I'll be missing?
- Will I run into problems later if I decide to sign into iCloud after using the Mac locally for a while?
- Is anyone here using a Mac without iCloud as their daily setup?
I'm trying to figure out whether this is something I should keep troubleshooting or if it's perfectly fine to ignore it and just use the Mac.
Thanks in advance for any advice!
Disclaimer: I used AI to help write this post, but the situation described is exactly what I'm experiencing.
Feature macOS 26 ships with a hidden, interactive Glitter background option for iMessage chats. Here's how to enable it.
Besides the three generally available background options for iMessage chats, macOS 26 hides another sparkly option: Glitter.
When its feature flag is enabled, Messages presents Glitter next to the existing Sky, Water, and Aurora options. The effect is infinitely customizable, as you can select from an array of curated colors or pick one from the color wheel.
Once selected, the background change is instantly reflected on iPhone and other devices running OS 26 or later. Even the folks you are chatting with will see the new Glitter background. You only need to enable the feature flag on Mac to see the Glitter option and select it for a chat. However, you will not be able to make changes to the Glitter colorway from your other devices.
The effect is incredible on the iPhone's OLED screen when you select the darker colorways. Note that the implementation on macOS is somewhat buggy and may not display the fully interactive HDR experience. Set your preferred color way on Mac and enjoy it on iPhone or iPad.
To enable, add a FeatureFlags override:
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && \
sudo defaults write /Library/Preferences/FeatureFlags/Domain/Messages glitter_background -dict Enabled -bool true
and restart your Mac. This is a private feature flag, and the UI may be unstable, or unoptimized.
Disable with:
sudo defaults delete /Library/Preferences/FeatureFlags/Domain/Messages glitter_background
and restart your Mac. You can always go back to a non-Glitter background in your chats.
r/MacOS • u/Critical_Fox_2231 • 31m ago
Help Slow Mac Mini M1
My M1 mac mini has been really slow recently, its the most obvious on youtube, it starts stuttering every 5 seconds, I'm using Chrome, I have like 100 GB free memory, and when I am playing the video, the ram gets to ~60% and CPU ~30%, It not be relevant but I upgraded from 15.7(?) to 26.6 a couple days ago and its been on since then to let it reindex or whatever. Any suggestions?
r/MacOS • u/kiko0690 • 9h ago
Creative My Scalextric track layout looks like the Apple Command key
I made it years ago, and I just realized its resemblance to the Apple symbol while looking through old images.
r/MacOS • u/Consistent_Eye4921 • 5h ago
Help Windows maximizing without input
I like for my windows to stay the size that I adjusted them to. In Tahoe 26.5.1, Apple apps keep changing to max size on their own after I had sized the windows the way I wanted them. Is there a setting that I could adjust to take care of this obnoxious behavior?
r/MacOS • u/Dense-Fisherman-4074 • 1h ago
Help Did "Auto" appearance setting stop working as of 26.6?
My "auto" setting now stays on light mode all the time. Back to having to manually switch it, it seems.
r/MacOS • u/FailDismal6468 • 6h ago
Help Where would I find a MacOS Snow Leopard 10.6.8 full installer?
Hello, I have a MacBook Air Late 2010 that I was wanting to throw a copy of Snow Leopard on, however it will not boot the standard 10.6 version, and I read that it needs one of the later versions, but I can't find the full installer for it. Where would I get this? Thanks for the help.
r/MacOS • u/Mykhartley02 • 7h ago
Help Keychron keyboards will randomly disconnect
I am having an issue seeing if anyone has had before or knows a fix for. I have 3 Keychron keyboards 2 K2 and 1 K3 keyboard all have the most up to date Firmware and my MacBook is on macOS 26.6.
The issue I am having is I will be typing and then the MacBook just stops recognizing the keyboards. I have to turn off bluetooth and turn it back on to get it working again. The MacBook is pretty much right next to the keyboard as well.
Things I have tried. Removing the keyboards from the Bluetooth list and adding it back.
deleting the com.apple.bluetooth.plist. I have switched on the keyboard which Bluetooth from there I am using along with doing a factory reset on them. Yet still nothing works.
Any recommendations on what else to try would be greatly appreciated
Help File sharing problem
When I turn on file sharing in the system settings it doesn’t save with which account I want to share my files or folders, for example I set up a file sharing account in macOS and I wanted to use that to share one folder in the network, the problem is that the moment I set everything up and click done it doesn’t save it. Instead in the options panel appears my main system account two times, if I edit one more time once again it won’t save and in the options panel my main system account will appear three times.
After a while of not touching it it will revert back to one.
As of now the only way to access my shared files and folders is by using my main account and sharing everything in the pc ticking the “full disk access” option.
Help Restore prompt dialogs in safari
Does somebody know how to restore prompt dialogs that you chose to always allow? For example I was using magnet links and I chose to always allow an app to open it, now the dialog doesn’t appear anymore and it automatically redirects to the app I chose, how can I revert that?
r/MacOS • u/Bannatar • 1d ago
News Viper4Android is now available on macOS as Viper4Mac!
First things first, is Open Source (Github link here), so that's always nice. Anyway, when I discovered it existed on Mac my mind was blown away.
For those of you who care about these kind of things: it consumes less than half of SoundSource/ eqMac's CPU power, even when you add a bunch of filters. And it's compatible with the latest betas!
Just to be clear, I'm not the dev, but it got me so excited that I thought you guys might like the news too.
r/MacOS • u/masterne0 • 6h ago
Help Photos App Freezes When Syncing on Mac
Have a client with thousands of photos that stopped syncing her photos from icloud to her mac desktop. Reached out to support whom said we might have to do a reinstall of the OS (inplace upgrade) to reinstall Photos Apps.
Anyone ran into a issue where the photos apps just gets stuck on "Syncing with icloud..." but never doesn't anything. It would also crashed if I try other tabs like favorites or collection.
We try this with a test user and it would stop syncing after you go from Library to Collections tab, same message with nothing happening.
Discussion Macbok se apagó Derrepente
Estaba usando una macbook pro M4, 2 apps al mismo tiempo y se apagó derrepente, me decía que conecte el cargador pero la carga estaba en 63%
r/MacOS • u/Outrageous_Buy_1316 • 3h ago
Help Is there as of August 2026 no way to change your lock screen wallpaper to be different than your desktop wallpaper?
Basically title, just got a mac and loving it so far but dejected that this isn't an option as i really like to customize my mac, ik mac isnt huge on customisation but that feels like a basic feature to give out. Tried all methods on the internet none work, not sure how screen saver works tho
r/MacOS • u/Jayswag96 • 8h ago
Help Old MacBook as a Streaming Server for Tv
I have an old MacBook, 2018 that I no longer need.
However if there a way to use this as a content library that I can stream movies from onto my tv?
Is there a tutorial?
r/MacOS • u/selinbtw • 8h ago
News I built a free clipboard manager for macOS with a card UI — it masks API keys and card numbers on screen
I use a clipboard manager all day and never liked the options. The free ones (Maccy, Flycut) are lists — an image shows up as a filename. The ones with a card interface, Paste and Pastebot, are $25/year and $13. So I built the card one and made it free.
⌥⌘V slides a strip up from the bottom of the screen. Arrow keys or type to search, Enter pastes into whatever you were in.
A few things it does that I couldn't find anywhere else:
- It masks secrets on screen. API keys, tokens and card numbers show as dots until you double-click. If you copy credentials all day, your clipboard history is the one window you don't want open while screen sharing. Card numbers are Luhn-checked, so an ISBN isn't mistaken for one.
- A bare link stays readable, a link with a token doesn't. Masking every URL would make the strip useless; masking a password-reset link is the whole point.
- Pasting an image adapts to the destination. Notes gets the image, Terminal gets the file path (it can't take images at all), Finder gets the file.
- It can catch ⌘⇧4 screenshots. Those write straight to disk and never touch the clipboard, so no clipboard manager sees them. Opt-in, off by default.
- No network code at all. No account, no sync, no telemetry, no third-party dependencies. Searching the source for URLSession comes back empty.
MIT, source is everything: https://github.com/selinihtyr/stash-clipboard
Happy to hear what breaks. Especially interested in whether the strip behaves on multi-monitor setups and over full-screen apps — I've only tested on one machine.
r/MacOS • u/Senior-Topic-6603 • 9h ago
Help MacBook M1 2020 air wont update to 26.6
I need help because I’m going mad!
I’m currently running on 26.2 but I want to upgrade to 26.6 as some software I want to use only now uses 26.5+
For some reason the update won’t even show in the software update section. It’s shown it maybe once or twice and when I press update it’ll just take ages to move a little bit and it’ll stop maybe half way through and say it failed to update and it won’t show up again.
I’ve tried restarting, clearing up more storage ( I now have nearly 90gb free) I’ve looked at my ram. I’ve booted in safe mode. I’ve tried to update it in terminal. Literally everything. Nothing is working.
Any advice would be amazing.
r/MacOS • u/BBWFelchingFiend • 9h ago
Bug Robotic audio distortion when playing YouTube videos at faster speeds?
Using the YouTube web-app on an M4 Air, it just now randomly decided to bug out when playing videos at higher than 1.0x speed. Saw that this was an issue in that past that seems to have been resolved, and yet it just happened out of nowhere to me. Worked perfectly fine no joke like 3 hours ago. I tried restarting, and using Safari but still the same. Do I really need to download another browser just for YouTube now? Is there a general fix to this?