Linux Commands for freshers and experienced
Linux Basic Commands Basic commands Text handling system administration Text Processing Process Management Archival Network File Systems Advanced Commands Linux with Devops interview Questions 1. Basic commands #mkdir = create folder #mkdir /foldername = create folder in / #rmdir = empty folder delete #rm -rf foldername = delete any folder #rm filename = delete file #date = show date #time = show time #cd .. = change directory #pwd = show path #ls = list directory #ls -a = show hidden file #touch = create blank file #history = show commands history #history -c = clear commands history #cal = show calander #cal anyyear = show year calander #useradd username = add user #passwd username = set user password #userdel username = delete user account #userdel -r username = delete user account with all files #su - username = login user in terminal #useradd -s /sbin/nologin usern...