Free Hosting Tutorials

Free Hosting Tutorials

 To list all processes which are started by your user, you can use

Procedure to change permissions of files/folders using chmod command:

SYNTAX:  chmod OPTION FILE NAME

CHMOD can also to attributed by using Numeric Permissions:

400 read by owner
040 read by group
004 read by anybody (other)
200 write by owner
020 write by group
002 write by anybody
100 execute by owner
010 execute by group
001 execute by anybody

eg: chmod 644 test.htm

In some cases you might need to stop a certain process. The graceful way to do this is to send a SIGHUP (or SIGTERM) signal to the process and ask it politely to stop itself. To do this you can use kill -15 PID

  • Most Popular Tutorials