Uploaded October 2025 | Updated September 2026, 1 week ago
There are times when you might want to turn off your computer display without putting it to sleep – like when playing media or running apps that keep the screen awake. While desktop users can simply switch off the monitor, laptops users usually don’t have that luxury. When no display power off button is available, use these methods to turn off the laptop display in Windows.
What you will learn:
1. Run a PowerShell Command to Turn Off the Display
a. How to copy and paste a command in powershell to turn off the display
b. How to open Windows PowerShell
c. How to immediately turn off the display
2. Make the Power Button Turn Off the Display
a. How to configured power button to turn off the screen
b. How to Choose what the power button does
c. How to turn off the display when I press the power button
3. Create a Desktop Shortcut That Turns Off the Display
a. How to create a desktop shortcut that turns off the display
b. How to double-click on the shortcut to turn off the display
c. How to create a shortcut
d. How to turn off the display as you open the shortcut
4. Create a Keyboard Shortcut
a. How you can create a keyboard shortcut that will turn off the display when you hit the key combination
b. How to turn off the display from any screen without needing to open a specific app or access the desktop
c. How To create the keyboard shortcut
d. How to select a key combination in the Shortcut key section
5. Use a Third-Party Tool
a. How you can use a dedicated third-party tool to turn off the display on demand
#computereverywhere #WindowsTips #WindowsTutorial #Windows10 #Windows11 #DisplayOff #TurnOffMonitor #PCTricks #WindowsGuide #WindowsSettings #PowerOptions #TechTutorial #ComputerTips #ProductivityHacks #WindowsShortcuts #WindowsPowerSettings #LaptopTips #DesktopTips #WindowsHowTo #ScreenOff #WindowsHelp
There are times when you might want to turn off your computer display without putting it to sleep – like when playing media or running apps that keep the screen awake. While desktop users can simply switch off the monitor, laptops users usually don’t have that luxury. When no display power off button is available, use these methods to turn off the laptop display in Windows.
What you will learn:
1. Run a PowerShell Command to Turn Off the Display
a. How to copy and paste a command in powershell to turn off the display
b. How to open Windows PowerShell
c. How to immediately turn off the display
2. Make the Power Button Turn Off the Display
a. How to configured power button to turn off the screen
b. How to Choose what the power button does
c. How to turn off the display when I press the power button
3. Create a Desktop Shortcut That Turns Off the Display
a. How to create a desktop shortcut that turns off the display
b. How to double-click on the shortcut to turn off the display
c. How to create a shortcut
d. How to turn off the display as you open the shortcut
4. Create a Keyboard Shortcut
a. How you can create a keyboard shortcut that will turn off the display when you hit the key combination
b. How to turn off the display from any screen without needing to open a specific app or access the desktop
c. How To create the keyboard shortcut
d. How to select a key combination in the Shortcut key section
5. Use a Third-Party Tool
a. How you can use a dedicated third-party tool to turn off the display on demand
#computereverywhere #WindowsTips #WindowsTutorial #Windows10 #Windows11 #DisplayOff #TurnOffMonitor #PCTricks #WindowsGuide #WindowsSettings #PowerOptions #TechTutorial #ComputerTips #ProductivityHacks #WindowsShortcuts #WindowsPowerSettings #LaptopTips #DesktopTips #WindowsHowTo #ScreenOff #WindowsHelp








