Skip to content

Latest commit

 

History

History
113 lines (95 loc) · 3.23 KB

Makefile.日本語.md

File metadata and controls

113 lines (95 loc) · 3.23 KB

Windows

  • 初期 で入ってるアプリを消す
  • 壁紙は "minimalist wallpaper" などで検索
  • 連絡用/娯楽アプリなどは都度入れる
  • 設定系
    • 'windows の機能の有効化または無効化' > 必要なものを
      • VM
      • WSL
      • telnet client
    • 'sign in options' > アプリの再起動
    • 電源オプション
    • shift 5 回のアレ無効化
    • init.reg を入れる
    • 開発者向けみたいなやつ (拡張子表示など)
    • エクスプローラーのオプション > プライバシー,非表示設定に
    • CTRL + SHIFT での IME 切り替え無効化
  • 絶対入れる
    • PowerToys
      • 自動起動
    • AutoHotKeys
    • init.ahk を設定する ( お試し中 )
  • 入れる
    • WSL2
    • dotfiles 内のセットアップスクリプト
    • WireShark
    • Windows Terminal
    • ScreenToGif
    • Nmap
    • Gimp
    • Screen Ruler
    • Color Picker
    • Dokcer Desktop
      • 自動起動
    • https://github.com/QL-Win/QuickLook
    • Oracle VM VirtualBox + Vagrant
    • OBS
    • Voicemeeter
    • audacity
  • CorvusSKK
    • 試運転中...
  • 同一 LAN から WSL2 にアクセスできるようにする
    • microsoft/WSL#4150 (comment)
    • scripts/WSL2-bridge.ps1
    • これは一般的なフォワーディングの設定ができれば問題ないはずなんだよな... (とはいえ WSL2 に関して言えば事情が若干特殊っぽい, hostのwinからはループバックでアクセスできる,謎の技術)

Mac

  1. OSのバージョンを上げる
  2. フォント入れる tty 全部選択して 開けばいい
  1. git と GitHub への ssh接続 のセットアップ

xcodeも必要であれば

SSHクライアントセットアップ

ssh-keygen -t rsa -b 4096 -C "[email protected]"
eval "$(ssh-agent -s)"

echo <<EOF >> ~/.ssh/config
Host *
  AddKeysToAgent yes
  UseKeychain yes
  IdentityFile ~/.ssh/id_rsa
EOF

ssh-add -K ~/.ssh/id_rsa

# GitHub に 公開鍵を登録
pbcopy ~/.ssh/id_rsa.pub
# GitHub 側に貼り付け

# git config
git config --global user.name Luma
git config --global user.email [email protected]
  1. dotfiles でインストール
cd ~
git clone [email protected]:LumaKernel/dotfiles
cd dotfiles
sudo bash mac/install.sh
  1. アプリ設定する (インストールは brew cask)