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

Using Linux, Vim, and Markdown for Image Insertion

Using Linux, Vim, and Markdown for Image Insertion

Continuing from the previous article, this time I explore how to conveniently insert images while writing Markdown content in Vim, as well as how to better browse the content. Fortunately, there are existing plugins that allow you to directly copy the content of screenshots into Markdown. Copying and pasting screenshots into documents is an easy … Read more

Linux Basics: A Comprehensive Guide to the Vim Editor

Introduction During the use of Linux, we often need to edit configuration files, write scripts, or modify log files. The most commonly used, classic, and also the most “love-hate” tool for beginners is the Vim editor. Vim is one of the most important text editors in the Linux world. It is lightweight, powerful, and almost … Read more

A Journey Through Linux for Cybersecurity – Text Editors

You are a cybersecurity expert who has just infiltrated a mysterious server, and your only tool is the Vim editor in the terminal. Your mission is to view and modify critical files without triggering any alarms, and then quietly withdraw. 🎮 Level One: Entering the Maze Scene: You have successfully connected to the target server … Read more

Creating a Simple and Practical Vim on Linux

Creating a Simple and Practical Vim on Linux

“ I have seen many articles about Vim configurations online, and I have also written some simple Vim configuration tutorials myself. However, I think this article is well-written, so after communicating with the author, I decided to repost it. I hope this Vim configuration article can be helpful to everyone.” I have selected several plugins … Read more

Post-Penetration on Linux: Various Methods for Credential Collection (Part 1)

Post-Penetration on Linux: Various Methods for Credential Collection (Part 1)

tcpdump Use tcpdump to capture traffic from all network interfaces in real-time, filtering and saving when sensitive information is detected in the traffic. tcpdump -i any -s 0 -A -n -l |egrep -i "Host:|Authorization:|password:|password=" • -i any: Listen to traffic on all network interfaces; • -s 0: Capture full packets (no truncation); • -A: Display … Read more

Comprehensive Guide to Linux vi/vim

Comprehensive Guide to Linux vi/vim

Linux vi/vim All Unix-like systems come with the vi text editor built-in, while other text editors may not necessarily be present. However, the editor we use more frequently nowadays is the vim editor. Vim has the capability of program editing, actively distinguishing syntax correctness with font colors, which is convenient for program design. What is … Read more

Enhancing Vim Experience with Rust: Neovide

Enhancing Vim Experience with Rust: Neovide

Clickthe blue text to follow us 1. Core Features and Advantages 1.High-Performance Graphics Rendering •GPU Acceleration: Utilizing Rust’s high-performance features and GPU acceleration technology to achieve smooth interface rendering, especially suitable for large codebases or complex text operations.•Cross-Platform Support: Seamlessly runs on Windows, macOS, and Linux systems, meeting multi-environment development needs. 2.Deep Integration and Extensibility … Read more