suima8のメモ

メモです

memo

2020-09-28から1日間の記事一覧

VScode: warning: agent returned different signature type ssh-rsa (expected rsa-sha2-512)

VScodeでSSH接続ができなくなっていた Windows Updateで何かが変わったらしく,SSH Agentが無効になってしまった.VScodeから会社サーバやgithub等のサービスへ接続できなくなった. Get-Process : Cannot find a process with the name "ssh-agent".` SSH A…

Quartus: コマンドからファームウェアのサンプルプロジェクトを作成

Quartus でコマンドからファームウェアのサンプルプロジェクトを作成 使用可能なサンプルプロジェクトの一覧を調べる. nios2-swexample-create --list Quartus 20.2では以下のサンプルが用意されていた. blank_project web_server memtest_small simple_so…

WSL + X11(VcXsrv)

WSL

WSLでX11を使いたい リモートで入ったときにX11でアプリを動作させたかったので VcXsrv を導入した. インストール インストーラをダウンロードし,実行する. VcXsrv Windows X Server 環境変数の設定 DISPLAY を設定する. export DISPLAY=localhost:0.0 s…

wslのデフォルトシェルをzshに変更する

WSL

chsh で変更する zsh を install する. sudo apt install zsh chsh で変更する. chsh -s $(which zsh) oh my zsh を導入する場合 ohmyzsh/ohmyzsh を使う. Method Command curl sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/m…