Ubuntu

Resetting forgotten phpmyadmin password in Ubuntu

phpMyAdmin is a popular web-based application used to manage MySQL databases. However, forgetting the password for your phpMyAdmin account can be a frustrating experience. This blog post will provide a step-by-step guide on resetting your forgotten phpMyAdmin password in Ubuntu. By following these instructions, you can regain access to your MySQL databases. Step 1: Access …

Resetting forgotten phpmyadmin password in Ubuntu Read More »

How to Install Composer, Docker, Laravel and WordPress using terminal?

This tutorial will assist those new to the Ubuntu environment in configuring the following: Composer Docker Laravel WordPress First, open the Terminal in Ubuntu by searching for it or by pressing Ctrl + Alt + T. If you don’t want to use the keyword “sudo,” type “sudo su” instead. This is how it will appear. …

How to Install Composer, Docker, Laravel and WordPress using terminal? Read More »

How to change directory permissions in Linux

To change directory permissions in Linux, use the following: chmod +rwx filename to add permissions. chmod -rwx directoryname to remove permissions. chmod +x filename to allow executable permissions. chmod -wx filename to take out write and executable permissions. Note that “r” is for read, “w” is for write, and “x” is for execute.  This only changes the permissions for …

How to change directory permissions in Linux Read More »

How to configure postfix to use Gmail SMTP on Ubuntu

If you do not have postfix installed before, postfix configuration wizard will ask you some questions. Just select your server as Internet Site and for FQDN use something like mail.example.com Then open your postfix config file: and following lines to it: You might have noticed that we haven’t specified our Gmail username and password in above lines. They …

How to configure postfix to use Gmail SMTP on Ubuntu Read More »

How to Enable Roundcube Installer in Ubuntu 20.04

While you are setting up and finishing installation your Roundcube in your Ubuntu and you accidentally shut it down, the installer will be disabled and you will encounter a message shown below. To enable it, follow the steps below: Step 1: Open your terminal and go to your roundcube folder. In this case, it is …

How to Enable Roundcube Installer in Ubuntu 20.04 Read More »

How to transfer file from windows host machine to ubuntu virtual machine in virtualBox

We will try to transfer this sample_file.txt located in HOST_FILE folder from the host machine to virtual machine in virtual box. Step 1: Go to virtualbox manager. Step 2: Click your virtual environment. Step 3: Click Settings. Step 4: Go to Shared Folders. Step 5: Click the blue folder with plus sign icon. Select the …

How to transfer file from windows host machine to ubuntu virtual machine in virtualBox Read More »