Birendra Kumar Chaudharybiren.hashnode.dev·Dec 17, 2024Basic Linux commands need to know for everyone.1. File and Directory Management: ls ----List files and folders. \= eg: ls cd ----Change directory (folder). \= eg: cd biren pwd ----Show current directory. \=eg: pwd mkdir ----Create a new folder. \=eg: mkdir biren rm ----Delete files or fo...Linux
Ahammed Basha Shaikday-5-of-100-days-challenge.hashnode.dev·Dec 14, 2024Connect to an EC2 Instance Using MobaXtermDay 5 of 100 Days Challenge – Connect to an EC2 Instance Using MobaXterm Effortlessly connecting to an AWS EC2 instance from a Windows laptop can sometimes feel daunting, especially for beginners. On Day 5 of my 100 Days of DevOps Challenge, I explor...ec2
Ansh Balanlinuxfordevops.hashnode.dev·Dec 9, 2024Part 2: Mastering SSH and SCP for DevOpsIn the previous post, we explored the basics of Linux. In this part, we’ll dive into two essential tools for DevOps engineers: SSH (Secure Shell) and SCP (Secure Copy Protocol). These are crucial for securely connecting to servers and transferring fi...ssh
Naushad Khannaushad-khan.hashnode.dev·Oct 7, 2024Day 3 : Basic Linux Commands with a TwistDay 3 of #90DaysOfDevOps Challenge: Basic Linux Commands with a Twist Hey everyone! For Day 3 of my #90DaysOfDevOps challenge, I learned some more Linux commands with fun tasks to practice. Here’s what I did today: 1. View the content of a file with ...1 likeDevops
Mohd Shadanshadan81.hashnode.dev·Aug 18, 2024Essential Linux Commands and Their Functions every DevOps Engineer should know.1. File System Operations- ls: List files and directories- cd: Change to another directory- mkdir: Create new directories- rm: Remove files or directories 2. File Permissions- chmod: Change file permissions- chown: Change file ownership- chgrp: Cha...Devops
Khushbu Koradiyakhushbuk0714.hashnode.dev·Jul 6, 2024Day 3 Task: Basic Linux Commands with a TwistTask: What are the Linux commands to View the content of a file and display line numbers. cat -n <filename> Change the access permissions of files to make them readable, writable, and executable by the owner only. Check the last 10 commands y...Linux
Utkarsh Guptautkarsh80.hashnode.dev·May 31, 2024Linux (File Permissions and Access Control Lists.)File Permissions and Access Control Lists. 1. Create a simple file and do ls -ltr to see the details of the files. - Here you can see, in the above screenshot, I have created a simple script file and given the permissions to the specific file as “77...Linux
Rahul Guptacloudopsrahul.hashnode.dev·May 2, 2024Day 3 - Basic Linux CommandsBasic Linux Commands: A Beginner's Guide Learning Linux can be overwhelming for new users. In this guide, I’ll cover some basic Linux commands to get you started with common tasks such as viewing files, changing permissions, and manipulating text fil...Linux
Ruchi Lamichhaneruchi77.hashnode.dev·Mar 27, 2024Basic Linux CommandsIntroduction to Linux Linux is an open-source operating system kernel.It is suitable for diverse environments. It has a powerful command-line interface (CLI) alongside user-friendly graphical interfaces. Multiuser and Multitasking: It supports mul...7 likes·63 readsLinux
Piyush Agrawalpiyushagrawal.hashnode.dev·Feb 27, 2024Linux CommandsCertainly! Here are some common Linux commands: Navigating File System: cd: Change directory ls: List directory contents pwd: Print working directory File Operations: cp: Copy files or directories mv: Move or rename files or directories rm:...Linux