YouTube Video: https://youtu.be/SzSSll7nJnI
sudo apt update
sudo apt install wireguard
YouTube Video: https://youtu.be/SzSSll7nJnI
sudo apt update
sudo apt install wireguard
| { | |
| "python.linting.flake8Enabled": true, | |
| "python.linting.enabled": true, | |
| "python.pythonPath": "/usr/bin/python3", | |
| "python.testing.pytestEnabled": true, | |
| "python.testing.pytestPath": "pytest", | |
| "python.testing.pytestArgs": ["-xvs", "--cov=tb_troll", "--cov-report=html", "tests/"] | |
| } |
Instructions for dual boot: https://askubuntu.com/questions/726972/dual-boot-windows-10-and-linux-ubuntu-on-separate-hard-drives
sudo apt install tmux build-essential gcc g++ make.
sudo apt-get install g++ freeglut3-dev build-essential libx11-dev \ libxmu-dev libxi-dev libglu1-mesa libglu1-mesa-dev
sudo apt install cuda cuda-drivers
The Problem
.DS_Store and __MACOSX files have littered servers, codebases and your colleague's workstations since Apple Inc. decided that MacOSX browsing speeds was more important than the general hygiene of the internet. Here's a cheatsheet to help you clean up after yourself.
zip -r data.zip . -x ".DS_Store" -x "__MACOSX"
Removing injects from existing zip files
remove previous gst installations:
$ sudo rm -rf /usr/local/deepstream /usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnv* /usr/bin/deepstream* /usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst*
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/deepstream*
/opt/nvidia/deepstream/deepstream*
$ sudo rm -rf /usr/lib/x86_64-linux-gnu/libv41/plugins/libcuvidv4l2_plugin.so
install dependencies
| #!/bin/bash | |
| # Copyright (c) 2020, lackdaz | |
| # All rights reserved. | |
| ### Contributions | |
| # Written by Seth Loh Wei Chen github.com/lackdaz | |
| # Contribution by John Rehwinkel gitlab.com/bodger | |
| # Share with me the modifications in the comments below!! | |
| ### |
| sudo find /opt/nvidia/jetson-io/ -mindepth 1 -maxdepth 1 -type d -exec touch {}/__init__.py \; |
| sed '/3095/d' ~/.ssh/known_hosts > ~/.ssh/known_hosts |
| #!/bin/bash | |
| authorized_keys="/home/seth/.ssh/authorized_keys" | |
| ssh_login_file="/var/log/auth.log" | |
| ports=$(netstat -tn -o state established | grep -F ":22" | awk '{ print $5 }' | sed -e 's/.*://') | |
| echo "Active logins:" | |
| # Iterate through established peer ports connected to :22 |