Interview Questions And Answers

Q: - Write a command to find all of the files which have been accessed within the last 30 days.

find / -type f -atime -30 > filename.txt

Submitted By:-Deepak            Email-ID: -deepakrana336@gmail.com

Q: - What is a zombie?

Zombie is a process state when the child dies before the parent process. In this case the structural information of the process is still in the process table.

Submitted By:- Deepak            Email-ID: -deepakrana336@gmail.com

Q: - What daemon is responsible for tracking events on your system?

syslogd

Submitted By:- Deepak            Email-ID: -deepakrana336@gmail.com

 

1
2