Nginx directory list allow Rumi, December 19, 2024 location /somedirectory/ { autoindex on; autoindex_exact_size off; autoindex_format html; autoindex_localtime on; } Continue Reading
Fixing Ubuntu 22 SSH connection problem Rumi, December 18, 2024 Enable this parameter KbdInteractiveAuthentication yes in /etc/ssh/sshd_conf file ubuntu in 22.04 LTS and restart the sshd services it will work Continue Reading
Force User to Change Password at Next Login in Linux Rumi, December 7, 2024 To force a user to change his/her password, first of all the password must have expired and to cause a user’s password to expire, you can use the passwd command, which is used to change a user’s password by specifying the -e or –expire switch along with username as shown. # passwd –expire ravi Next… Continue Reading
Install Proxmox 8 on Debian 12 Rumi, December 7, 2024 Install a standard Debian Bookworm, for details consider the Debian installation guide, and configure a static IP. Note: The Debian installer performs network configuration by IPv6 autoconfiguration and DHCP by default, if available. To force manual network configuration in the UEFI installer, press E and add netcfg/disable_autoconfig=true to the Linux command line. For the… Continue Reading
Install Nodejs on Ubuntu 20 Rumi, December 7, 2024 Installing Node.js and npm from NodeSource NodeSource is a company focused on providing enterprise-grade Node support. It maintains an APT repository containing multiple Node.js versions. You can use this repository to install any version of Node.js you need. The first step is to install the dependencies necessary to add a new… Continue Reading
Running react js on virtualmin server Rumi, November 21, 2024November 22, 2024 Just make sure, you have node, npm andp m2 installed in the server as root administrator. Now, you can run the rest as a virtualmin user in the virtualmin shell account. npm install npm run build npm run dev pm2 start npm — run dev Step-3 will let you know… Continue Reading
ক্লাউড হোস্টিং ও ডেটা সেন্টারে দেশীয় উদ্যোগ Rumi, November 9, 2024 বর্তমানে অনলাইনের এই যুগে সবকিছু আমরা ক্লাউডে হোস্ট করে থাকি। এর আগে হোস্টিংয়ের জন্য সাধারণত সার্ভার ভাড়া নিয়ে সেখানেই হোস্ট করা হতো। সময়ের সঙ্গে সঙ্গে অনলাইন হোস্টিংয়ে অনেক পরিবর্তন ও পরিবর্ধনের মধ্য দিয়ে বর্তমানে ক্লাউডের বিকাশ ঘটে। আইটিতে শীর্ষস্থানীয় প্রতিষ্ঠানগুলো যেমন– মাইক্রোসফট, গুগল, অ্যামাজন, ওরাকল তাদের নিজস্ব ক্লাউড প্ল্যাটফর্ম গড়ে… Continue Reading
Disable NetworkManager in Rocky Linux 8 Rumi, November 8, 2024 To disable NetworkManager on Rocky Linux 8, we need to install the network-scripts package which provides legacy support to the network service, yum install network-scripts Enable the service to start onboot, systemctl enable network Next, we add NM_Controlled=no to the interface config file, nano /etc/sysconfig/network-scripts/ifcfg-<interface> Replace with the interface name… Continue Reading
How to Find all Files Containing Specific Text (string) on Linux Rumi, November 8, 2024November 8, 2024 Method 1: grep command grep command in Linux that is used to search for files containing a specific text or string. By default, it shows us the lines in the files that contain the particular text. If we append the -l option to it, the command will show us all… Continue Reading
Auto-renew Let’s Encrypt SSL certificates using crontab Rumi, November 8, 2024 The achieve this, all we need to do is add a new crontab which will trigger the certbot at a certain time in a day to check the expiry date of your SSL certificates and take care of the renewing it. 1. Configure the crontab (Make sure to use sudo so that root crontab can be… Continue Reading