30
33

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Mac OSX homebrewで導入したもの備忘録 :日常編

Last updated at Posted at 2019-02-03

備忘録 Macにインストールしているもの

色々開発用にMacに入れたもので手順が煩雑になりがちなものがあったので備忘録として残します。

homebrewでよく使うコマンド

terminal
# brew
$ brew list
$ brew search
$ brew doctor
$ brew install
$ brew uninstall
$ brew upgrade

# brew cask
$ brew search --cask [string]
$ brew install --cask [package name]
$ brew uninstall --cask [package name]
$ brew upgrade --cask [package name]

# 全部upgradeする
$ brew upgrade `brew list`

準備編

Xcode

Apple製の統合開発環境

terminal
# Homebrewをインストールするのに必要
$ xcode-select --install

Homebrew

MacOS用パッケージマネージャ

  • アプリのインストールをターミナルからできるようにする
  • UI系のインストールはbrew-cask
  • フォントのインストールも可

※ Intel版のインストール方法です。。。

terminal
# Homebrewをインストールする
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

# GUI系のアプリをインストールできるようにする
$ brew install caskroom/cask/brew-cask

# フォントのインストールをできるようにする
$ brew tap caskroom/fonts

# java8をインストールするために必要
$ brew tap caskroom/versions

Finderの設定

.sshとか.bash_profileとか表示したいので設定を変更する

terminal
# 隠しファイルを表示する
$ defaults write com.apple.finder AppleShowAllFiles TRUE
# Finderを一度再起動する
$ killall Finder

日常的に使うもの

Googl chrome

ブラウザ(メイン装備)

terminal
$ brew install --cask google-chrome

Chromium

ブラウザ(ネタ装備)

terminal
$ brew install --cask chromium

Firefox

ブラウザ(検証用)

terminal
$ brew install --cask firefox 

Gimp

画像編集用

terminal
$ brew install --cask gimp

VLC

メディアサーバー接続用

terminal
$ brew install --cask vlc

Thunderbird

メールクライアント

terminal
$ brew install --cask thunderbird

slack

terminal
$ brew install --cask slack

karabiner-elements

英字配列を使っているので・・・
詳しい設定内容は下記を参考に。
https://lcdd.me/karabiner-elements/

terminal
$ brew install --cask karabiner-elements

qlmarkdown

クイックルックでマークダウンの中身が確認できるやつ
※ finderの仕様が変わって現在は使えないようです。

terminal
$ brew install --cask qlmarkdown

font-source-han-code-jp

雑魚ーダーは多少なりともコードを読みやすくしたい

terminal
$ brew install --cask font-source-han-code-jp 
30
33
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
30
33

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?