Skip to content
yona on air
Go back

Linux Fundamentals (1)

Updated:
Edit page

My focus is on CALMS. I am building better understanding of DevOps as driver for the organization. I led the DevOps Academy at EPAM Systems Poland, where we were shaping new engineers to be professionals. Currently I am Cloud Solution Architect at Tameshi.

I am devoted to Serverless and CI/CD.” image=“https://storage.googleapis.com/killercoda-assets-europe1/meta/generated/pawelpiwosz.png?v=1775433600” sitename=“killercoda.com” favicon=“https://www.google.com/s2/favicons?domain=killercoda.com&sz=32” data-type=“bookmark”>

1. Syntax

Linux command is composed of the command and the argument

ls -l

- : one letter argument ex. l

-- : more than one letter argument ⇒ commonly in English words

root@ubuntu:~$ touch try1 try2 try01
root@ubuntu:~$ ls try*
try01  try1  try2
root@ubuntu:~$ ls try?
try1  try2

2. times in Linux

atime : the last time when file was accessed

mtime : last modification time

ctime : last metadata modification time

ex. permissions change, location of the file, etc

3. basic commands

ls : show lists

clear : clear all window

man : show a document for the command

mkdir : create directories

cd : short for Change Directory

pwd : show current work directory

rmdir : remove the directory

touch : create empty file

grep : search for given pattern in the output

⇒ ex. grep case .bashrc : search for pattern case in a file .bashrc

wc : a utility for counting words, newlines, bytes.

sort sort the output in alphabetical order

man document


Edit page
Share this post on:

Next Post
[Docker] Get Started