Friday, May 5, 2023
Saturday, April 29, 2023
Fix: Wget HTTP request sent, awaiting response... 403 Forbidden
wget --user-agent="Mozilla" https://www.domain.com/file.extension
or
wget --user-agent="Mozilla" https://domain.com/file.extension
or
wget --user-agent="Mozilla" www.domain.com/file.extension
Wednesday, April 19, 2023
How to add an additional IP address in Centos 7
Method -1:
Create file /etc/sysconfig/network-scripts/ifcfg-eth0:0 with the following content:
DEVICE=eth0:0ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.11
NETMASK=255.255.255.255
Thursday, April 6, 2023
Sovled ! Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist
# sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
# sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
or
# sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-*
# sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.epel.cloud|g' /etc/yum.repos.d/CentOS-Linux-*
Thursday, March 30, 2023
How to set up VSFTPD Server and FTP Account in AlmaLinux
sudo dnf install vsftpd
sudo mv /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf_original
sudo vi /etc/vsftpd/vsftpd.conf
Add the following code to vsftpd.conf:
-------------------------------
anonymous_enable=NOconnect_from_port_20=YES
dirmessage_enable=YES
local_enable=YES
local_umask=022
listen=NO
listen_ipv6=YES
pam_service_name=vsftpd
userlist_enable=YES
write_enable=YES
xferlog_enable=YES
xferlog_std_format=YES
-------------------------------
cat /etc/vsftpd/vsftpd.conf
sudo firewall-cmd --zone=public --add-service=ftp --permanent
sudo firewall-cmd --reload
sudo systemctl restart vsftpd
sudo useradd -m testftpuser
sudo passwd testftpuser
sudo bash -c "echo TO CHECK WORKING OF FTP > /home/baycombd/FTP_CHECK"
chown -R testftpuser /home/testftpuser
Note: Up to this user can access FTP files via ftp client application like FileZilla
Sunday, March 5, 2023
Remove header and footer text when click print button in Codeigniter
Wednesday, March 1, 2023
Generate specific range of numbers having specific digit in excel
The following function is for generating 8 digit unique number in excel and masked with 123:
=RANDBETWEEN(12300000,12399999)
Replace old IP with New one in Direct Admin
./ipswap.sh Old_IP New_IP for example: ./ipswap.sh 35.224.2.88 104.197.113.37
-
We can install PowerMTA on the server. rpm -ivh /home/PowerMTA-4.0r6.x86_64.rpm You will see the output like this Preparing... #############...
-
Put the following code in a TXT file and save as "file.cmd" then run the cmd file as administrator. @echo off title Activate Micr...
-
Instructions: Copy xf-adesk19 to your Desktop Open terminal (Command+Space and type Terminal and press enter/return key) Paste the followin...