What is the command to see all the processes are working in
the last 30 days?
Answers were Sorted based on User's Feedback
We can use the find command on processes by using File
system /proc.
# cd /proc
# find . -type d -atime -30
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravi
use uptime to find out how long the system has been run
without rebooting.
ac -d gives the usage of the system for the available wtmp
files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pramod
ps -aef can also show the date in which process started. you can check with top command too.
| Is This Answer Correct ? | 0 Yes | 0 No |
find / -type f -atime -30 > December.files
This command will find all the files under root, which is
‘/’, with file type is file. ‘-atime -30′ will give all the
files accessed less than 30 days ago. And the output will
put into a file call December.files.
| Is This Answer Correct ? | 9 Yes | 10 No |
Answer / abhishek vanarase
See the all command during within 30 day as type 'history'
| Is This Answer Correct ? | 9 Yes | 18 No |
How to hide the partition in GRUB booting? (This technique is required when you have more that one Windows system on different partitions of the same disk, let us say the first and second partitions of the first hard drive, to boot from the first partition you must hide the second one)
How can I check the exit status of my previous command in Linux operating system?
0 Answers SwanSoft Technologies,
What are the command prompt commands?
What is tty in linux command?
Find command can search for files by
How do I check disk space in bash?
Display the Disk Usage of file sizes under each directory in currentDirectory ?
What are the basic commands in command prompt?
what is the standard output in a file as well as disply it on the terminal options like A)pr B) tail C) tee D)nl
3 Answers Google, Thermotech Engineers,
How do I remove a soft link in linux?
Did you work with linux? What flavors and versions?
What does && mean in bash?