As root
apt install terminator npm nodejs xterm dbus-x11
systemd-machine-id-setup
npm install --global base16-builder
add-apt-repository ppa:kgilmer/speed-ricer
apt-get update
apt install i3-gaps i3-snapshot i3xrocks polybar xrescat
Complete overkill, but fun to learn and play with..
Basic steps:
Consolidated notes for Ubuntu 18 as of 1/25/2020
Install erlang requirement
echo "deb https://dl.bintray.com/rabbitmq/debian $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/rabbitmq.list
apt update -y
apt install -y erlang-base erlang-asn1 erlang-crypto erlang-eldap erlang-ftp erlang-inets erlang-mnesia erlang-os-mon erlang-parsetools erlang-public-key erlang-runtime-tools erlang-snmp erlang-ssl erlang-syntax-tools erlang-tftp erlang-tools erlang-xmerl
Since omxplayer seems depreciated on the newer Raspbian installs, needed a way to stream 4xRTSP streams to console, without X11
My TV is connected on the HDMI port and is 1920x1080
My camera system is a LOREX with RTSP streams available.
A command line sample for mplayer
mplayer -nosound -framedrop -ao null -vo fbdev2 'rtsp://USER:[email protected]:554/cam/realmonitor?channel=CHANN&subtype=1' -vf scale=958:500 -geometry 0:0
# Most recent version is at https://gist.githubusercontent.com/Wagahai/3ee960f210252488322f24a31d15b6af/raw/generic-bash-functions.sh | |
# Last updated: 2023-12-15 | |
# Include this file to have access to the various functions it provides | |
# The script allows for a custom prefix before the command | |
# ie: it-commandname | |
cmdprefix="it" | |
enablecolors=true | |
# If not running interactively, don't do anything | |
case $- in |