How to connect github to you windows or linux computer.

How to install Git on Ubuntu 22.04 We have summed up for you all steps that will help in the successful installation of git on Ubuntu 22.04. Step 1: Update the system Before installing Git make sure your system is up to date. To verify this use the following commands. $ sudo apt update $ sudo apt upgrade -y Now […]

Read More

A complete tutorial of ngnix server configuration in ubuntu 22.04

1. Overview Nginx is an open-source web server that is often used as a reverse proxy or HTTP cache. It is available for Linux for free. In this tutorial, we’ll install Nginx and set up a basic site. What you’ll learn How to set up Nginx PHP installation Mysql Installation Basic Mysql configuration Firewall install […]

Read More

Environmental strategies adopted by the Green University of Bangladesh to achieve sustainability

Climate scientists say we must now achieve ecological and economic transformation at a speed and scale with “no historic precedent.” But here’s the good news: By planting trees and restoring healthy soil,  by growing food in ways that restore the health of both landscapes and communities. In simple terms, environmental sustainability is the practice of […]

Read More

How to learn Linux || All in one Linux system adminstration

What is Linux? The Linux operating system has become one of the most widely used operating systems, popular among researchers, application developers, and hobbyists alike. These days, the Linux operating system can be found in an amazing range of computer environments, from mobile phones to satellites. This chapter examines just what the Linux operating system […]

Read More

Server error (500 internal Server Error) in the ubuntu server

Way 1: Add the following lines in the wp-config. PHP file right above “That’s all, stop editing! Happy publishing”: define( ‘WP_MEMORY_LIMIT’, ‘515M’ ); define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ ); And save wp-config.php file Note: before changing wp-config.php. you must download the file. Way 2:

Read More

Linux most common script.

Bash Related CommandsClear the terminal clear / ctrl + lClose the terminal exit / ctrl + dReset the terminal resetStop any program ctrl + cSleep any program ctrl + zCheck the history ctrl + r / historyCheck last 30 commands history | tail -30Autocomplete Filename or Folder name TabAutocomplete command Tab twiceAutocomplete command with options […]

Read More

How to Download and upload files using SCP in linux

In this article, We have explored the steps to Download and upload files from one remote server to another remote server. This involves using commands like SCP or utilities like windSCP Upload File using SCP command from windows to Server. Code details: $SCP -i <ssh-key-location> <local/Windows computer location> user@ip: <web server location> If you do […]

Read More

How to install WordPress in ubuntu server

sudo apt install php libapache2-mod-php php-mysql -y MARIA DB Installation MYSQLsudo apt install mysql-server -ysudo mysql_secure_installation sudo apt install mariadb-serversudo mysql_secure_installation if show errors, when you install database. if sucessfully install then flow next section “database create” solved it by running “$sudo mysql”which logged me in as root without a password, then I ran$ALTER USER […]

Read More