Enabling https (SSL) on LAMPP (XAMPP) at ubuntu 18.04 (Linux)

To enable the https e.g. SSL request on XAMPP/LAMPP at ubuntu 18.04 linux system please follow the instructions below. sudo openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -keyout Documents/https_ssl.key -out Documents/https_ssl.crt sudo nano /opt/lampp/etc/extra/httpd-vhosts.conf # Non-SSL or http hosts<VirtualHost *:80>       DocumentRoot “/opt/lampp/htdocs/”       ServerName localhost</VirtualHost><VirtualHost *:80>       DocumentRoot “/opt/lampp/htdocs/test/”     …

Creating public ftp on XAMPP at ubuntu linux

If you want to use ftp://localhost anonymously e.g. without any user and password on your xampp server at ubuntu or linux mint distro then please follow the steps below. 1. Enter the command to edit: sudo nano /opt/lampp/etc/proftpd.conf 2. Copy the following scripts and paste into bottom of that file – # A basic anonymous configuration, no…

Set custom screen resolution on Manjaro (Arch Linux based) distro

1. First install xorg-xrandr package if xrandr does not work 2. Create 10-dellmonitor.conf file under /etc/X11/xorg.conf.d directory 3. Enter the following lines in that file and saveSection “Monitor”    Identifier “VGA1”    Modeline “Dell” 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync    Option “PreferredMode” “Dell”EndSection 4. Reboot the computer

Basic git commands

Get git version: Set global user name: Set global email: Clone a repository: git clone https://github.com/your/repository.git To get up to date from remote repo: git pull Check git status: git status To initialize: git init To stage edited files: git add . To commit the changes: git commit -m “Changing summary” To set a remote…

Arch Linux installation

Drive Partitioning and Formattingcfdisk /dev/sdamkfs.ext4 /dev/sda1mkswap /dev/sda2swapon /dev/sda2mount /dev/sda1 /mnt Packages Installationping google.comnano /etc/pacman.d/mirrorlist Bangladesh and Singapore Mirrors only pacstrap /mnt base linux grub nano dhcpcd htop sudogenfstab -U /mnt >> /mnt/etc/fstabarch-chroot /mntpasswd Time and Language settings (It could be done after the installation too)ln -sf /usr/share/zoneinfo/Asia/Dhaka /etc/localtimenano /etc/locale.gen en_US.UTF-8 UTF-8 locale-gennano /etc/locale.conf LANG=en_US.UTF-8 Network…

Desh Account কি এবং কিভাবে বিনামূল্যে ব্যবহার করবেন | What is Desh Account and how to use it freely

কিভাবে বিনামূল্যে Desh Account ব্যবহার করবেন – শুরু করার আগে এই বিষয়টি সম্পর্কে একটু সংক্ষেপে জানিয়ে রাখি। Website আমাদের প্রায় সবারই এখন Bank Account রয়েছে। সেই Account -এ আমরা কখনো টাকা জমা দেই আবার কখনো উত্তোলন করি। এই জমা-উত্তোলন অথবা লেন-দেন সঠিকভাবে হয়েছে কিনা এবং লেন-দেন করার পর Account -এ অবশিষ্ট কত Balance রইল সেটি জানার প্রয়োজনে আমরা…

|

Mounting an NTFS Drive on Linux Debian Server

Here I have described that, how to mount an NTFS drive on linux debian server. First Login to your account Install ntfs-3g app sudo apt install ntfs-3g See the list of all drives sudo fdisk -l Suppose you want to mount /dev/sda8 Create a sub-directory for that drive inside the media directory sudo mkdir /media/mydrive Open and edit the fstab file for…

Project development server setup on the Google Cloud Platform (GCP)

Let’s create a Virtual Machine (VM) instance by following functionalities and features. A Debian-10 is perfect for me. I’m comfortable with DDClient, which updates the external IP of the instance so, I don’t need any static IP yet. An N1 Micro instance with 10GB Balanced Persistent Disk (PD) is quite ok. I don’t prefer a…