Skip to content

Commit dc4e57b

Browse files
authored
Merge pull request #274 from ShaneDugas/zstick
Unit 12 worksheet typo
2 parents 5ee94fc + 8355d38 commit dc4e57b

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

src/SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Summary
22

3-
- [Course Syallabus](./syllabus.md)
3+
- [Course Syllabus](./syllabus.md)
44
- [Final Project Outline](./project.md)
5-
- [Earning the Certificaiton](./certify.md)
5+
- [Earning the Certification](./certify.md)
66
- [Table of Contents](./unitindex.md)
77
- [About ProLUG](./prolug.md)
88
- [Unit 1](./u1intro.md)

src/u12lab.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
- [SAR Documentation](https://man7.org/linux/man-pages/man1/sar.1.html)
1414
- [iostat Manual](https://man7.org/linux/man-pages/man1/iostat.1.html)
15-
- [stress GitHub](https://github.com/stress-ng/stress-ng)
15+
- [stress GitHub](https://github.com/ColinIanKing/stress-ng.git)
1616
- [iperf3 Documentation](https://iperf.fr/)
1717

1818
### Required Materials
@@ -218,9 +218,9 @@ issues. No one cares what you think, they care what you can show, or prove.
218218
```
219219

220220
- Can we say that this system is not under heavy load?
221-
- What does a system under no load look like permorning tasks in our environment?
221+
- What does a system under no load look like performing tasks in our environment?
222222

223-
- Assuming our systems are running not under load, capture SAR and baseline stats.
223+
- Assuming our systems are not running under load, capture SAR and baseline stats.
224224
- Perform some basic tasks and get their completion times.
225225

226226
- Writing/deleting 3000 empty files #modify as needed for your system

src/u12ws.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Scenario:
6565
<blockquote>
6666

6767
You are in a capacity planning meeting with a few of the architects.
68-
They have decided to add 2 more agents to your Linus sytems, Bacula Agent and an Avamar Agent.
68+
They have decided to add 2 more agents to your Linux systems, a Bacula Agent and an Avamar Agent.
6969
They expect these agents to run their work starting at 0400 every morning.
7070

7171
</blockquote>
@@ -85,8 +85,8 @@ Scenario:
8585

8686
<blockquote>
8787

88-
Your team has recently tested at proof of concept of a new
89-
storage system. The vendor has published the blazing fast speeds that are capable of being
88+
Your team has recently tested a proof of concept of a new storage system.
89+
The vendor has published the blazing fast speeds that are capable of being
9090
run through this storage system. You have a set of systems connected to both the old
9191
storage system and the new storage system.
9292

src/u1lab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ cat fruits.txt | grep APPLE
172172
# See if you can figure out how to both ignore case and only find the
173173
# word apple at the beginning of the line.
174174

175-
# If you can’t, here’s the the answer. Try it:
175+
# If you can’t, here’s the answer. Try it:
176176
cat fruits.txt | grep -i "^apple"
177177
```
178178

src/u5lab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ work
304304
mkdir /project
305305
ls -ld /project
306306
chown root:project /project
307-
cmod 775 /project
307+
chmod 775 /project
308308
ls -ld /project
309309
```
310310

src/u8lab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ We will not draw them out in this lab, as there are already well-documented exam
270270

271271
When we start thinking about how to lay something out and logically work through it, the idea of a formalized flow chart can help us get a handle on what we're seeing.
272272

273-
ome common symbols you'll see as we go through drawing out our logic. This example creates a loop in the program until some decision evaluates to yes (true).
273+
Some common symbols you'll see as we go through drawing out our logic. This example creates a loop in the program until some decision evaluates to yes (true).
274274

275275
### 2.8 - 3 Types of Decisions
276276

0 commit comments

Comments
 (0)