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 เคฎें เค़ूเคीเคชเคฐ เคเคฒाเคं: ...
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: Creates a symbolic or hard link to a file. [1, 2, 3, 4, 5]
๐ Text Processing & Viewing
cat: Outputs or concatenates the entire contents of a file.less: Opens a file for interactive, page-by-page viewing.head: Displays the first few lines of a text file.tail: Outputs the last few lines of a file.grep: Searches files for specific text patterns or strings.awk: Highly powerful pattern scanning and processing language.sed: Stream editor used to filter and transform text data.cut: Slices out selected sections from lines of files.sort: Sorts lines of text files alphabetically or numerically.wc: Counts the total lines, words, and bytes in files. [1, 2, 3, 4, 5, 6, 7]
⚙️ System Information & Monitoring
uname: Prints detailed system, kernel, and OS architecture information.uptime: Shows how long the machine has been running smoothly.top: Displays active system processes and real-time resource use.htop: Provides an interactive, user-friendly system process viewer.df: Reports available and used disk space on filesystems.du: Estimates and displays file and directory space usage.free: Checks the system's total used and available RAM.hostname: Shows or configures the network name of the system.dmesg: Prints the kernel ring buffer diagnostic messages.ps: Captures a snapshot of currently running processes. [1, 2, 3, 4, 5, 6, 7, 8]
๐ Networking & File Transfer
ip: Administers network interfaces, routing, and IP addresses.ping: Tests network connectivity to a specific remote host.wget: Downloads files directly from the web using HTTP/FTP.curl: Transfers data to or from a network server.ssh: Securely connects to and logs into remote servers.scp: Copies files securely between hosts over SSH networks.netstat: Prints network connections, routing tables, and interface statistics.nslookup: Queries internet name servers interactively for DNS records.dig: Gathers detailed DNS information from domain names.ifconfig: Legacy tool used to view and configure network interfaces. [1, 2, 3, 4, 5]
๐ Permissions & User Management
chmod: Modifies file or directory read, write, and execute permissions.chown: Adjusts file or directory owners and group ownerships.sudo: Executes a terminal command with elevated administrative privileges.useradd: Creates a brand new user account on the machine.usermod: Modifies an existing user account's properties.userdel: Deletes a user account and associated system files.passwd: Updates or changes a user account's login password.whoami: Displays the exact username of the current session.id: Prints the real user and group ID numbers.chgrp: Changes the group ownership of files or folders. [1, 2, 3, 4, 5, 6]
๐ฆ Archiving & Compression
tar: Creates, maintains, and extracts tape archive file collections.gzip: Compresses files using the standard GNU zip algorithm.gunzip: Decompresses files previously compressed using gzip utility.zip: Packages and compresses files into a zip archive structure.unzip: Extracts packed files from a standard zip archive file. [1, 2, 3, 4, 5]
๐ ️ Official Quick-Reference Guides
For shorter, printer-friendly reference options to keep on your desk, you can save these verified official sheets: [1]
- Ubuntu CLI Cheat Sheet: Excellent overview for debian-based operating systems.
- Red Hat Developer Cheat Sheet: A clean, highly professional guide tailored for developers. [1, 2]
Comments
Post a Comment