Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sixarm/sixarm-macos-setup
SixArm.com » Mac » Setup notes for new Mac computer and macOS
https://github.com/sixarm/sixarm-macos-setup
iac mac macos script shell
Last synced: 28 days ago
JSON representation
SixArm.com » Mac » Setup notes for new Mac computer and macOS
- Host: GitHub
- URL: https://github.com/sixarm/sixarm-macos-setup
- Owner: SixArm
- Created: 2017-01-01T23:32:52.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-09-15T19:24:49.000Z (over 1 year ago)
- Last Synced: 2024-05-02T00:54:43.508Z (8 months ago)
- Topics: iac, mac, macos, script, shell
- Language: Shell
- Size: 151 KB
- Stars: 60
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# SixArm macOS Setup
How to set up a new macOS computer? These notes show how our teams do it.
Contents:
* [Introduction](#introduction)
* [Setup Assistant](#setup-assistant)
* [Software Update](#software-update)
* [FileVault](#filevault)
* [Connect your iPhone, iPad, etc.](#connect-your-iphone-ipad-etc-)
* [System Preferences and Defaults](#system-preferences-and-defaults)
* [Applications](#applications)
* [Defaults](#defaults)
* [Brew, Cask, MAS](#brew-cask-mas)
* [Sysadmin notes](#sysadmin-notes)
* [Developer notes](#developer-notes)
* [Database notes](#database-notes)
* [Programming notes](#programming-notes)
* [JetBrains notes](#jetbrains-notes)
* [See Also](#see-also)## Introduction
These notes start with the basics, suitable for typical users.
These notes continue with more advanced information, suitable for people who are developers and programmers.
We use Apple macOS current release. We expect most of these notes will work on many versions of macOS.
## Setup Assistant
To setup:
1. Turn on your new computer. This launches the Mac Setup Assistant, which prompts you for your preferred language, time zone, etc.
2. If you already use a different Mac computer, and you want to do a migration of all your files, then you can use the “Migration Assistant”. We prefer to skip this step because we prefer to set up our computer from scratch.
3. Register for a personal Apple Id, if you don't already have one. If you want to use iCloud, do it.
## Software Update
To update your software:
* Choose the Apple menu, then "Software Update...".
* This step downloads all the current updates for your system, such as bug fixes, security patches, and feature improvements.
* This step may take a while because macOS updates tend to be large to download. This step may require rebooting.
## FileVault
To use FileVault to encrypt your entire drive:
* Choose the Apple menu, then "System Preferences....", then "FileVault", then turn on FileVault.
* Write your FileVault password in a secure place; you must have this if you ever want to recover your system.
* This step may take a while, and may require rebooting, because macOS is adding encryption to your entire system.
## Connect your iPhone, iPad, etc.
Do you want to sync an iPhone, iPad, or other device?
* If so, connect these now.
* You may want to launch iTunes, because this shows you what is synchronizing.
* If you use iTunes, then you can have iTunes make a backup of your device now.
## System Preferences and Defaults
We set a bunch of system preferences to customize our Desktop, Dock, Keyboard, Sound, and so on.
* Typical users: you can pick and choose from our complete list of System Preferences
* Advanced users: you can run our script for mac-defaults.
## Applications
We add many applications, and we have big lists of our favorites.
* Typical users: you can pick and choose using our list of applications.
* Advanced users: you run our scripts for brew, cask, mas, and so on. See below for these.
# For Advanced Users
## Defaults
We set many system preferences and application defaults by using the command `defaults write`.
Script:
* defaults-write-our-favorites.sh
## Brew, Cask, MAS
Brew, Cask, and Mac App Store (MAS), are all very useful for installing apps via the command line. These are the best Mac package managers in our opinion.
* brew.md: Brew package manager
* mas.md: Mac App Store (MAS) command line interface## Sysadmin notes
* admin.md: Ensure our user can administer the system
* environment.md: Use /etc/environment
* Spotlight: skip index on a bunch of folders## Developer notes
* git.md: Git version control
* adium.md: Adium instant messenger settings
* osx-cpu-temp.md: Command to show the OSX CPU temperature
* karabiner.md: Karabiner changes the key "caps lock" to "control" and "escape".## Database notes
* mysql.md: MySQL database
* postgres: Postgres database## Programming notes
* xcode.md: Xcode development tools
* gcc.md: ASDF version manager
* gcc.md: Gnu Compiler Collection
* emacs.md: Emacs text editor
* iterm2.md: iTerm2 terminal emulator for Unix shell commands
* ruby.md: Ruby programming
* java.md: Java programming
* chef.md: Chef system manager
* virtualhosts.md: Virtual hosts## JetBrains notes
We use JetBrains programming software, including Toolbox, DataGrip, WebStorm, etc.
Currently there is no way to install these using brew, nor the App Store, so we do this:
* Download JetBrains Toolbox, and install it to /Applcations. (Not to a user account location).
* Set JetBrains Toolbox to install everything to /Applications/JetBrains. (This is so we can more-easily use the software with multiple user accounts on the same machine).## See Also
* [Setting up a Brand New Mac for Development by Tania Rascia](https://www.taniarascia.com/setting-up-a-brand-new-mac-for-development/)