Intro-00

Learning Outcome

At the end of this lesson, you will be able to:

Lesson

Activity

Daily Assignment

-> switch out of root account!
    -> but why does it matter!

# update and upgrade the system
sudo apt update && upgrade -y

# install SSH server
sudo apt install openssh-server -y
sudo systemctl start ssh
sudo systemctl status ssh

# so it does not turn off when the lid is closed
sudo nano /etc/systemd/logind.conf
# uncomment and change to ...
HandleLidSwitch=ignore

# change the wifi settings
sudo nano /etc/network/interfaces
  address 172.22.52.XXX
  netmask 255.255.255.0
  gateway 172.22.52.1
  dns-nameservers 8.8.8.8 8.8.4.4


# to change terminal font size
#  select "Terminus ... 16x32"
sudo dpkg-reconfigure console-setup

Extra