First implemented in my network 03/20/2025; monitoring for effectiveness
sudo pro config set apt_news=false
lsblk --nodeps -o name,serial
netstat -tulpn | grep LISTEN
sudo systemctl daemon-reload
apt list --installed
apt-cache search <keyword>
sudo update-alternatives --config editor
Settings -> Privacy -> Screen Lock
Settings -> Power -> Blank Screen
sudo smbpasswd -a <username>
sudo pdbedit -L
tune2fs -l /dev/vda2 | grep ‘Filesystem created:’ (replace vda2 with device where root filesystem is located)
du -a /dir/ | sort -n -r | head -n 20 (replace 20 with the # of lines you wish to have returned)
Create (or edit, if it exists) ~/.vimrc; into this file add the command syntax off, and save the file.
Overwrite/blast the boot block on the hard drive (ONLY when you want to re-install the operating system!)
dd if=/dev/zero of=/dev/sda count=1 bs=512
mkdir /tmp/rootbind mount --bind / /tmp/rootbind du -d 1 -h /tmp/rootbind
apt install wsdd
xrandr -q
OTA DVR recordings are saved as .ts files, which are not compatible with DaVinci Resolve (my video editor of choice). For this reason, we must convert the files into a format that “DR” can comprehend. We can do this on linux using the ffmpeg package:
ffmpeg -i <inputfile.ts> -vcodec copy -acodec copy <outputfile.mp4>
mkpasswd --method=sha-512
Ensure that websockets support is enabled
Create /etc/apache2/conf-available/remoteip.conf with the following contents:
RemoteIPHeader X-Forwarded-For RemoteIPTrustedProxy x.x.x.x (replace w/ IP address of trusted proxy)
Execute the commands:
ln /etc/apache2/conf-available/remoteip.conf /etc/apache2/conf-enabled/remoteip.conf ln /etc/apache2/mods-available/remoteip.load /etc/apache2/mods-enabled/remoteip.load
Edit /etc/apache2/apache2.conf
and find the LogFormat lines. Change each occurrence of %h to %a.
Restart apache.
sudo into an elevated shell and then perform the following:
parted /dev/sdX (where X is the letter of the drive to be manipulated) mklabel gpt Acknowledge the warning if one is given unit TB mkpart primary 0.00TB 2.00TB (or 3.00TB, 4.00TB, etc. depending on the size to be created) print (to view the new partition) quit (to exit parted)
Then proceed to format the new drive, i.e. mkfs -t ext4 /dev/sdb1