MSYS2 のセットアップ
Download
Windows環境変数の設定
コントロールパネル - システム - システムの詳細設定
環境変数
xxxのユーザー環境変数
変数名:MSYS2_PATH_TYPE
変数値:inherit
を追加
MSYS2 のセットアップ
pacman -Syu
pacman -S vim base-devel msys2-devel mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain mingw-w64-x86_64-boost
pacman -S openssh sshpass git zip unzip rsync tmux wget
pacman -S mingw-w64-x86_64-jq
tree
vim ~/.bash_profile
alias ls='ls --color=auto --show-control-chars --time-style=long-iso --human-readable --classify'
alias ll='ls -l' # long list
alias la='ls -A' # all but . and ..
alias grep='grep --color' # show differences in colour
alias less='less --raw-control-chars' # raw control characters
alias whence='type -a' # where, of a sort
source ~/.bash_profile
Windowsのホームディレクトリとを利用する。
vim /etc/fstab
以下を追加
C:/Users /home
Python のインストール
pacman -S python python-pip python-setuptools
bashのprompt文字列をgit statusの状態で色変えする
参考
-
MSYS2+VagrantによるWindowsでのUNIX環境
https://tamosblog.wordpress.com/2014/12/25/msys2_vagrant_1/#3 -
MSYS2 +α - 構築手順・備忘録
https://qiita.com/yuukiyouki/items/a84c14240429e453428b -
MSYS2 で PATH が引き継がれない
http://chirimenmonster.github.io/2016/05/09/msys2-path.html -
お前らのSSH Keysの作り方は間違っている
https://qiita.com/suthio/items/2760e4cff0e185fe2db9 -
MSYS2の使い方の備忘録 (2016年度3月版)
https://gist.github.com/ubnt-intrepid/05dab5f0f88bd3baf1a1 -
Windows Terminalでもmsys2を使おう
https://qiita.com/yumetodo/items/4aa03d1eb3d887bca1a8