Adefisayo Adejumoadeoluwafisayomi.hashnode.dev·Nov 14, 2024Got Stuck Installing Klayr Commander on the Mac?Installing klayr-commander on a Mac with an M1 or M2 chip can be a journey full of unexpected errors and dependencies. After a long battle with npm, yarn, node-gyp, and even distutils, I've compiled a guide to help you skip the hassle. Follow these s...DiscussmacOS
Muhammedfor25000cheats.com25000cheats.com·Nov 14, 2024How to Quickly Navigate Directories in Ubuntu Terminal (Command Line)Navigating directories in Ubuntu's terminal can be smooth and speedy with a few simple commands. If you’re in one folder but need to jump to another, just use cd followed by the path. For example, to get to your home directory, type cd ~. If you’re j...DiscussUbuntu
Masum Kazimasumkazi.hashnode.dev·Nov 10, 2024Essential Linux commands for CTF playersSome essential Linux commands you should learn to navigate, investigate, and manipulate files effectively for Capture The Flag (CTF) challenges: 1. Basic Navigation and File Management ls: List files and directories. ls -la: List all files, includi...DiscussLinux
Debajyati Deydebajyatidey.hashnode.dev·Nov 9, 2024FeaturedTop 9 Rust Based CLI Tools You Need to Try Now!Summary of the Content Prior to Reading the Article In this article, we explore a selection of Rust-based command line tools that enhance the Linux ecosystem with improved performance and modern features. These tools, including exa, fd, bat, ripgrep...Arindam Majumder and 4 others are discussing this5 people are discussing thisDiscuss·88 likes·272 readsLinuxcliVery informative!! 10
Sanjoy Sahasanjoysblog.hashnode.dev·Nov 6, 2024Introduction to Linux Command Line: 20 Commands Every Beginner Should KnowHere is a beginner-friendly blog on essential Linux commands for beginners to start with Linux command line. Introduction The Linux command line might seem a little odd at first, but it’s a powerful tool that gives you full control over your system....DiscussLinux
Vidhi ChadhaforVidhi Chadhavidhichadha25.hashnode.dev·Nov 5, 2024🔍 Unlocking the Power of Linux: Mastering grep and File Permissions 🚀Introduction Welcome to another deep dive into the vast world of Linux! 🌌 Have you ever felt like finding something in your files was like searching for a needle in a haystack? Or perhaps you’ve struggled to manage file permissions in a shared envir...DiscussLinux
kaverappa c kforDAILY_PERSONAL_TECH EXPERIENCEdailytec.hashnode.dev·Nov 5, 2024Learn to Set Up and Apply Custom Word Count Commands in PowerShellThis took me lot to understand and implement custom name to set up unix commands in windows command prompt instead of using [node index.js] I had to run it as [ccwc] I got to know about the batch file and its uses filename.bat Creating custom command...DiscussJavaScript
Victor O. Alvarezspacecodecinema.com·Nov 5, 2024PKGSRC for macOSPKGSRC’s website describe pkgsrc as: Portable Package Management pkgsrc is a framework for building over 25,000 open source software packages. It is the native package manager on SmartOS, NetBSD, and Minix, and is portable across 23 different operat...DiscussTechnologynetbsd
Anurag Hatoleanuraghatole.hashnode.dev·Nov 2, 2024kubectl - Essential CommandsKubernetes is an essential tool for modern cloud-native applications, and kubectl is the command-line interface for interacting with Kubernetes clusters. This guide covers various kubectl commands categorized by functionality, providing you with a so...Discuss·4 likes·56 readsKubernetes
Fauzeyafauzeya.hashnode.dev·Oct 28, 2024Day 9 Shell Scripting Challenge Directory Backup with Rotation📂🔄Task: Shell Scripting Challenge - Directory Backup with Rotation. This script will create timestamped backups of a specified directory and manage the backups by keeping only the last three. Backup Script: vim backup_with_rotation.sh #!/bin/bash << r...Discuss·2 likes·28 reads#90daysofdevops