NeoLAB
35 subscribers
150 photos
29 videos
94 files
335 links
Lab of @neo_is_kal

๐Ÿง | @ArchLinuxIndia
๐Ÿš | @PrivacyToolsIOChat
๐Ÿฌ | @FossMemes

This is a Journal + Shrine of links
Website: https://neovoid.is-cool.dev
Download Telegram
Text manipulation commands
#Notes #teachingnotes
echo - send text to stdout
cat - read file
less - read in a pager
head - read from top
tail - read from bottom
more - file perusal filter for crt viewing
sort - sort lines
uniq - report or omit repeated lines
fmt - reformat lines
pr - convert text files for printing
tr - translate or delete characters

Advanced Commads

awk - pattern scanning and processing language
grep - print lines matching pattern
sed - stream editor for filtering and transforming text
Apache Log4j 2 CVE-2021-44228

The vulnerable versions of Log4j 2 are versions 2.0 to version 2.14.1 inclusive. The first fixed version is 2.15.0. We strongly encourage you to update to the latest version if you can. If you are using a version before 2.0, you are also not vulnerable.

https://www.docker.com/blog/apache-log4j-2-cve-2021-44228/
This media is not supported in your browser
VIEW IN TELEGRAM
Visual effects in Blender using object tracking with a video camera.

Look at how cool this is! ๐Ÿ˜ฎ

EP
#artwork Wallpaper for void linux
๐Ÿ”ฅ1
NeoLAB pinned ยซHelpful Linux and CyberSec Learning Resources: #OPSEC #learning #resources Reading Resources linux.die.net/ gnu.org/software cppreference.com www.c0ffee.net/blog pwn.college ike.mahaloz.re gh0st.net/wiki crackedthecode.co Full Tutorials geeksforgeeks.orgโ€ฆยป
Forwarded from Deleted Account
My NEW Website.
Successfully deployed on github.
https://void00r.github.io/NeoVoid-Site/
In which language Unix is written?
Anonymous Quiz
86%
C Language
0%
C++ Language
5%
Assembly Language
10%
COBOL Language
Advanced diskpartition #quicknotes #notes

partitioning using fdisk
primary {sda1 sda2 sda3}, extended {sda4}

physical volume
pvcreate
pvcreate /dev/sda1 /dev/sda2 /dev/sda3
pvs or pvdisplay - for showing

volume group
vgcreate
vgcreate <newname> <path of volumes>
vgs or vgdisplay

logical volume
lvcreate
lvcreate -L +20G -n <newname> <vg name>
lvrename
lvextend
lvreduce
Useful bash functions for faster command line usage in a terminal

cmd-copy() { "${@}" | xclip -sel clip ; }
Syntax: $ cmd-copy <command>
Example: $ cmd-copy sudo apt-get update
This will copy the output of sudo apt-get command in your clipboard

cmd-help() { curl cheat.sh/"${1}" ; }
Syntax: $ cmd-help <command>
Example: $ cmd-help tar
This will show you the usage of tar command

cmd-upload() { "${@}" | curl -F 'f:1=<-' ix.io ; }
Syntax: $ cmd-upload <command>
Example: $ cmd-upload neofetch --stdout
This will upload the output of neofetch command to a pastebin service

@linux_mint_resources