Tag: linux

  • How to Create Symlink via CLI in Unix – CentOS – Ubuntu – Linux

    Symbolic link or symlink ( or sometime called soft link ) is a file that only exists as a reference for another file or directory. In order to create symlink via command link interface (CLI) in an Unix based system you will need to use ln command. ln -s /path/to/file /path/to/symlink ln stands for Link.

  • How to Extract tar.gz file in Unix/Linux

    How to Extract tar.gz file in Unix/Linux

    When you are in a unix based system like Ubuntu, CentOS etc. You will need to know how you can extract a tar.gz file using command line interface (CLI) Take an example, we have a file myFile.tar.gz cd into the same directory as the file. Now run the command tar -xzf myFile.tar.gz This will create […]