2024-01-24から1日間の記事一覧

【Google Compute Engine】【Ubuntu 22.04】開発環境インストール/microEmacs UTF-8のビルド

開発ツールのインストール $ sudo apt install build-essential gcc g++ make libtool $ sudo apt install ncurses-dev ソース入手とコンパイル、インストール $ git clone https://github.com/paaguti/mg3a.git $ cd mg3a $ autoreconf -i $ ./configure $ …

【Google Compute Engine】【Ubuntu 22.04】teratermでsshできない件

Ubuntu 22.04 では従来のssh-rsaは無効にされた teratermは、ssh-rsaを使うので追加する必要がある 対処 /etc/ssh/sshd_config の最後に1行加える PubkeyAcceptedAlgorithms = +ssh-rsa

【Google Compute Engine】同じマシンインスタンス(e2-micro)でもOSにより使えるRAMサイズが異なる件

Ubuntu 20.04 -> RAM=1GB $ free total used free shared buff/cache available Mem: 976928 194180 264992 948 517756 630508 Swap: 0 0 0 Rocky Linux 8 -> RAM=0.7GB $ free total used free shared buff/cache available Mem: 773508 284048 167452 5212…