Skip to content

Instantly share code, notes, and snippets.

@kzahel
Last active March 30, 2023 20:36
Show Gist options
  • Save kzahel/1530ce5e00a7124bff60c8f91324eda8 to your computer and use it in GitHub Desktop.
Save kzahel/1530ce5e00a7124bff60c8f91324eda8 to your computer and use it in GitHub Desktop.
ChromeOS sshd openssh server
sudo su
apt-get install -y openssh-server iptables
iptables -I INPUT -p tcp --dport 22 -j ACCEPT
mkdir -p -m0755 /var/run/sshd
/usr/sbin/sshd
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment