ACAbhishek Chandrainabhishekchandra.hashnode.dev·Jun 1 · 3 min readLinux Processes, Archiving, and Ubuntu CommandsUnderstanding Processes in Linux A process is simply a program that is running on the system. At any time, Linux can have many processes running, sleeping, or waiting for resources. Viewing Running Pr00
ACAbhishek Chandrainabhishekchandra.hashnode.dev·May 28 · 4 min readSoftware / Package Management and Services in LinuxChecking OS Information To view Linux OS details: cat /etc/os-release Example distributions: CentOS RHEL Fedora Ubuntu RPM and DPKG Linux distributions use different package managers. RPM Base00
ACAbhishek Chandrainabhishekchandra.hashnode.dev·May 27 · 2 min readUnderstanding `sudo` in LinuxWhat is sudo? sudo allows a normal user to execute commands that require root user permissions. It is commonly used for administrative tasks in Linux systems. Example: sudo useradd test Without sudo,00
ACAbhishek Chandrainabhishekchandra.hashnode.dev·May 25 · 3 min readLinux - Users & Groups, and File PermissionsUsers and Groups in Linux Users and groups help control access to files and resources. Every file belongs to a user and a group. Every user has a unique UID (User ID). User details are stored in: /00
ACAbhishek Chandrainabhishekchandra.hashnode.dev·May 23 · 7 min readLinux Basics – Vim Editor, File Types, Filtering & I/O Redirectionvim editor vi stands for Visual Display Editorvim stands for Visual Display Editor Improved Vim is a command-line text editor used in Linux.Some other editors are nano, gedit, and emacs. vim Modes Co00