Yash VarmaforXFusionCorp blogxfusioncorp.hashnode.dev·Apr 18, 2024KodeKloud Engineer task: Create a user in LinuxStep 1: Connect to the App Server ssh app_server_username@server_name # example ssh tony@stapp01 Step 2: Switch to root User sudo su Step 3: Add the asked user, set the user UID as asked, and set the directory where the user will be created userad...DiscussLinux
Surajblog.devsuraj.me·Feb 14, 2024Linux System AdministrationLinux file editor(vi): A text editor is a program that enables you to create and manipulate data (text) in a Linux file There are several standard text editors available on most Linux systems vi - visual editor ed - standard line editor ex - ext...Discuss·10 likes·55 readsDevOpsLinux
MOHD ABDUL JAMEELjameel305.hashnode.dev·Sep 2, 2023Meet MOHD ABDUL JAMEEL: An ECE Student Venturing into the World of CybersecurityIntroduction Hello, everyone! I'm MOHD ABDUL JAMEEL, a third-year student pursuing Electronics and Communication Engineering (ECE) at Osmania University. While I have a strong foundation in electronics, my true passion lies in the exciting world of c...Discuss·27 reads#cybersecurity
Varun Margamvarunmargam.hashnode.dev·Jul 23, 2023Exploring Advanced Linux Commands (Part 2)📍Introduction 📚 In this 2-part blog series, we'll explore some more advanced Linux commands! After learning and mastering basic Linux commands and getting introduced to advanced Linux in the previous blog we are now ready to learn some advanced Lin...Discuss·1 like·81 reads90DaysOfDevOps🚀Day7
Wai Yan Pyae Sonewaiyanpyaesone.hashnode.dev·Jul 12, 2023How to set up an NFS on RHEL 9Prerequisites 2 RHEL vms Linux System Administration RHEL subscription / DVD iso to install nfs-utils Introduction ဒီ post မှာ NFS server တစ်ခုဘယ်လို set-up လုပ်မလဲ၊ NFS client နဲဘယ်လို ချိတ်ဆက်ပြီးအလုပ်လုပ်မလဲဆိုတာတွေကိုလေ့လာသွားမှာဖြစ်ပါတယ်။ T...Discuss·198 readsRHEL9
Goutam Kumargoutamdevops.hashnode.dev·Apr 29, 202390DaysOfDevOps:Day#5Example 1: When the script is executed as ./createDirectories.sh day 1 90 vim createDirectories.sh #!/bin/bash cd /home/kali/advshell start=$1 stop=$2 mkdir $(eval echo day{$start..$stop}) then it creates 90 directories as day1 day2 day3 .... day90 E...DiscussTrainWithShubham