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 | |
| # | |
| # Kali / Ubuntu / Debian Linux update efi bootloader and set correct bios systime | |
| # (C) 2021 suuhm | |
| # | |
| apt clean; apt update && apt install os-prober ntpdate | |
| echo "Set up correct time:" | |
| ntpdate pool.ntp.org && hwclock --systohc |
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/sh | |
| sudo dd if=/dev/zero of=/var/swapfile bs=1M count=1048 && \ | |
| sudo chmod 600 /var/swapfile && \ | |
| sudo mkswap /var/swapfile && \ | |
| echo /var/swapfile none swap defaults 0 0 | sudo tee -a /etc/fstab && \ | |
| sudo swapon -a | |
| exit 0 |
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 | |
| # (C) 2021 - suuhm | |
| # | |
| # Needs: xrags, egrep, bash | |
| # | |
| # Mounting desired partition/drive | |
| # mount /dev/windows /mnt | |
| # Setup dir | |
| dir=/home/ |
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
| # | |
| # An unhandled exception has been thrown: | |
| # OC\HintException: [0]: Memcache \OC\Memcache\APCu not available for local cache (Is the matching PHP module installed and enabled?) | |
| ls -la /var/nextcloud-dir ; cd /var/nextcloud-dir | |
| sudo -u nextcloud-user php --define apc.enable_cli=1 occ db:add-missing-indices | |
| ## | |
| ## Setup all php dependencies and delete the *updater |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\EdgeUi] | |
| "DisableTLCorner"=dword:00000001 | |
| "DisableTRCorner"=dword:00000001 | |
| "DisableCharmsHint"=dword:00000001 |
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
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa] | |
| "LimitBlankPasswordUse"=dword:00000000 |
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
| @echo off | |
| echo Delete Thumbcache... | |
| taskkill /f /IM explorer.exe | |
| CD /d %userprofile%\AppData\Local\Microsoft\Windows | |
| del /f /s /q Explorer\iconcache*.* | |
| del /f /s /q Explorer\thumbcache*.* | |
| Start explorer.exe |
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
| #turn your temp addr to a full ipv6 | |
| Set-NetIPv6Protocol -RandomizeIdentifiers Disabled | |
| Set-NetIPv6Protocol -UseTemporaryAddresses Disabled | |
| Restart-Computer |
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 | |
| # Copyright 2023 - suuhmer | |
| # All rights reserved | |
| ################################## | |
| # Suse Upgrader - Easy version # | |
| # Version beta 0.1 # | |
| ################################## |
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
| @echo off | |
| cls | |
| :: echo change from eng (0409) to german -> 0407: | |
| :: (c) 2023 suuhmer | |
| :: | |
| echo Change Sys-Lang to %~1 - (Original: German 0407) | |
| echo\ | |
| Reg.Exe add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Nls\Language" /v Default /t REG_SZ /d %~1 /f | |
| echo\ |