Source: StackOverflow
With a Linux Guest run this:
sudo dd if=/dev/zero | pv | sudo dd of=/bigemptyfile bs=4096k
sudo rm -rf /bigemptyfile
| #!/bin/bash | |
| for d in /sys/kernel/iommu_groups/*/devices/*; do | |
| n=${d#*/iommu_groups/*}; n=${n%%/*} | |
| printf 'IOMMU Group %s ' "$n" | |
| lspci -nns "${d##*/}" | |
| done |
| #!/bin/bash | |
| useColors=true | |
| usePager=true | |
| usage() { | |
| echo "\ | |
| Usage: $(basename $0) [OPTIONS] | |
| Shows information about IOMMU groups relevant for working with PCI-passthrough |
| Convention: Byte array notation as it would appear in a hexeditor. | |
| = Layout= | |
| KDBX files, the keepass database files, are layout as follows: | |
| 1) Bytes 0-3: Primary identifier, common across all kdbx versions: | |
| private static $sigByte1=[0x03,0xD9,0xA2,0x9A]; | |
| 2) Bytes 4-7: Secondary identifier. Byte 4 can be used to identify the file version (0x67 is latest, 0x66 is the KeePass 2 pre-release format and 0x55 is KeePass 1) |
Source: StackOverflow
With a Linux Guest run this:
sudo dd if=/dev/zero | pv | sudo dd of=/bigemptyfile bs=4096k
sudo rm -rf /bigemptyfile
| #!/usr/bin/env zsh -f | |
| # Purpose: get the RSS feed for a YouTube page | |
| # Inspired By: https://eggfreckles.net/2020/01/03/youtube-rss/ | |
| # | |
| # From: Timothy J. Luoma | |
| # Mail: luomat at gmail dot com | |
| # Date: 2020-01-17 | |
| NAME="$0:t:r" |
| #SwitchResX Settings for LG 21:9 UltraWide | |
| SwitchResX is a utility that allows users to override the default resolution settings in OSX. For more information, including download links, vist http://www.madrau.com/ . | |
| ##Disabling System Integrity Protection (SIP) | |
| If you are running OSX 10.11 or higher, SIP must be disabled. To disable SIP do the following: | |
| - Boot into the recovery partition by pressing CMD + R when starting up your Mac. | |
| - Once in recovery mode, open a terminal window. | |
| - Type the command csrutil disable |
| @echo off | |
| echo Uninstalling KB3075249 (telemetry for Win7/8.1) | |
| start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart | |
| echo Uninstalling KB3080149 (telemetry for Win7/8.1) | |
| start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart | |
| echo Uninstalling KB3021917 (telemetry for Win7) | |
| start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart | |
| echo Uninstalling KB3022345 (telemetry) | |
| start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart | |
| echo Uninstalling KB3068708 (telemetry) |