![How to Install LAMP Stack with PHP 8.3 and MariaDB 11 on Ubuntu 24.04
In this video, we will go through the various steps to install the constituent packages in the LAMP stack with PHP 8.3 and MariaDB 11 on Ubuntu 24.04 Server and Desktop editions.
As you may already know, the LAMP (Linux, Apache, MySQL/MariaDB, PHP) stack is an assortment of leading open source web development software packages.
One of the common uses of the LAMP stack is for running content management systems (CMSs) such as WordPress, Joomla, or Drupal, and many others.
Commands:
sudo apt update
sudo apt install apache2
sudo systemctl status apache2
sudo ss -tlpn | grep apache2
sudo ufw allow Apache Full
sudo ufw status
http://your_server_IP_address
sudo a2enmod ssl
sudo a2ensite default-ssl.conf
sudo systemctl restart apache2
sudo ss -tlpn | grep apache2
sudo systemctl enable apache2
apt search php8.3
sudo apt install php8.3 libapache2-mod-php8.3 php8.3-mysql php8.3-xml php8.3-gd php8.3-curl php8.3-mbstring php8.3-zip
php -v
sudo nano /var/www/html/info.php
sudo systemctl restart apache2
http://your_server_IP_address/info.php
sudo apt install php8.3[TAB]
sudo apt install php8.3-imagick php8.3-intl php8.3-bcmath
sudo systemctl restart apache2
sudo apt install mariadb-server mariadb-client php8.3-mysql
sudo mysql_secure_installation
sudo mysql
use mysql;
ALTER USER root@localhost IDENTIFIED VIA mysql_native_password USING PASSWORD(your_strong_password);
FLUSH PRIVILEGES;
EXIT;
sudo systemctl restart mariadb
mysql -u root -p
sudo apt install phpmyadmin
sudo phpenmod mbstring
sudo systemctl restart apache2
http://your_server_IP_address/phpmyadmin/
Chapters:
0:00 Intro
0:19 Step 1: Install Apache on Ubuntu 24.04
3:11 Step 2: Install PHP 8.3 on Ubuntu 24.04
6:46 Step 3: Install MariaDB 11 in Ubuntu 24.04
8:42 Step 4: Install phpMyAdmin in Ubuntu 24.04
10:36 End screen
What youll learn:
1. Step 1: Install Apache on Ubuntu 24.04
a. How to install the Apache web server from the default Ubuntu official repositories
b. How to successfully installed the Apache web server
c. How to confirm if the daemon is running and on what ports it binds
d. How to allow HTTP and HTTPS traffic if you have UFW firewall enabled
e. How you can confirm apache web server via a web browser by typing the server IP address using the HTTP protocol
f. How to use HTTPS support to secure your web pages
g. How you can enable the Apache SSL module and confirm the port
h. How you can confirm Apache SSL support using HTTPS Secure Protocol
i. How to enable apache web server to start the service at boot time
2. Step 2: Install PHP 8.3 on Ubuntu 24.04
a. How To install PHP with the most commonly needed modules for web development
b. How to search for available PHP packages
c. How to install the proper modules so that PHP can able to run scripts in conjunction with apache web server
d. How to see the current release version of PHP
e. How to create a info.php file in apache /var/www/html/ webroot directory with nano text editor
f. How to Restart apache service to apply changes
g. How to check the PHP configuration
h. How to install additional PHP modules
i. How to install additional modules for image processing and internationalization support
3. Step 3: Install MariaDB 11 in Ubuntu 24.04
a. How to install the latest version of MariaDB with the needed PHP modules to access the database from the Apache-PHP interface
b. How to secure the installation of MariaDB using the security script, which will set a root password, revoke anonymous access, disable root login remotely, and remove the test database
c. How to switch to unix_socket authentication, set root password and enter a strong password, remove anonymous users, disallow root login remotely, remove test database, reload privilege tables
d. How to give MariaDB database access to system normal users without using sudo privileges
e. How to restart the MariaDB service
4. Step 4: Install phpMyAdmin in Ubuntu 24.04
a. How to configure phpmyadmin with dbconfig-common
b. How to Set a strong password for the phpMyAdmin application
c. How to enable the necessary PHP extensions and restart Apache
d. How You can access the web interface of phpMyAdmin
Song: Kaflu - Lose It All
Music provided by Vlog No Copyright Music
Link: https://bit.ly/3YMWwW7
Song: Tinkan - Feel Loved
Music provided by Vlog No Copyright Music
Link: https://bit.ly/3YMWwW7
Song: Ren Zivel - Falling For You
Music provided by Vlog No Copyright Music
Link: https://bit.ly/3YMWwW7
#computereverywhere #LAMPStack #Ubuntu2404 #PHP83 #MariaDB11 #LinuxTutorial #WebServer #ApacheServer #PHPDevelopment #DatabaseSetup #MariaDB #UbuntuServer #LinuxForBeginners #WebDevelopment #FullStackSetup #ServerSetup #DevOps #OpenSource #CodingTutorial #InstallLAMP #TechTutorial #BackendDevelopment #LearnLinux #UbuntuGuide #WebHosting #Programming How to Install LAMP Stack with PHP 8.3 and MariaDB 11 on Ubuntu 24.04](https://i.ytimg.com/vi/yibtlmWMSes/mqdefault.jpg)

