Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cs251_group30
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Prayas
cs251_group30
Commits
8cd27863
Commit
8cd27863
authored
Aug 23, 2016
by
UTSAV ANAND
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lab3
parent
094e26dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
readme_lab3.txt
readme_lab3.txt
+35
-0
No files found.
readme_lab3.txt
0 → 100644
View file @
8cd27863
Group No. 30 - "Prayas"
(Neeraj Dhake, 150050022) (Utsav Anand, 150050044) (Mukesh Pareek, 150050049)
Honor Code:
We pledge on our honor that we have not given or received any unauthorized assistance on this assignment.
Citations:
linux.die.net
https://major.io/2010/03/18/sigterm-vs-sigkill/ //to understand how to initiate SIGKILL
Percentage contribution:
Neeraj 100%
Utsav 100%
Mukesh 100%
Task A:
Task B:
required file name: meminfo
grep 'Mem' meminfo | tr ' ' '\0' | cut -f2 -d":"
Task C:
ssh pareek@mars.cse.iitb.ac.in
Task D:
chmod +x infiniteLoop.sh //to get the permissions
./infiniteLoop.sh& // to run the infinite loop in background; & is used at end to run the process in background
pkill infiniteLoop.sh // to kill the background process
[EXTRA CREDIT]
chmod +x cell.sh //to get the permissions
./cell.sh& // to run the cell.sh
open a new terminal to stop the process. Type in the following command:
pkill -9 cell.sh
-9 tells pkill that you want to use SIGKILL to stop the process
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment