From 99a7d20dbe3fc18b32d2f27a59065a708a371ec5 Mon Sep 17 00:00:00 2001 From: purav <purav@cse.iitb.ac.in> Date: Tue, 23 Aug 2016 18:04:51 +0530 Subject: [PATCH] readme inlab3 --- readme3.txt | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 readme3.txt diff --git a/readme3.txt b/readme3.txt new file mode 100644 index 0000000..2a66234 --- /dev/null +++ b/readme3.txt @@ -0,0 +1,50 @@ +Group 00 Shunya +Inlab 3 + +Honour code : +I pledge on my honour that I have not given or received any unauthorized assistance on this assignment or any previous task. +Bharat Khandelwal (150050001) + +Honour code : +I pledge on my honour that I have not given or received any unauthorized assistance on this assignment or any previous task. +Rishabh Shah (150050006) + +Honour code : +I pledge on my honour that I have not given or received any unauthorized assistance on this assignment or any previous task. +Purav Gandhi (150050007) + +Individual Contributions:- + 150050001 : 100% + 150050006 : 100% + 150050007 : 100% + + +Task A + Attempted extra credit +Task B + Task B1 meminfo + Task B2 grep -E 'MemTotal|MemFree' meminfo + Task B3 grep -E 'MemTotal|MemFree' meminfo | tr -d [:blank:] + Task B4 grep -E 'MemTotal|MemFree' meminfo | tr -d [:blank:] | cut -d':' -f2 + + +Task C + + Subtask C1: ssh bharatk@mars.cse.iitb.ac.in + + Subtask C3: ssh -XC bharatk@mars.cse.iitb.ac.in + subl /tmp/lab3_inlab_C3.txt + + +Task D + + Subtask D1: ./infiniteLoop.sh > /dev/null & + Since a process is on the terminal while it requires input therefore we sent the process to background to a device + that doesnt require input hence our terminal is free for user input and next process. + + Subtask D4: pkill infiniteLoop.sh + Kills background process given argument by name + Read documentation through man kill + +Citations +None -- 2.24.1