VMVinay Mouryainvinaymourya.hashnode.dev·Mar 25, 2024 · 3 min readWildcards in LinuxWildcards in Linux are special characters that can be used to represent other characters. They are often used in shell commands to execute commands that display results. Wildcards are also used in regular expressions to match patterns in the system. ...00
VMVinay Mouryainvinaymourya.hashnode.dev·Mar 24, 2024 · 1 min readFile Names in Linux LINUX permits file names to use most characters, but avoid spaces, tabs and characters that have a special meaning to the shell, such as: & ; ( ) | ? \ ' " ` [ ] { } < > $ - ! / Case Sensitivity: uppercase and lowercase are not the same! These...00
VMVinay Mouryainvinaymourya.hashnode.dev·Mar 24, 2024 · 1 min readLinux file system hierarchy1. / – Root Every single file and directory starts from the root directory. Only root user has write privilege under this directory. Please note that /root is root user’s home directory, which is not same as /. 2. /bin – User Binaries Contains ...00
VMVinay Mouryainvinaymourya.hashnode.dev·Mar 24, 2024 · 2 min readLinux File SystemA file system is a logical collection of files on a partition or disk. A partition is a container for information and can span an entire hard drive if desired. Your hard drive can have various partitions which usually contains only one file system,...00
VMVinay Mouryainvinaymourya.hashnode.dev·Mar 24, 2024 · 2 min readLinux StructureLinux is a layered operating system. The innermost layer is the hardware that provides the services for the OS. The operating system, referred to in Linux as the kernel, interacts directly with the hardware and provides the services to the user progr...00