You are on page 1of 3

NiC IT Academy

Unix/Linux commands for Informatica Developer


Day - 1
You can download free Linux VM Images here: https://www.linuxvmimages.com/

Un: Ubuntu

Pw: Ubuntu

Minimum 6 GB RAM/8 GB RAM

Online Linux terminal: https://www.masswerk.at/jsuix/

Download VMWare Workstation player: https://www.vmware.com/ca/products/workstation-


player/workstation-player-evaluation.html

If any Installation error: how to enable virtualization in the bios settings

https://www.sony-asia.com/electronics/support/articles/S500016173

What is Winscp:

WinSCP is an open source free SFTP client, FTP client, WebDAV client, S3 client and SCP client for
Windows. Its main function is file transfer between a local and a remote computer. Beyond this, WinSCP
offers scripting and basic file manager functionality.

https://www.siteground.com/kb/winscp/

What is Putty:

PuTTY is a free and open-source terminal emulator, serial console and network file transfer application.
It supports several network protocols, including SCP, SSH, Telnet, rlogin, and raw socket connection.

Directory commands:

NiC IT Academy nicitacademy@gmail.com


 mkdir
 cd
 rmdir

mkdir:

 mkdir -p first/second/third

If the first and second directories do not exist, due to the -p option, mkdir will create
these directories for us. If we do not specify the -p option, and request the creation of
directories, where parent directory doesn’t exist, we will get the following output

 mkdir -m a=rwx [directories]

The above syntax specifies that the directories created give access to all the users to
read from, write to and execute the contents of the created directories. You can use
‘a=r’ to only allow all the users to read from the directories and so on.
mkdir -m 755 /home/demo/sub1/Test

cd: command is used to change the directory:

 cd - take to the home directory

 cd .. - takes to the parent directory

 cd / - takes to the root directory

rmdir: command removes directory

 Removes project1 directory in the current directory

▫ rmdir project1

 Remove multiple directories

▫ rmdir pos1 pos2

 Remove the directory recursively

▫ rmdir –p dir1/dir2/dir3

File commands:
 cat

NiC IT Academy nicitacademy@gmail.com


 cp
 mv
 rm

cat

Creating the new file

Display content of the file

Concatenating more than one file

Appending data to the existing file

cp - Copy contents from a file to another file(source to destination)

mv

Renaming a file(changing name of the file)

Renaming a directory

Moves files from one directory to another directory

rm - Delete/remove a file or directory (only if directory is empty).

NiC IT Academy nicitacademy@gmail.com

You might also like