You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Putty 0.67 is unable to connect to Ubuntu 22.04

Couldn't agree a host key algorithm (available: rsa-sha2-512, rsa-sha2-256, ecdsa-sha2-nistp256,ssh-ed25519)

Solution: Update Putty (for example from 0.67 to Putty 0.77)

Update to latest

apt update
apt upgrade


Set correct timezone

dpkg-reconfigure tzdata


Change default editor to vim

sudo update-alternatives --config editor

remove password prompt on sudo

visudo


# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) NOPASSWD: ALL

History with dates

vi /etc/bash.bashrc
HISTTIMEFORMAT="%Y-%m-%d %T "
HISTSIZE=20000
HISTCONTROL=ignoredups:erasedups
shopt -s histappend

Enable sar

apt install sysstat

vim /etc/default/sysstat
ENABLED="true"


Workaround for Intel NUC10i7FNK constant 1.00 Load Average

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1883511

https://community.intel.com/t5/Intel-NUCs/NUC10i3-IRQ-problem/td-p/669863 (TPS65982 issue with Linux drivers)

https://www.intel.com/content/dam/support/us/en/documents/intel-nuc/Supported-OS-NUC.pdf (Linux is not officially supported by Intel Nuc 10)

https://www.spinics.net/lists/kernel/msg3611861.html

modprobe -r tps6598x

Add some nice console apps

apt install btop
apt install ncdu
apt install duf
apt install 
  • No labels