Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 792 Bytes

README.md

File metadata and controls

40 lines (34 loc) · 792 Bytes

Lab Computer Setup

Other non-class related setup needs:

Other apt packages

sudo apt install \
    vim \
    tmux \
    screen \
    wget \
    htop \
    minicom \
    zsh \
    python3.10-venv \
    ncdu

Permissions to Serial Devices

Add a file: /etc/udev/rules.d/50-myusb.rules with contents:

KERNEL=="ttyACM[0-9]*",MODE="0666"
KERNEL=="ttyUSB[0-9]*",MODE="0666"

Add these lines as well for SD card imaging permissions:

KERNEL=="sd*", SUBSYSTEMS=="usb", MODE="0666"