If you are using Linux Ubuntu 22.04 system, and you have to compress or extract any files, or directories, use zip -r archive_name files_to_be_zip command to create a zip file and unzip archive_name command to unzip the file. Here are
Category: Ubuntu
How to Install Zip and Unzip Ubuntu 22.04 Linux
If you are working with an Ubuntu 22.04 Linux server, you need to compress ZIP archives files or folders, Or extract/unzip the compressed ZIP archives file or folder. Now, you should have zip and unzip libraries installed in the Ubuntu
How to Uninstall xampp in Ubuntu using Terminal
To uninstall xampp completely, you need to type sudo -i cd /opt/lampp ./uninstall and rm -r /opt/lampp commands on the ubuntu terminal window and hit enter. How to Uninstall xampp in Ubuntu using Terminal Here are some solutions to completely
How to Install XAMPP on Ubuntu 22.04 using Terminal
To install xampp, it needs to be downloaded from the official website, and type xampp installer command “sudo chmod +x xampp-linux-*-installer” on terminal, After running the installer script, the setup installer wizard will start, with the help of which it
Read More How to Install XAMPP on Ubuntu 22.04 using Terminal
How to Reset MySQL Root User Password on Ubuntu 22.04
If you are using MySQL database, and have forgotten its root user’s password or want to reset it for some reason. For this, you have to use 3 commands of mysql such as sudo systemctl set-environment MYSQLD_OPTS=”–skip-networking –skip-grant-tables”, flush privileges;,
Read More How to Reset MySQL Root User Password on Ubuntu 22.04
How to Change MySQL Root User Password Ubuntu 22.04|20.04
If you want to change the password of the root user of MySQL in your Ubuntu system, you have to type 3 commands such as sudo mysql, use mysql, AND UPDATE USER SET authentication_string = password(“new_password”) WHERE user = “root”,
Read More How to Change MySQL Root User Password Ubuntu 22.04|20.04
How to Change the Root Password on Ubuntu 22.04
To change the root user password on Ubuntu, you need to open the terminal and use the sudo -i command to switch to the root user, after that, type the sudo passwd root command and press Enter, this will open
How to Change Password on Ubuntu 22.04 using Terminal
If you are using an Ubuntu 22.04 or 20.04 system, and you want to change the user’s password by username, the root user’s password, or Ubuntu own password, then for this you can use the sudo passwd, sudo root passed,
Read More How to Change Password on Ubuntu 22.04 using Terminal
Failed to Start, Stop, Restart The Apache HTTP Server Ubuntu
If you are using apache 2 http server services like start, stop, reload, restart, and status, and you are getting some error like a job for apache2.service failed because the control process exited with an error code, see “systemctl status
Read More Failed to Start, Stop, Restart The Apache HTTP Server Ubuntu
Failed to start, stop, restart apache2.service unit not found
You have apache2 installed in your system, but when you type apache2 service start, stop, restart and status commands on the terminal window you get some errors like failed to start, stop, restart the Apache http server, apache2.service: failed with
Read More Failed to start, stop, restart apache2.service unit not found