Week-2: Linux / UNIX Operativni sistemi
Osnovne Linux/UNIX komande
$ man ssh #Manual for ssh command $ man
$ ssh [ip or hostname] #Secure shell, an encrypted network protocol #allowing for remote login and command execution
$ ssh -vvv #verbose for troubleshooting access
$ pwd #displays the current directory
$ sudo su - #Switch to root user
$ whoami #Displays your logged in user id
$ id #Displays your user id and group id
$ hostnamectl #Displays your hostname
$ cd / #Change directory to the root of the filesystem
$ cd target #Change directory to “target” directory
$ cd ~ #Change directory to your user home directory
$ cp file1 file2 #Copy file1 to file2
$ cp -r dir1 dir2 #Copy directory dir1 to dir2
$ mv file1 file2 #Move file1 to file2, file1 is deleted
$ rm file1 #Remove file1
$ rm -r dir1 #Remove directory dir1 and all its contentsbashStruktura Linux/Unix file sistema
Snimci predavanja
DevOps Mentorship Program - Week 2 - Linux / UNIX commands (#tier-1-group-1)
DevOps Mentorship Program - Week 2 - Linux / UNIX commands (#tier-1-group-2)
Materijali za ucenje
Dodatni materijali
Last updated