Day: 10/03/2022

Tech Notes, Windows CMD

Just my Windows command notes… Show DNS ipconfig /all | findstr DNS Show all DNS Records ipconifg /displaydns Show all DNS Records and Copy to clipboard ipconfig /displaydns | clip Flush Local DNS Resolver Cache ipconfig /flushdns Show Network Info about Domain nslookup domain.com Show Network Info about Domain from Specific DNS Server nslookup domain.com […]

Tech Notes, Linux Bash

Just my Linux Bash notes… Rename Ubuntu System nano /etc/hostname (Replace the current computer name with the desired new name. Save.) nano /etc/hosts (Change the system name on the 127.0.0.1 line. Save.) Restart List All Subdirectories (based on cwd) and Disk Size du -ks $(ls -d */) | sort -nr | cut -f2 | xargs […]

Tech Notes, Virtual Machines

Just my notes regarding VMs in VirtualBox… Increase Size of VirtualBox VDI (hard disk) File VBoxManage modifyhd Compiler.vdi –resize 10240 <size in MB, 10240 being 10GB> Then, boot VM with GParted Live CD (or ISO). Clone / Create a Duplicate of a VDI Hard Disk File

Scroll to top