Tentang macOS
macOS, atau yang sebelumnya disebut OSX, adalah sistem operasi berbasis antarmuka grafis yang dikembangkan dan didistribusikan oleh Apple khusus untuk perangkat macintosh; seperti MacBook Pro, MacBook Air, iMac, iMac Pro, dan Mac Pro. Sistem ini pertama kali dikeluarkan pada tahun 2001.
Versi terbaru untuk macOS sendiri sudah mencapai versi 12.3 bernama Monterey dengan Darwin versi 21.2.0 yang dirilis pada 13 Desember 2021.
Software macOS
Umumnya untuk menginstall software pada macOS hanya bisa melalui AppStore, tetapi pengguna juga bisa memasang aplikasi yang telah teridentifikasi pengembangnya.
Langkah Konfigurasi Awal macOS
Berikut dijabarkan beberapa konfigurasi awal setelah melakukan clean install macOS.
System Preferences
Personalisasi dasar tentang pengaturan macOS.
- Keyboard; Pada tab Shortcut, aktifkan
Use keyboard nav to move focus between controls
- Accessibility; Pada submenu Pointer Control, kecilkan
Spring-loading delay
. Masuk ke Trackpad Options..., aktifkan Enable dragging kewithout drag lock
. - Trackpad; Pada tab Point & Click; aktifkan
Tap to click
danSilent Clicking
, ubahLook up & data detectors
ke Tap with three finger. Pada tab More Gestures; aktifkanApp Expose
. - Dock & Menubar; Ubah Size ke 7, nonaktifkan Show Recent App in Dock. Disable Spotlight. Ubah Jam ke format HH:mm:ss.
- Desktop & Screen Saver; Ubah wallpaper.
Terminal
Personalisasi tampilan dan Pengaturan Terminal agar dapat menginstall berbagai macam software lewat aplikasi HomeBrew.
- Install Command Line Tools for Xcode; Download dan install package ini sebelum menginstall Brew
- Install IORegistryExplorer; Download dan pindahkan package ini dari Additional Tools for Xcode ke folder Application
- Install HomeBrew; copy dan jalankan perintah ini pada terminal untuk mulai menginstall Brew.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install OhMyZsh; copy dan jalankan perintah ini pada terminal
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Install Plugins OhMyZsh; install plugin penting;
- ZSH AutoSuggestions;
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
- ZSH Fast Syntax Highlighter;
git clone https://github.com/zdharma/fast-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
Setelah diunduh; pastikan menambahkannya di daftar plugin .zshrc
plugins=( ... zsh-autosuggestions fast-syntax-highlighting )
Refresh OhMyZsh dengan menjalankan perintah berikut;
source ~/.zshrc
- ZSH AutoSuggestions;
- Install Software Melalui HomeBrew;
Cask
- Cask
- Blackhole 2ch;
brew cask install blackhole-2ch
- Google Chrome;
brew cask install google-chrome
- IINA;
brew cask install iina
- Rectangle;
brew cask install rectangle
- Hackintool;
brew cask install hackintool
- MaciASL;
brew cask install maciasl
- Spotify;
brew cask install spotify
- Visual Studio Code;
brew cask install visual-studio-code
- Blackhole 2ch;
- CLI
- GnuPG + Pinentry Mac;
brew install gnupg pinentry-mac
- N;
brew install n
- GO;
brew install go
- Apache MySQL PHP PhpMyAdmin;
brew install httpd mysql php phpmyadmin
- Python + Python TK;
brew install python@3.9 python-tk@3.9
- GnuPG + Pinentry Mac;
- Cask
- Konfigurasi Git; menggunakan GPG untuk menandai commit;
gpg --full-generate-key
gpg --list-secret-keys --keyid-format LONG
gpg --armor --export XXXXXXXXXXXXXXXX | pbcopy
git config --global user.signingkey XXXXXXXXXXXXXXXX
echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf
- Konfigurasi N; node version manager;
mkdir $HOME/.n
echo "export N_PREFIX='$HOME/.n'" >> .zshrc
echo "export N_PRESERVE_NPM=1" >> .zshrc
echo "export PATH=$HOME/.n/bin:$PATH" >> .zshrc
untuk menginstall dan atau menggunakan node version 14.n 14
untuk menginstall dan atau menggunakan node version LTS.n lts
- Konfigurasi Node LTS;
corepack enable
corepack prepare pnpm@latest --activate
corepack prepare yarn@stable --activate
- Konfigurasi MongoDB;
brew tap mongodb/brew
brew install mongodb-community@5.0
brew services start mongodb-community@5.0
brew install --cask mongodb-compass
- Konfigurasi MySQL;
brew install mysql
mysql_secure_installation
mysql -u root -p
- Konfigurasi Apache;
brew install httpd
- Install Aplikasi Tambahan;
- Tinker Tool
- Alfred 4
Demikian artikel tentang hal-hal dasar yang harus dilakukan setelah instalasi macOS, semoga bermanfaat.
Download Links
Download | Type | Size |
---|---|---|
Command Line Tools for Xcode 13.2 | DMG | 567 MB |
Additional Tools for Xcode 13.2 | DMG | 30.75 MB |