Text
Website
For nerdgamsic content, visit my site at https://theouterlinux.gitlab.io :)
4 notes
·
View notes
Link
Looking inside a binary/executable file to grab human-readable strings
5 notes
·
View notes
Link
10 notes
·
View notes
Link
grep string * -R Or grep -ir string *
1 note
·
View note
Link
1 note
·
View note
Link
find . -type f -print0 | xargs -0 stat -c '%y %n' | sort -n -k 1,1 -k 2,1 | awk 'END{print $NF}'
0 notes
Link
0 notes
Link
1 note
·
View note
Link
FINDDATE() { LOCATION="${1:-.}"; find ${LOCATION} -type f -print0 | xargs -0 stat -c "%y %n" | sort | sed 's/.\([0-9]\)\{9,\} +0[1-2]00/\t/' | sed 's/ /\t/g' }
0 notes
Text
Install only security patches on OpenSUSE
zypper lp | awk '$5=="security" { print "zypper install -y -n -t patch "$3}' | grep -v "needed" | sh +x
1 note
·
View note
Text
List processes listening to port 80
lsof -i tcp:80
1 note
·
View note
Link
StreamPi is a script I made for streaming or locally recording on old computers with ffmpeg. This is a video of a recent update. Grab the script: https://github.com/theouterlinux/StreamPi
0 notes
Link
Basically, if the "whois" command acts weird or stops working as expected, this is a PDF copy of a letter that might explain why. ICANN vs. GDPR.
0 notes
Link
0 notes
Text
Edit console/TTY font (Debian/Ubuntu)
sudo dpkg-reconfigure console-setup
0 notes