Setting up a LAMP stack on Ubuntu is an essential skill for developers, system administrators, and anyone looking to host dynamic web applications. The term LAMP stands for Linux, Apache, MySQL, and PHP, which together form a powerful web server environment. Whether you’re using Ubuntu 20.04 or 22.04, this guide…
Tag: Ubuntu
Devops
Copy command in Ubuntu
Copy is very command in Ubuntu terminal. whenever we want to copy the directories or files copy command come in to the action. In this article we will lean to copy the directory, copy files, copy with hidden files, copy recursively, copy multiple files, copy with backup, copy interactively. So,…
Softwares
Disable SSH or IP bounded on any ubuntu server?
Open SSH to everyone is a security risk. we can change these settings easily in 2 minutes. let’s have quick solution on this. Open file /etc/hosts.deny with using vi or nano editor. Command : sudo vi /etc/hosts.deny then add below line to the file. sshd,sshdfwd-X11 : ALL it will look…