Skip to main content

UNIX environment check




Image result for unix environment check



1. How to check the shell you are running?

ps utility can show the current shell you are working with.

>ps

  PID TTY          TIME CMD

 2549 pts/0    00:00:00 bash
 2598 pts/0    00:00:00 ps

2. How to change to superuser / root privilege in unix?

>sudo su -

This command will ask for passoword and once it is give the prompt will also chnage to "#" . Be careful the with root privilege you can modify systems files.

3. How to change password in unix?

Give the command passwd .It will ask for the current password and the new password.

>passwd
Changing password for user.
(current) UNIX password:
Enter new UNIX password:

4. How the check the environment you are working on ?

>hostname

This will display the environment on shell.

5. To display which all users have logged in .

>who
user  :0           2015-04-25 16:35 (:0)user  pts/0        2015-04-25 16:40 (:0)user  pts/16       2015-04-25 17:20 (:0)

The first cloumn is showing the name of user. The second column is showing the device to wich each user's terminal emulator is connected to. The third column is the date and time each user has logged in.


6. To display which terminal I am using and login time.

>who am i
user  pts/16       2015-04-25 17:20 (:0)

Comments

Popular posts from this blog

Pokemon Go download link

Pokemon go has become the buzz word in tech industry now. Nintendo, the Japanese video game company are the creates of this game. Its first of it kind to integrate a game with augmented reality , so people has to go out to real world with there android or iPhone to catch em all . You can download  Pokemon go  from this link. 

UNIX : unpack and pack using tar

Tarball or tar is a utility in linux to unpack or pack the files. Lets say we have a file name hello.tar.gz which is packed and compressed. To unpack the file use the below command > tar xvzf hello.tar.gz This is unpack the compressed tarball file to the directory hello in current location. To pack a list of files to a compressed tarball file , we can follow the below steps. Let say we have the following list of files in Hello directory. > cd Hello > ls helloworld.py README.txt Move back to parent directory and give the below command. > cd .. > tar zcvf hello.tar.gz Hello This will create the compressed tar file in the current location

UNIX : What is /dev/null ?

/dev/null is a file where you can discard the output of the command executed. This file is also called as Bit Bucket. eg : >ls -ltr > /dev/null > Here the output of command ls is never shown on terminal STDOUT. It is redirected to bit bucket. Sometimes we need not display the output as well as error message of command.In this case use the following command. > command > /dev/null 2>&1 The command output is redirected to /dev/null.Also the error output, STDERR (which is called by 2) is redirected to STDOUT (called as 1 ).That means the error will be redirected to /dev/null.