Please enable JavaScript.
Coggle requires JavaScript to display documents.
LINUX COMMANDS, ls : shows the all items in the directory (in bare format…
-
ls : shows the all items in the directory (in bare format where we won’t be able to view details like file types, size, modified date and time, permission and links etc.)
-
ls -l : shows file or directory, size, modified date and time, file or folder name and owner of file and its permission.
-
-
-
-
-
ls -S : Sort by file size, Largest file first
-
-
Other Operations
-
-
-
-
-
-
-
md5sum:computes and checks an MD5 message digest (the md5sum is designed to verify data integrity using MD5 (Message Digest Algorithm 5))
-
Directory Operations
-
-
-
-
mkdir-p: no error if existing, makes parent directories as needed
Network
-
-
-
nslookup:use to find the IP address that corresponds to a host, or the domain name that corresponds to an IP address
-
-
File viewing
-
-
less:displays the contents of a file or a command output, one page at a time
-
-