Poorvashapoorva.hashnode.dev·Nov 24, 2023Linux commands for DevOps EngineerDevOps engineers often work with various Linux commands to manage servers, deploy applications, and automate tasks. Here is a list of commonly used Linux commands for DevOps: File and Directory Management: ls: List files and directories. cd: Chang...Discuss·30 readsLinux
Pratik MaliforThe Tech Deckthetechdeck.hashnode.dev·Nov 12, 2023A Beginner's Guide to Using the GNU nano Text Editor on LinuxAs a Linux beginner, one of the first things you'll need to learn is how to create and edit text files from the command line. While Linux offers several powerful text editors, GNU nano is one of the simplest to get started with. In this beginner's gu...DiscussLinuxLinux
Diviyam Pathakdiviyampathak.hashnode.dev·Nov 6, 2023File System : Developers perspectiveBasic System Calls This is a continuation of my good friend and esteemed batchmate Pranav Venkatesh's article on File System introduction. https://daiswap.hashnode.dev/exploring-file-systems-in-operating-systems We will bring more basic and advance...Discuss·1 likefile system
Pranav Venkateshdaiswap.hashnode.dev·Nov 4, 2023Exploring File Systems in Operating SystemsWhenever you're interacting with your computer, smartphone, or any other electronic device, you're essentially managing files, whether you're aware of it or not. In every interaction with your computer, smartphone, or any electronic gadget, the digit...Discuss·1 likefile system
Siddhartha Khuntiasidkhuntia.hashnode.dev·Nov 2, 2023What is a B+tree?These are self-balancing data structures used to search, sequential access, insert, and delete data quickly. You might be wondering binary search of the ordered list is also quick, but here is the thing suppose if the array size is 1,000,000, then th...DiscussDBMS
Faizan devopswithfaizan.hashnode.dev·Oct 16, 2023Exploring Linux: The Yummy Recipe for Your Computer Magic!Welcome, curious minds! Today, we're diving into the magical world of Linux commands. Imagine it as a cooking adventure where we're preparing some tech delicacies! Let's start with our essential ingredients: Creating Single Directory Using Mkdir Lin...Discuss·1 like·31 readsLinux
Sunny Rajmongoose.hashnode.dev·Oct 12, 2023File System In Nodejscreate the file and add text inside it When we use the file system first we import the file system from the inbuilt fs modules. const sunny = require("fs"); fs is an inbuilt module in the file system. If you want to create a file and add some text i...Discuss·1 likefile system
Neil Patelblog.neilbpatel.com·Oct 9, 2023Manipulating Files between a WSL Instance and Host MachineAlthough WSL (Windows Subsystem for Linux) changed the game for developing on Windows, I inevitably will come across pain points in my workflow. One issue I frequently encountered was manipulating files between the host machine's drives and a WSL ins...Discuss·30 readsWSL
Nandayala Saipraveensai-praveen.hashnode.dev·Oct 5, 2023Understanding the Linux File SystemWe must understand that the Linux file system follows a hierarchical tree structure. For example, we have a /root folder like a tree that contains other files attached to the root. Each file has its purpose and also has other files and this hierarchy...DiscussLinux
Manish Kumar Guptaheismanish.hashnode.dev·Sep 30, 2023TypeScript File Handling with Express.js: A Comprehensive GuideIn the world of backend development, managing files is a fundamental task. Whether it's reading data from files, uploading user-generated content, or organizing your server's storage, understanding file handling is essential. In this guide, we'll exp...DiscussTypeScript