Uptime in Windows
Here’s how to find uptime in Windows servers. Go to “Start” -> “Run”. Write “CMD” and press “Enter” key. net statistics server # or net stats srv
View ArticleGCP Compute Disks Move
Here’s how to move a GCP disk between zones. Make sure disk is detached from instance.Use the GCloud Disk Move command. # Detach disk from instance gcloud compute instances detach-disk server...
View ArticleRFC 1918
Here’s the original document published back in February 1996 detailing the allocation for private internet addresses. The Internet Assigned Numbers Authority (IANA) has reserved the following three...
View ArticleMac OS Catalina
I’ve updated my system to the latest Mac OS 10.15.1 codenamed Catalina. Well, it broke a couple of apps that I use regularly, Audacity and OBS. There are currently no updates from Audacity. However,...
View ArticleFFMPEG Convert TS to MP4
If you have video files that are formatted in MPEG-2, video files with a .m2ts extension, you can convert them to MP4 using ffmpeg. ffmpeg -i input.ts -c:v libx264 -c:a aac output.mp4 The video is...
View ArticleSplunk Search for Tanium Clients
Here’s the Splunk search for Tanium clients reporting to the Tanium server. "data.jsonPayload.rule_details.direction"=EGRESS "data.jsonPayload.connection.src_ip"="10.0.0.1"...
View ArticleLogitech K811 Page Up and Down
I’ve been using this keyboard for a few years, but never knew how to use page and page down. It’s … fn + up arrow = page up fn + down arrow = page down
View ArticleMySQL Select Like
Here’s how to perform SQL searches using the like operator. # Format SELECT column1, column2 FROM table_name WHERE column LIKE pattern; # Search for an entry starting with a 'joe.' SELECT...
View Article