-
Install CoreFreq via remote url plugin: unraid-corefreq
-
Go to settings > CoreFreq and run the pre test. *proceed to the next steps if it's successful
-
Create a file
/boot/config/modprobe.d/corefreqk.confwith the following content:options corefreqk Register_ClockSource=1 Register_CPU_Freq=1 Register_Governor=1 Register_CPU_Idle=1 PkgCStateLimit=6
Tools and packages are from OSX-KVM repository.
# Download fetch-macOS-v2.py and run_offline.sh script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0' encoding='UTF-8'?> | |
| <domain type='kvm' id='102' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> | |
| <name>WORKING-VM</name> | |
| <uuid>caded4fe-929c-4759-7458-f8526e2c4bd1</uuid> | |
| <description>macOS Ventura</description> | |
| <metadata> | |
| <vmtemplate xmlns="unraid" name="Arch" icon="Apple_old3.png" os="arch"/> | |
| </metadata> | |
| <memory unit='KiB'>16777216</memory> | |
| <currentMemory unit='KiB'>16777216</currentMemory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # eFootball Network Optimization on Mikrotik | |
| # Assuming the target PC/Console IP is 192.168.0.100 with network range of 192.168.0.1-254 and bandwidth of 30mbps/10mbps | |
| # With ether1 as WAN and ether2 as LAN | |
| # Create Mangle for eFootball Traffic | |
| /ip firewall mangle | |
| add action=mark-connection chain=prerouting comment="MARK CONN KONAMI - TCP" \ | |
| connection-state=new dst-port=30000-35000 new-connection-mark=konami_conn \ | |
| passthrough=yes protocol=tcp src-address=192.168.0.100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #set which hosts will be checked | |
| CHECKHOST1="10.0.0.100" | |
| CHECKHOST2="10.0.0.100" | |
| MAX_FAILS=10 | |
| FAILCOUNT=0 | |
| GLOBALFAILCOUNT=0 | |
| PERIOD=30 |
NewerOlder