Version 3.2.0 - Open source code, new scripts, etc

This commit is contained in:
Gabriel
2022-01-31 10:28:09 -03:00
parent 7ae07eb6e2
commit 35f073149c
5 changed files with 28 additions and 2 deletions

16
tools/CHECK-IOMMU.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
#
# Script: check-iommu-enabled.sh
# Goal: Check if IOMMU are Enabled in your system
#
# Author: Gabriel Luchina
# https://luchina.com.br
# 20220128T1112
if [ `dmesg | grep -e DMAR -e IOMMU | wc -l` -gt 0 ]
then
echo "IOMMU Enabled"
else
echo "IOMMU NOT Enabled"
echo "Check file /etc/default/grub contains 'intel_iommu=on' in 'GRUB_CMDLINE_LINUX_DEFAULT' line"
fi

0
tools/macrecovery/macrecovery.py Normal file → Executable file
View File