How-to-Get-Started-with-Shell-Scripting-in-Linux

Symbol is called a bang. Where as /bin/sh & /bin/bash shows that commands to be executed either sh or bash shell. Below are the content of myscript.sh

2022-10-15


How-to-Set-Static-IP-Address-on-Ubuntu-Server-2204

$ sudo netplan apply Run following ip command to view the ip address on interfaceens33 is the interface name addresses are used to set the static ip n

2022-10-12


Sending-Email-via-Amazon-SES-through-a-Shell-Script-–-TecAdmin

${SMTP_PORT} \ -o tls=yes \ -xu ${SMTP_USER} \ -xp ${SMTP_PASS} In the above scriptyou will learn to send emails via Amazon SES or any other SMTP prov

2022-10-11


How-to-Install-SendEmail-in-Linux-–-TecAdmin

Type sendemail on terminal and hit enter to get more details about command line parameters. Conclusion This tutorial helped you to install SendEmail c

2022-10-11



Shell-Script-to-Check-Github-Public-Repositories-And-Notify-–-TecAdmin

then echo -e "Dear Admin \n" > ${MAIL_LOG} echo -e "We found few public repositories in your GitHub account (${GITHUB_USER}) \n" >> ${MAIL_LOG} count=

2022-10-10


How-to-Dual-Boot-Linux-Mint-21-alongside-Windows-11

A bootable USB drive ( 8GB or more ) of Linux Mint 21. To create a bootable driveyou a GRUB menu will be displayed as shown. The first entry allows yo

2022-10-10


How-to-Compare-Strings-in-Bash-–-TecAdmin

/usr/bin/env /bash STR1="TecAdmin" STR2="TecAdmin" if [ "$STR1" == "$STR2" ] then echo "Both strings are equal" else echo "Both strings are not equal"

2022-10-09


How-to-Install-VMware-Workstation-Pro-on-Debian-11-10

$ sudo apt install build-essential gcc perl bzip2 dkms make linux-headers-$(uname -r) -y 2) Download VMware Workstation Pro Bundle File To Download VM

2022-10-09



(Fixed)-AWS-Congnito-User-Status-Shows-FORCE_CHANGE_PASSWORD-–-TecAdmin

AWS Cognito User with FORCE_CHANGE_PASSWORD Status The admin-set-user-password command in AWS CLI allows us to set a user’s password with the administ

2022-10-09


How-to-Create-LVM-Partition-Step-by-Step-in-Linux

so choose the file system type according to your setup and requirement. Run following command to format LVM partition as ext4 file system. $ sudo mkfs

2022-10-08