Skip to content

Instantly share code, notes, and snippets.

@kanchudeep
kanchudeep / setting-up-joomla-on-debian-ubuntu-linux.txt
Created July 28, 2022 07:29
Setting Up Joomla on Debian/Ubuntu Linux
# Update apt & do a full upgrade
sudo apt update && sudo apt full-upgrade
# Install Apache2, appt https support & MariaDB
sudo apt install --yes apache2 apt-transport-https mariadb-server mariadb-client
# Setup database:
sudo mysql_secure_installation
@kanchudeep
kanchudeep / customise-windows-10.cmd
Created December 31, 2023 01:05
Batch file to customise Windows 10 22H2
:: Script to customise Windows 10 22H2
@echo off
:: System related
echo Setting 'Notify before downloading and installing any updates' for Windows Updates...
reg add HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate\AU /f /v AUOptions /t REG_DWORD /d 2
echo.