Linux-Day3-Assignment
1. List the top 5 used processes running on the system.
Ans: top | head -12
2. Get details of all processes running on the system. Observe what happens when you put ps -eaf and describe the output here.
Ans: ps: provides a snapshot of current processes and their status.
ps -eaf: e=> Select all processes. Identical to -A.
a=> Select all processes except both session leaders (see getsid(2)) and processes not associated with a terminal.
f=> display a full-format listing that includes additional details about each process.
3. Find all the files that are over +2M on your Ubuntu machine
Ans: find / -size +2M
4. Check if the tree utility is installed. If not, Install the tree utility on your Ubuntu machine.
Ans:
5. Download and install Google Chrome on your Ubuntu machine using the terminal. Verify if installation is successful.
Ans: