Skip to content

Instantly share code, notes, and snippets.

@datacustodian
datacustodian / Fix_VM_Date_Time_Settings.md
Created June 12, 2018 00:17
Fix VM Date Time Settings

Fix VM Date Time Settings

sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | head -1 | cut -d' ' -f5-8)Z"

@datacustodian
datacustodian / Change_Windows_Domain_Password_From_Linux_Command_Line.md
Created June 9, 2018 16:01
Change Windows Domain Password From Linux Command Line

Change Windows Domain Password From Linux Command Line

Install cifs-utils package

sudo apt install cifs-utils

Use smbpasswd command to change password

smbpasswd -r WINDOWS_DOMAIN_CONTROLLER_ADDRESS -U firstname.lastname

Split File by Pattern

awk '/MY_PATTERN/{i++}{print > "output."i".txt}' input.txt
@datacustodian
datacustodian / Nmap_Host_Discovery.md
Last active March 15, 2018 01:13
Nmap Host Discovery
@datacustodian
datacustodian / LaTeX_on_Ubuntu.md
Last active February 6, 2018 02:33
LaTeX on Ubuntu

LaTeX on Ubuntu

There are several ways to compose LaTeX documents in Ubuntu. The easiest way is probably using TeXStudio.

sudo apt install texlive texlive-xetex texstudio

If you need additional (all) packages, do:

sudo apt install texlive-full
@datacustodian
datacustodian / Ubuntu_Link_Aggregation.md
Last active December 26, 2017 01:59
Ubuntu Link Aggregation
@datacustodian
datacustodian / CentOS_Minimal_Post-Installation_Steps.md
Last active July 7, 2024 15:18
CentOS Minimal Post-Installation Steps

CentOS Minimal Post-Installation Steps

CentOS Minimal Distro is a good starting point for deploying a bare-bones no-frills server. However, CentOS Minimal lacks some commonly used Linux packages. This guide covers a couple Linux packages that are nice to have in a server deployment.

All steps are optional.

For clarity and ease of use, we execute these commands as the root user.

Become Root User

@datacustodian
datacustodian / Ubuntu_Desktop_For_Software_Development.md
Last active July 12, 2024 05:16
Ubuntu Desktop For Software Development
@datacustodian
datacustodian / Fix_Server_SSH_Key_Change.md
Last active October 11, 2017 04:06
Fix Server SSH Key Change

Fix Server SSH Key Change

If a server you connected to previously using SSH has changed its server SSH key, you will receive a warning message about possible (man-in-the-middle) MITM attack. When you have verified that the server SSH key has indeed changed, you can use the ssh-keygen command to fix settings in your known_hosts file.

ssh-keygen -R SERVER_NAME_OR_IP

Selected options from the ssh-keygen man page:

-F hostname >

@datacustodian
datacustodian / OpenVPN_on_Chromebook_Crouton.md
Last active April 2, 2018 02:41
OpenVPN on Chromebook Crouton