Skip to main content

Posts

Showing posts with the label Linux commands
Kafka Setup with Script Code प्रकाशित: 03 जुलाई 2026 | श्रेणी: DevOps | लेखक: तकनीकी विशेषज्ञ 🌙 Dark Mode Apache Kafka एक शक्तिशाली डेटा स्ट्रीमिंग प्लेटफॉर्म है। यहाँ इसे स्क्रिप्ट कोड के ज़रिए सेटअप करने की पूरी गाइड दी गई है। Twitter LinkedIn WhatsApp चरण 1: सिस्टम जावा अपडेट काफ्का के लिए जावा आवश्यक है, इसे इंस्टॉल करने की स्क्रिप्ट नीचे दी गई है: Copy sudo apt update && sudo apt install default-jdk -y चरण 2: काफ्का डाउनलोड स्क्रिप्ट Copy wget https://apache.org tar -xzf kafka_2.13-3.5.0.tgz cd kafka_2.13-3.5.0 चरण 3: ज़ूकीपर और सर्वर स्टार्ट टर्मिनल 1 में ज़ूकीपर चलाएं: ...

Most important and useful 1001 Linux Commands for DevOps Engineers

  If you are looking for an exhaustive reference containing hundreds of Linux commands, you can check out the comprehensive "1001 Linux Commands" document available on Scribd . Alternatively, you can download the highly regarded, full-length book "The Linux Command Line" PDF directly from the Warsaw University of Technology . [ 1 , 2 , 3 ] While memorizing 1000 commands is unnecessary, mastering the core foundational utilities is vital. [ 1 , 2 ] 📂 File & Directory Management [ 1 ] ls : Lists all files and folders inside the current directory. cd : Changes your current working directory path. pwd : Displays the exact folder path you are currently in. mkdir : Creates a brand new, empty directory. rmdir : Deletes an empty directory from the system. cp : Copies files or directories to a different location. mv : Moves or renames files and directories. rm : Permanently removes files or directory trees. touch : Creates an empty file or updates timestamps. ln : Creat...