Table of Contents
This page last changed 2024.06.28 12:15 visits: 4 times today, 3 times yesterday, and 5484 total times since 4/25/2019
MacOS Annoyances
Macbook
See also Linux Annoyances for Terminal on Mac
Catalina annoyances
Zoom Screen Sharing doesn't Work
https://hub.securevideo.com/Knowledge/Details/328
Zoom: exclamation point in triangle - enabling screensharing permissions
If you try to share your screen, you may see a triangle with exclamation point in it. This is because
MacOS Catalina added a new category of app permissions called “Screen Recordings”. This prevents a user from being able to share their screen through an app until permission is given specifically for that app. If you have NOT granted this permission, then if you try to share your screen through the Zoom app, there will be error images instead (showing an exclamation mark inside of a rectangle, instead of a preview of what you might be able to share)
To fix this:
- Settings
- Security & Privacy
- Privacy tab
- Screen Recording
- You may need to Unlock in lower-left of dialog (and provide password)
- Allow Zoom, or other apps you want to be allowed to use your screen
- Then lock
- You may need to restart Zoom.
Zoom Camera Doesn't Work
https://hub.securevideo.com/Knowledge/Details/331
MacOS Catalina prevents the camera from being used until permission is given specifically for the app (such as the Zoom app). This is requested the first time you join a Zoom session:
“zoom.us” would like to access the camera“
This is similar to the above (screen sharing).
To fix this:
- Settings
- Security & Privacy
- Privacy tab
- Camera
- You may need to Unlock in lower-left of dialog (and provide password)
- Allow Zoom, or other apps you want to be allowed to use your camera
- Then lock
- You may need to restart Zoom.
Change default application
Suppose you want all .xlsx files to open with LibreOffice instead of Numbers. Do the following.
- Find a file with the extension (.xlsx), right click, and Get Info.
- Under Open with, open the dropdown, find the application you want to open this type of file (LibreOffice), and select it.
- Click the Change All… button.
- Confirm that you want to make the change.
From this point on, all files with the same extension will open with this application.
Reset Printing System
From https://www.lifewire.com/reset-mac-printing-system-to-fix-os-x-printer-problems-2259970
If something goes wrong with printing, for example a bad file descriptors error, you need to reset the printing system. If you reset the printing system, you will
- lose all print queues and pending print jobs
- remove all printer preference files
- removes all printers currently in the Printers & Scanners preference pane.
To Reset Printing System:
- Launch System Preferences
- Select Printers & Scanners
- In the Printers and Scanners preference pane, place your cursor in an empty area of the printer list sidebar (where the printers are listed) and right-click; select Reset Printing System from the popup.
- You're asked to confirm. Press Reset.
- You may need to enter administrator password or finger.
The printing system will be reset and you will need to add back your printer.
Determine IP address of Samsung M2830DW printer
- Turn device on
- Press and hold the Cancel (X) button till green light blinks 5 times, then release
- Output is printed. On second page you'll find the IP address.
MacBook Beeps Often
This is likely an alert that you have received new mail. To check and remove this:
- Open the Mail app
- Select Mail > Preferences
- General tab
- In the drop-down menu next to the New messages sound, select your favorite sound or None.
iTunes Playback skips -- skims -- music
20190905 Have seen videos that playback super fast when there is audio in the file. Also happens when watching YouTube videos.
Problem solved by https://9to5mac.com/2019/07/29/macos-fast-video-playback-bug-fix-coreaudiod-video/
- Open Activity Monitor
- Under CPU tab, find coreaudiod process, and click to select it.
- Click the X-in-stopsign button upper left of the Activity Monitor screen, and Force Quit.
- coreaudiod will restart and videos will play just fine.
20190923, happened again. Did the above, problem solved.
See all running applications with force-quit
This from http://osxdaily.com/2013/05/17/see-all-running-apps-mac-os-x/
- Force Quit Applications window: Command+Option+Escape to summon the basic “Force Quit Applications” window (a simple task manager for OS X). Only shows windowed-applications.
- Activity Monitor: Shows all applications in addition to windowed ones. Command+Spacebar type “Activity”. Select an app, use the X n upper left to bring up dialog allowing quit and force quit choices.
- top: Run Terminal, command=top. Sort by cpu or memory usage:
top -o cpu
[or]top -0 rsize
- ps: Run Terminal command=ps
ps aux
[or]ps aux | grep process
View or Change a Program's Properties
Property files are stored in /Library/Preferences. Run Terminal to work with. From https://www.amsys.co.uk/time-machine-10-8-part-3-advanced-features/
Following is example for Time Machine, limiting its disk use.
Time Machine by default will use all the available disk space on your backup drive. The good news is that you can setup a maximum limit that Time Machine can use. All you need to do is specify in megabytes the maximum space limit. You can do this by multiplying your Gigabyte preference by 1024 bytes. For example if I wanted the maximum backup space to be 100GB, I would multiply 100 by 1024 which equals 102400. I can then enter this terminal command:
sudo defaults write /Library/Preferences/com.apple.TimeMachine MaxSize 102400
This preference can be viewed within the /Library/Preferences/com.apple.TimeMachine.plist file by
sudo defaults read /Library/Preferences/com.apple.TimeMachine
To remove the limit, use the following command:
sudo defaults delete /Library/Preferences/com.apple.TimeMachine MaxSize
Developer Cannot Be Verified
You have downloaded an application and you are sure that it is safe to run on your machine. However when you run it, you are presented with the error PROGRAM cannot be opened because the developer cannot be verified.
The site https://www.lifewire.com/fix-developer-cannot-be-verified-error-5183898 has several suggestions, that I have copied here. These include looking for a newer or alternate version of the application. But I think most useful is:
- Open Finder
- Locate the app you're trying to open
- Control-Click (or right-click) the app
- Select Open
- Click Open
this should let you open it easily in the future
Can't Delete File Because There's Not Enough Space
You want to delete files because the disk is full, but OS X won't let you do this because the disk is full.
https://support.apple.com/en-us/HT201583
- Reboot the Mac, and while it's rebooting press and hold Command-R
- When the MacOS Utilities window appears, select: Disk Utility and click Continue
- In Disk Utility, select the disk that's causing the issue, and use First Aid to look at and repair the disk.
- When this finishes, you can First Aid another disk.
- Then quit the disk utility and restart your Mac.
- Then empty the trash.
How much space is each subdirectory using?
For example, you have lots of subdirectories in your Videos directory, and how can you determine which is using the most space?
- Start Terminal
- Change to the directory you want to look at (for example,
cd Videos
) - Enter the command
du -hcd 1
du
disk useh
human readable formc
show a total for the directoryd 1
depth, 1 means only top level, the subdirectories in the current directory
To use this and get a sort based on size: du -hcd 1 | sort -h
(the -h on the sort reads first column as human readable values, that is it treats 800M < 1G as you would expect)
Active Window is Covered
Suppose you're running Resolve and trying to archive a project, and maybe try to rename it. You can see that the Finder window for storing the project is the active window and it's also covered by the View Projects window, it's impossible to get to it. I figured out what to do on 20200105.
- Hold down Alt/Option key, move mouse to the Corner of the (Resolve main) window; see double arrow ←→ appear, double-click.
- Move the main window out of the way (to another monitor for example)
- For the monitor with the View Projects window is covering the Finder window, switch desktops away and then back.
- The Finder (hidden) window will appear; quickly drag this so it's outside the covering View Projects window.
- You can then work on the no-longer-hidden Finder window and continue.
Enter/Exit Full Screen Mode
To enter full screen mode:
- Press green button in upper left
- Control-⌘-F
To exit full screen mode:
- Control-⌘-F
- Move mouse to upper-left corner and let it sit. You'll see green button, press it.
To work in bigger window without going full screen
- Press and hold Option key while click on the green button in upper left
- Window expands, menu and dock remain visible
- To exit, press and hold Option key and click on green button again
- Or double-click on the app's title bar
exiting full screen mode in DaVinci Resolve isn't working – once I put Resolve in full-screen, I can't get it to exit full screen mode. [20200208]
Screen Shot Mods
Shift-⌘-4 Take screenshot of area on screen you identify
In terminal mode
defaults read com.apple.screencapture | see current screen shot options |
defaults write com.apple.screencapture type jpg | change screenshot file type to jpg. Other options are: bmp pdf jpg tif pict tga png |
defaults write com.apple.screencapture name George | change from “Screen Shot 2020-07-02…” to “George 2020-0702…“ using “George 1” precedes with George 1 instead |
defaults write com.apple.screencapture location Users/smi/Pictures/Screenshots | stores there instead of desktop |
defaults write com.apple.screencapture “include-date” 0 | removes the date and time from the screenshot |
and be sure to do this to load the settings (or reboot):
killall SystemUIServer
Dock Tricks
Add space to Dock
You want to add one (maybe more – repeat if so) space to the dock so you can group the icons on the dock. This from here
- Launch the terminal app. (It's in Applications/Utilities)
- At the terminal prompt, type this command:
defaults write com.apple.dock persistent-apps -array-add '{“tile-type”=“spacer-tile”;}'; killall Dock
- This will cause the Dock to reboot (go away and return) but now there'll be a space in it.
- Click and drag the space to where you want it.
- Repeat to add more spaces.
- To remove a space, right-click or control-click it and select Remove from Dock.
Add Recent Applications to Dock
Add an icon to the Dock, like that for Downloads (shows recent downloaded files), that holds list of recently run applications. (Similar to previous item here.)
- Launch the terminal app. (It's in Applications/Utilities)
- At the terminal prompt, type this command:
defaults write com.apple.dock persistent-others -array-add '{ “tile-data” = { “list-type” = 1; }; “tile-type” = “recents-tile”; }'; killall Dock
Highlight hidden apps in Dock
defaults write com.apple.Dock showhidden -bool yes; killall Dock
See Wifi Passwords
You're connected fine to a Wifi but you need to know the Wifi password to tell someone else or for another machine to connect. Here's how to see Wifi passwords on a Mac using Terminal (Thanks to https://setapp.com/how-to/find-a-saved-wifi-password-on-mac) You need to know the name of the Wifi you're connected to or that you're looking for. (There are other ways to get this info, but I like this one.)
- Open the Terminal utility.
- Go to Finder > Applications > Utilities
- Click on the Terminal icon to open the utility.
- Type in this command:
security find-generic-password -ga WIFIname | grep “password:”
and hit Return. - If prompted, enter your Mac login ID and password.
For example: security find-generic-password -ga Home\ Wifi | grep “password:”
Using the \
in Home\ Wifi
allows spaces in the Wifi name for the command.
Compare two files using command line
You have two files you think are identical and you want to see if that's true.
From https://osxdaily.com/2018/02/06/use-diff-compare-files-command-line-mac/
You can use the diff
command from the Terminal window.
diff file1 file2 | compares these two files |
diff -w file1 file2 | compare files and ignore whitespace (blanks) |
Other options available in addition to -w:
- -a Treat all files as text
- -i Ignore Case
- -B Ignore blank lines
- -y side by side; output in two columns
Also consider the app CompareMerge2 from the Application store.
Handling MacOS Slowness
Found this article: https://www.makeuseof.com/tag/common-mistakes-slow-mac/ saying to address these things:
- Running antivirus in the background
- Using fake security apps
- Not maintaining enough free space
- Temporary files and caches
- Desktop clutter
- Background processes
- Thirsty apps
- Not applying Mac updates
- Not Optimizing Mac
The article has details on all of these. Thanks, MUO.
iCloud not showing up in Finder
When you bring up the Finder, there isn't an “iCloud” available in the sidebar like it usually is.
from: https://discussions.apple.com/thread/6618015
- Open Finder and from the “Finder” menu, open Finder Preferences.
- In the Preferences panel open the Sidebar tab. Click the checkmark for iCloud Drive.
View hidden files and folders in Finder
In Finder, go to the directory, and then: Command-shift-.
Repeat to re-hide stuff.
Reset Networking
I found that NordVPN was not working correctly and their support said to reset the MacOS networking. On my iMac running Catalina, I did the following to effect this:
- In Finder, go to /Library/Preferences/SystemConfiguration
- Locate these three files and rename them (like add XXX to beginning of file name –
preferences.plist
toXXX preferences.plist
)- com.apple.airport.preferences.plist
- NetworkInterfaces.plist
- preferences.plist
- Reboot the computer
- From apple in upper left, choose Reboot
- If this fails, start terminal and enter command
sudo shutdown -r now
Interesting Software and Applications
Convert several files to one PDF file
You have a number of files that you want to combine into a single PDF file.
- Maybe you have scanned 2-sided pages from a document, fronts then rears, and want to make a single PDF
- Maybe you have pictures you want to combine into a PDF
Let's assume all files are JPGs.
Here's what you can do. From How To Geek link
- Open the Preview app. (Search using Spotlight (Command-spacebar) or in Applications directory)
- Preview will prompt you to open file(s). Go to the directory holding the images you want to combine, and select them all using the Command key to select multiple images. Then, click the Open button. make sure that View Thumbnails is enabled else set it and repeat this step
- In the Side bar, move the images into the order you want.
- When you're happy with their order, select File > Print
- Look through the images. If any are not correctly oriented, go to that picture and Show Details
- There you can change Orientation and Turn on/off Auto Rotate.
- Click the PDF dropdown, and choose Save as PDF.
- In the Save As dialog, give the PDF file a name, title, etc and specify where to save it.
- You can add a password to the PDF, click Security Options.
- Then press Save.
If you want to change things (add/delete images, re-arrange them) then open the PDF you created in Preview, and select View > Contact Sheet or View > Thumbnails and add/delete and re-arrange. Then save from the file menu.
Edit PDFs
“Read, edit, convert, merge, and sign PDF files across devices for completely free and without signing up.” This is what PDFgear claims. https://www.pdfgear.com/ with info on LifeHacker
Convert PDF to Word, Excel, JPG, PNG, and more.
Free downloads for Windows, MacOS, iOS, and Android. Rated 4.8 (as of 3/16/2024) in Mac Store.
Reinstall MacOS
Use MacOS Recovery to reinstall the Mac operating system.
All this section comes from https://support.apple.com/en-us/HT204904
Start up from MacOS Recovery
First make sure that your Mac has a connection to the Internet. These instructions assume you have an Intel processor. (If you have Apple Silicon, consult the referenced site for the process.)
- Power on machine and immediately press Command (⌘)-R.
- The four-choice menu comes up, where you can: Restore from Time Machine, Reinstall macOS, run Safari, and run Disk Utility.
- You should choose to Reinstall macOS.
If you're asked to select a user you know the password for, select the user, click Next, then enter their administrator password.
Reinstall MacOS
Select Reinstall MacOS from the utilities window in MacOS Recovery, then click Continue and follow the onscreen instructions.
Follow these guidelines during installation:
- If the installer asks to unlock your disk, enter the password you use to log in to your Mac.
- If the installer doesn't see your disk, or it says that it can't install on your computer or volume, you might need to erase your disk first.
- If the installer offers you the choice between installing on Macintosh HD or Macintosh HD - Data, choose Macintosh HD.
- Allow installation to complete without putting your Mac to sleep or closing its lid. Your Mac might restart and show a progress bar several times, and the screen might be empty for minutes at a time.
After installation is complete, your Mac might restart to a setup assistant. If you're selling, trading in, or giving away your Mac, press Command-Q to quit the assistant without completing setup. Then click Shut Down. When the new owner starts up the Mac, they can use their own information to complete setup.
Other macOS installation options
When you install macOS from Recovery, you get the current version of the most recently installed macOS, with some exceptions:
- On an Intel-based Mac, if you use Shift-Option-Command-R during startup, you're offered the macOS that came with your Mac, or the closest version still available. If you use Option-Command-R during startup, in most cases you're offered the latest macOS that is compatible with your Mac. Otherwise you're offered the macOS that came with your Mac, or the closest version still available.
- If the Mac logic board was just replaced, you might be offered only the latest macOS that is compatible with your Mac. If you just erased your entire startup disk, you might be offered only the macOS that came with your Mac, or the closest version still available.
You can also use these methods to install macOS, if the macOS is compatible with your Mac:
- Use the App Store to download and install the latest macOS.
- Use the App Store or a web browser to download and install an earlier macOS.
- Use a USB flash drive or other secondary volume to create a bootable installer.
Thank you to the Apple support site from where this information was copied: https://support.apple.com/en-us/HT204904
Restore Old iMac or MacBook
You have an old iMac or MacBook and a disk that is blank, either it didn't come with the machine or it has been erased. You want to get the machine running MacOS. Consider trying the previous section, then this one.
The players here: ABCD=Old iMac or MacBook you want to fix. EB9U=Running MacOS machine.
The process is:
- Get info about the old iMac or MacBook (we'll call the machine ABCD).
- Determine what MacOS versions can run on the ABCD machine.
- Get a TimeMachine backup from another iMac or MacBook that is running a version that can run on the old one (we'll call the machine EB9U).
- Boot the old ABCD machine and restore the MacOS from the TimeMachine backup of EB9U.
- Modify the ABCD machine name and other parameters to distinguish it.
We'll go over each of these steps in turn.
Get info about the old iMac or MacBook (ABCD)
- Enter the old device's (ABCD's) serial number
- Do the Captcha
- The information reported will show an ID. The ID is of the form “iMac 10,1”.
- It's a good idea to write down the other information and attach it to the ABCD machine.
Determine what MacOS versions can run on the old ABCD machine.
- You can do a DuckDuckGo (or Google) search to see what MacOS will run on your machine.
- For the purposes of this section, we'll assume that the machine is 10,1 or greater and not 19,2 or greater and that your EB9U machine is running High Sierra 10.13. High Sierra can run on this machine.
Get a TimeMachine backup from another iMac or MacBook that is running a version that can run on the old one.
- Supposing you have a machine (we're calling EB9U) running High Sierra and the ABCD machine can also run High Sierra (and you may have determined this in the previous step.
- Perform a TimeMachine backup of the High Sierra machine (EB9U) onto a removable disk USB disk.
- When the backup completes, disconnect the TimeMachine backup disk.
- Power off the EB9U machine.
Boot the old ABCD machine and restore the MacOS from the TimeMachine backup.
- Connect the TimeMachine backup (from EB9U) to the old machine ABCD.
- Make sure that the EB9U machine is powered off (or at least disconnected from the network).
- Power on the ABCD machine and hold down the Command (⌘) and R buttons (this is the Windows key on a non-Mac keyboard). You may be holding these keys down for several minutes.
- See https://www.igeeksblog.com/how-to-start-mac-in-recovery-mode/ for details on booting to recovery mode.
- Keep holding these keys down after the Apple logo appears, until the Recovery screen appears.
- In the upper-right of the screen (on ABCD) you may see a way to connect to WiFi. Do this.
- Select the “Restore from Time Machine backup” option
- Select the Time Machine backup drive and the backup on that drive to restore from, and OK. You may have other confirmation messages to OK.
- The restore may take some time, maybe an hour. Continue after the restore completes.
Modify the ABCD machine name and other parameters to distinguish it.
- Rename the ABCD machine.
- Change user and login information on ABCD.
- Go through the Settings (Select the Apple and System Preferences) and adjust as necessary on ABCD.
Upgrade old iMac/MacBook
You want to upgrade your iMac or MacBook but Apple won't let you because the machine is too old. The guy called Mr. Macintosh may have the answer. You can find him on YouTube, search for Mr Macintosh
.
Some videos from him:
- How to Install Ventura on Unsupported Macs Easy OCLP Guide
“You can Install macOS Ventura on Unsupported Macs from 2008-2016! I'll show you in a step-by-step easy way how to use OpenCore Legacy Patcher to install macOS Ventura on your old Mac & make it new again!” - 2012 MacBook Pro with Ventura
“Now that I've shown you how to install Ventura on a 2012 MacBook Pro, let me talk about how it works and if a 2012 MacBook Pro with Ventura is any good.”
OCLP = Open Core Legacy Patcher
Terminal goodies
Mac uptime and reboot history | last reboot |
What is my IP address | ifconfig |
HOw much space is my directory using | du -hcd 1 | sort -h |
Filesystem disk usage: used, avail, % | df -h |
iMac Reboots every day
I upgraded a late 2012 iMac 13,1 to have more memory and SSD. After the upgrade, the machine running Mojave 10.14 would reboot almost once a day indicating problem with Network or other issue. The machine would run otherwise, but I wanted to see how to keep it from rebooting. From a variety of sources, I tried all of the following in the order shown, and only after the last thing I tried did the machine stop rebooting daily.
- Uncheck put hard disks to sleep when possible
- Set wake for network access to Off
- Reset SMC
- Reset NVRAM
- Switch local Wifi networks
- Terminal commands: sudo pmset standby 0 <and> sudo pmset autopoweroff 0
- Terminal command: sudo pmset -a standby 0
- System preferences > Energy Saver: Don't put Hard Disks to sleep when possible (uncheck it)
Dealing with Archives (zip files)
Dealing with large zip files: you have a large multi-GB zip, you want to look inside and maybe unpack it.
Application | See inside zip? | Unpack zip? | Comments |
---|---|---|---|
The Unarchiver MacPaw | No | Yes | Useful. version 4.3.3 |
Unarchiver One Trend Micro | Yes | unknown | Slow, but works, be patient |
Unzip - RAR ZIP 7Z Unarchiver qing qing yu | claims to | unknown | Does not work, crashes, version 2.2.9 |
Working with ISO files
Play a DVD .iso image
Leawo Blu-ray Player works.
- Mount the .iso (right-click on .iso file, )
- Run Leawo
- See: Open File and the DVD you've mounted
- Right-click on the DVD you want to play
- Play Disk
Burn an ISO file to Bootable USB
20201216 Success burning Linux Mint 20.1 to USB drive on iMac. 20221022 Success burning Q4OS 4.8 32bit to USB drive on iMac.
- Get your iso, suppose it's in Downloads.
- Insert your USB drive (make sure it's big enough)
- Run Disk Utility, get the device name.
- Right-click on the USB and Get Info
- you'll see the /dev name there; it might be
/dev/disk3s1
ordev/disk4s1
. You might see justdisk3
.
- Run Terminal.
ls /dev/disk*
- Find the disk without the s1. Suppose it's disk3 (so you want
/dev/disk3
) sudo dd if=Downloads/linuxmint-20.1-cinnamon-64bit-beta.iso of=/dev/disk3
- If: “Resource busy” or “Operation not permitted” then eject the drive using the Disk Utility.
- When
dd
completes (returns to terminal prompt),diskutil eject /dev/disk3
. Unplug the disk after you see “ejected”.
comments
- A 2GB iso file took about 40 minutes to complete; the dd command tells records in and out, bytes transferred, and how long it took. Be patient.
- Note that MacOS may be unable to mount the USB drive when the
dd
command completes. This is ok.
20191213 I downloaded a Windows 10 ISO file from
https://www.microsoft.com/en-gb/software-download/windows10ISO
You can find other Windows versions to download, see https://www.microsoft.com/en-gb/software-download/
Burn an ISO file to Bootable CD/DVD
From https://www.online-tech-tips.com/mac-os-x/burn-an-iso-file-using-mac-os-x/
- Open Finder window, navigate to your ISO file, single-click to select it
- File > Burn Disk Image
- Insert disk if you haven't already; click Burn
Alternatively you can right-click on the ISO file and Burn Disk Image
(For OS X 10.10 and earlier) From Umass link
- Applications > Utilities > Disk Utility
- Insert blank CD/DVD
- Drag the *.iso file from a Finder window to the Disk Utility window, drop in left pane in the empty area below the Mac drive names.
- Select the .iso file name in the left pane of Disk Utility, and click Burn (top left).
- The Burn Disk In: window opens and shows your CD/DVD as destination
- Click Burn
- When done the disk will eject
Create an ISO file from a DVD
You have a DVD and you want to put it into an ISO file for later use.
from https://superuser.com/questions/85987/mac-os-x-best-way-to-make-an-iso-from-a-cd-or-dvd
Creating ISO file Using Terminal
For the DVD, I used /dev/disk2. I verified this with diskutil list and unmounted it first.
$ sudo unmount /dev/disk2 $ dd if=/dev/disk2 of=mydisk.iso
Another user suggests
sudo diskutil unmount /dev/disk2 dd if=/dev/disk2 of=~/myCD.iso bs=2048 conv=sync,notrunc
Creating ISO File Using Disk Utility
Disk Utility - The on-screen prompts will guide you, but it will by default create a .dmg, which is an OS X-specific file format. Disk Utility will also create an ISO (.cdr extension) if you select the “CD/DVD Master” option before creating the image. You can rename the extension (.cdr to .iso) after creation if desired.
MacOS Versions
from https://en.wikipedia.org/wiki/MacOS_version_history
10.1 | Puma | |
10.2 | Jaguar | |
10.3 | Panther | |
10.4 | Tiger | |
10.5 | Leopard | 32bit |
10.6 | Snow Leopard | 32/64 bit |
10.7 | Lion | 32/64 bit |
10.8 | Mountain Lion | 64 bit |
10.9 | Mavericks | |
10.10 | Yosemite | |
10.11 | El Capitan | |
10.12 | Sierra | |
10.13 | High Sierra | |
10.14 | Mojave | |
10.15 | Catalina | |
11 | Big Sur | |
12 | Monterey | |
13 | Ventura | |
14 | Sonoma |
Inserting Symbols
You want to insert some symbols into your text that aren't on your keyboard.
(This info extracted from Webnots)
You can also press Control-Command-Spacebar to open the Character Viewer. Scroll down to find the math and other symbols, like command (⌘) and option (⌥) and a host of others.
These symbols can be used with the standard keyboard. Consult Webnots for what you have to do so you can use other codes that require four digit hexadecimal Unicode points (or use ^⌘spacebar).
Symbol | Keystroke | Meaning |
---|---|---|
™ | Option-2 | trademark |
® | Option-r | registered |
© | Option-g | copyright |
£ | Option-3 | pound |
¢ | Option-4 | cents |
∞ | Option-5 | infinity |
§ | Option-6 | section |
° | Option-shift-8 | degree |
≠ | Option-= | not equals |
± | Option-shift-= | plus or minus |
| Option-shift-k | apple symbol |
€ | Option-shift-2 | euro |
¥ | Option-y | yen |
≤ | Option-< | less or equal |
≥ | Option→ | greater or equal |
≈ | Option-x | approximately equal |
√ | Option-v | square root |
÷ | Option-/ | divided by |
‡ | Option-shift-7 | double dagger |
» | Option-shift-\ | |
« | Option-\ | |
… | Option-; | ellipsis |