Open your terminal window and simply type find command with -name, -size, and -type options to find a file by their name, size, and type on the Linux Ubuntu command line. Here are four ways how to find the files
Category: Linux
Install MariaDB 10.4, 10.5, 10.6, 10.7 on Ubuntu 22.04
To install MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.10, 10.11, You just run a single command sudo apt install mariadb-server on a Linux Ubuntu 22.04 terminal window or command line and press Enter, this will install it. Here are some
Read More Install MariaDB 10.4, 10.5, 10.6, 10.7 on Ubuntu 22.04
How to Kill Process on Specific Port Ubuntu Linux
In the Linux Ubuntu system, to kill a process you have to first find the process, which you can do with sudo lsof -i :<port/pid/name> command, after that, you have to type sudo kill <PID/port/name> command on the terminal window
Upgrade PHP version 7.4 to 8.0 on Ubuntu
To upgrade PHP 7.4 to version 8.0 on Ubuntu apache, start a terminal window and type the sudo apt install php8.0 command to install the new PHP version and type sudo a2enmod php8.0 command to enable the PHP 8.0 version
Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock'(2)
When you are working with MySQL server, you are getting the ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock‘ (2) on your terminal window, it means that mysqld socket is missing or its path is set
Read More Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock'(2)
How To Create New Sudo User on Ubuntu 22.04
To create a new user and add it to sudo in Ubuntu; For this, you have to start the command line and type sudo adduser USERNAME command in it to add new user, after that, type usermod -aG sudo USERNAME
How to Install Ruby on Rails with RVM in Ubuntu 22.04
Need to install ruby on rails with rvm on Ubuntu 22.04, Just open the terminal window and type rvm install ruby –latest command into it to install ruby and type gem install rails command into it to install rails with
Read More How to Install Ruby on Rails with RVM in Ubuntu 22.04
How to Install FFmpeg Ubuntu 22.04
FFmpeg is a command-line tool that helps record, convert, and stream audio and video files on various operating systems, including Windows, Linux, and Mac. To install any version of ffmpeg on Ubuntu like 5, 6, 7, etc, You don’t have
How to Install Apache Maven on Ubuntu 22.04
To install Apache Maven in ubuntu 22.04, Start the terminal window and install OpenJDK using sudo apt install default-jdk, and type sudo apt install maven -y to install Apache Maven, and after setting the environment variables for Apache Maven, and
How to Install Let’s Encrypt On Ubuntu 22.04 Nginx
To install Let’s Encrypt and setup free SSL/TLS certificates Ubuntu nginx, Open your terminal window, type sudo apt install certbot Python3-certbot-nginx to install Letsencrypt and type sudo certbot –nginx -d example.com -d www.example command to set up SSL/TLS certificate. Let’s
Read More How to Install Let’s Encrypt On Ubuntu 22.04 Nginx