Common Linux Commands for Scientific Computing

Common Linux Commands for Scientific Computing

When performing calculations on a Linux system, we often encounter the use of Linux shell commands. Below is a summary of commonly used Linux shell commands and shell script task submission cases that I have compiled during my calculations. I hope this is helpful to readers. Shell: Introduction to VIM Editor Usage Introduction to Linux … Read more

Daily Linux Command: Redirection

Do you need to memorize Linux commands? Daily Linux Command: man In the previous article, we learned about pipes (|), where the concept of redirection was mentioned but not elaborated. In this article, we will delve into this concept in detail. By default, the shell sets the standard input source of a program to the … Read more

Daily Linux Command: cd and pwd

Daily Linux Command: cd and pwd

Daily Linux Command: manDaily Linux Command: dateToday we will mainly learn about the cd command, which is used to change the current working directory of the shell. It can be said to be one of the most commonly used commands in command line operations.✦•———-Basic Usage———-•✦ As we all know, the Linux file system adopts a … Read more

Linux (2): Using the Linux Command Manual

Linux (2): Using the Linux Command Manual

1. Core Purpose & Concepts Core Purpose:<span>man</span> (manual) command is the gateway to the built-in offline documentation system of Linux, addressing the core issue of “not having to remember every command’s usage and options,” providing you with an authoritative and quick reference source. Core Terminology: Man Page: An independent document page for a single command, … Read more

Do Not Confuse Shell Commands with Linux Commands!

Do Not Confuse Shell Commands with Linux Commands!

Under the black curtain of the terminal, Shell commands and Linux commands are like twin flames, intertwined yet distinctly characterized. Beginners often confuse the two, but in reality, they are mirror projections of ‘environment’ and ‘system’. 1. Definition Distinction: Interpreter vs Kernel Shell commands: Instructions executed through a Shell interpreter (such as Bash/Zsh), essentially serving … Read more

Efficient Linux Commands for Analyzing Log Files During the May Day Holiday

Efficient Linux Commands for Analyzing Log Files During the May Day Holiday

Hello everyone, this is Linux Enthusiast Engineer. In this article, I will share 20 hardcore commands for efficiently analyzing log files using Shell. During this May Day holiday, I used these commands to troubleshoot 99% of log issues, which are simple yet effective. Let’s take a look! Source: https://segmentfault.com/a/1190000009745139 I run a small website on … Read more

Ansible Modules for Host Connectivity and Command Execution

Ansible Modules for Host Connectivity and Command Execution

Check Host Reachability and Execute Commands Check Host Network Connectivity <span>ansible.builtin.ping</span>: • <span>data</span>: The content returned when the module executes successfully (default is <span>pong</span>, and when <span>data=crash</span>, the module will always be treated as a failure) – name: Host test ansible.builtin.ping: data: "Host OK!" – name: Induce an exception to see what happens ansible.builtin.ping: data: … Read more

Comprehensive Guide to Linux Commands: Become a Command Line Expert

Linux | Red Hat Certified | IT Technology | Operations Engineer 👇 Join our technical exchange QQ group with the note [Public Account] for faster access 1. ls Command Syntax: ls [options] [directory or file] Function: For directories, this command lists all subdirectories and files within that directory. For files, it lists the file names … Read more