🖥️ Samba Server in Linux
✅ What is Samba Server? Samba is an open-source software that allows Linux/Unix systems to share files and printers with Windows systems using the SMB/CIFS protocol. 👉 In simple words:Samba…
My Blog
✅ What is Samba Server? Samba is an open-source software that allows Linux/Unix systems to share files and printers with Windows systems using the SMB/CIFS protocol. 👉 In simple words:Samba…
LDAP (Lightweight Directory Access Protocol) is a protocol used to store and manage directory information such as: An LDAP service allows systems and applications to authenticate users and retrieve directory…
Creating a user in Linux is done using terminal commands. You must have root or sudo privileges. 🟢 1️⃣ Create a New User Account 🔹 Command: sudo useradd username 📌…
LILO and GRUB are boot loaders used in Linux systems.A boot loader is a small program that loads the operating system kernel into memory when the computer starts. 1️⃣ LILO…
🐧 1️⃣ Linux Startup Process Linux startup is the sequence of steps that occur from power on until the login screen appears. Step 1: BIOS / UEFI Step 2: Boot…
This mini project allows: 1️⃣ Add User2️⃣ Delete User3️⃣ Modify User4️⃣ View User Info5️⃣ List All Users6️⃣ Exit ⚠️ Note: Must run as root user (use sudo ./script.sh) Script: user_management.sh…
This mini project stores student data in a file (students.txt) and provides options to: 1️⃣ Add Record2️⃣ View All Records3️⃣ Search Record4️⃣ Delete Record5️⃣ Update Record6️⃣ Exit 🗂️ Data Format…
1️⃣ Create File2️⃣ Delete File3️⃣ View File Content4️⃣ Rename File5️⃣ Exit Script: file_menu.sh ✅ How to Run 🎯 Sample Output 🔥 Important Exam Points
👉 Create Folder | Delete Folder | Exit This is a simple exam-oriented menu-driven shell script using case statement. 🖥️ Script: folder_menu.sh ✅ How to Run 🎯 Sample Output
!/bin/bash echo “Enter numbers separated by space:”read -a arr n=${#arr} while truedoecho “————————“echo “1. Sort Ascending”echo “2. Sort Descending”echo “3. Exit”echo “Enter your choice:”read choice done Sample Output Enter numbers…