You need to install the following PHP modules: apt-get install php8.0-mysql php8.0-intl php8.0-ldap php8.0-imap php8.0-gd php8.0-pgsql php8.0-curl php8.0-xml php8.0-zip php8.0-mbstring php8.0-soap php8.0-gmp php8.0-bz2 php8.0-bcmath php8.0-gd php8.0-igbinary php8.0-intl php8.0-ldap php8.0-mbstring php8.0-redis php8.0-zip php8.0-imagick
Posts in the Personal category:
Fix Kali WSL2 apt-update issues
wget https://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2020.2_all.deb –no-check-certificate sudo dpkg -i kali-archive-keyring_2020.2_all.deb sudo apt update
Windows 11 – Make is useable
Install without Microsoft Account; – username 1@1.com > Next– password 1 > Next– Next– Voilá, make a normal user Remove Telemetry by disabling the “Connected User Experiences and Telemetry” service https://docs.microsoft.com/he-il/windows/wsl/install-manual#downloading-distributions
Booting Windows using GRUB2
Using apt-get install grub-customizer to install the tool we can start adding the correct stuff. From here add an entry and select “Chain Loader”. This will produce and entry like this; set root='(hd1,1)’search –no-floppy –fs-uuid –set 0C7ABF867ABF6ADAdrivemap -s (hd0) ${root}chainloader +1 I my case this did not work (most likely because I use Windows 10 […]
Clear mail from specific address from exim queue
We have alot of issues with people using open contact forms on their websites causing spammers to fill up the exim mail queues on webservers. Today I found a great set of commands to fix the issue. exim -bp will show the current queue exiqgrep -ir spam@example.com | xargs exim -Mrm will query the entire […]
UCARP on Debian 10
In this example I will show what is needed to create a UCARP fail-over IP on Debian 10. In this example my service is BIND9, but ofcourse you can change that to anything you require.
KPN via USG met IPv6
https://coolhva.github.io/usg-kpn-ftth/posts/unifi-security-gateway-kpn-ftth-iptv-ipv6/
Windows icon locations
C:\Windows\System32\Shell32.Dll C:\Windows\Explorer.Exe C:\Windows\System32\AccessibilityCpl.Dll C:\Windows\System32\Ddores.Dll C:\Windows\System32\GameUx.Dll C:\Windows\System32\imageres.dll C:\Windows\System32\MorIcons.Dll C:\Windows\System32\mmcndmgr.dll C:\Windows\System32\mmRes.Dll C:\Windows\System32\NetCenter.Dll C:\Windows\System32\netshell.dll C:\Windows\System32\networkexplorer.dll C:\Windows\System32\PifMgr.dll C:\Windows\System32\PniDui.Dll C:\Windows\System32\SensorsCpl.Dll C:\Windows\System32\SetupApi.Dll C:\Windows\System32\wmploc.DLL C:\Windows\System32\wpdshext.dll C:\Windows\System32\DDORes.dll C:\Windows\System32\compstui.dll
LXD on Ubuntu (usefull stuff)
How to make your LXD containers get IP addresses from your LAN using macvlan auto enp0s25 iface enp0s25 inet static address 192.168.0.16 netmask 255.255.255.0 gateway 192.168.0.1 dns-nameservers 8.8.4.4 8.8.8.8
Letting Ubuntu resolve .local domains from network DNS servers
Ubuntu uses the Avahi Daemon to rewrite .local domains to always be localhost. This can be prevented by editing the config file sudo gedit /etc/avahi/avahi-daemon.conf and setting changing #domain-name=local into domain-name=.localhost (note that there needs to be a . between the name you select and the = mark. After doing this run sudo service avahi-daemon […]