SlideShare a Scribd company logo
1 of 10
Download to read offline
POS/433
UNIX NETWORKING
The Latest Version A+ Study Guide
**********************************************
POS 433 Entire Course Link
https://uopcourses.com/category/pos-433/
**********************************************
POS 433 Week 1 UNIX® and Linux® Comparison Matrix
Instructions
Assignment Preparation: Activities include completing the SkillSoft course, independent
student reading, and research.
 Complete the "Choosing UNIX Shells" module in the SkillSoft course, "UNIX
Fundamentals: Shell Scripting Basics."
Assignment: Complete the University of Phoenix Material: UNIX
®
and
Linux
®
Comparison Matrix located on the student website.
UNIX®
and Linux®
Comparison Matrix
Directions: Choose three different versions of the UNIX
®
or Linux
®
operating systems to
compare. Insert the three chosen versions and fill out the requested information in the
Components column.
UNIX®
or Linux®
operating system version: <Insert your chosen version>
Components Your response
Role of shell
Three features and roles
of each feature
Comments on security
Comments on
administration
Comments on networking
Comments on
performance
Comments on
programmability
Other
UNIX®
or Linux®
operating system version: <Insert your chosen version>
Components Your response
Role of shell
Three features and roles
of each feature
Comments on security
Comments on
administration
Comments on networking
Comments on
performance
Comments on
programmability
Other
UNIX®
or Linux®
operating system version: <Insert your chosen version>
Components Your response
Role of shell
Three features and roles
of each feature
Comments on security
Comments on
administration
Comments on networking
Comments on
performance
Comments on
programmability
Other
POS 433 Week 2 Learning Team: UNIX®, Linux®, and Windows
Server® Critique and Presentation Preparation Part I
Instructions
Develop a plan for completing the Week Five Learning Team assignment.
Submit the plan to the instructor.
Determine what research is needed to complete the written critique and presentation due
in Week Five.
Assign at least one research component to each team member.
POS 433 Week 2 File Processing Commands Worksheet
Instructions
Assignment Preparation: Activities include completing the SkillSoft course, independent
student reading, and research.
 Complete the "navigate a filesystem, create a file, set permissions, create and
delete files, and assign ownership and permissions" modules in the SkillSoft
course, "Working with UNIX Files and Directories."
Assignment: Complete the University of Phoenix Material: File Processing Commands
Worksheet located on the student website.
File Processing Commands Worksheet
 What UID and PID have the highest amount of physical memory a process has used and
is not swapped out? Show all processes and full output.
 If using a long listing and no process modifiers, what is the swap space amount for the
bash command?
 When using top command, what command would you use to kill a process?
 If you were not using top command, what command would you use to kill a process?
 What command would you use to manually mount the standard CD-ROM device /dev/db1
at /media/disk?
 What command would you use to display the amount of available disk space on /dev/db1
in a human readable form?
 Type in the command grep - - help to access the help manual. Using this information and
the information from the text, how would you write a command to find the pattern 111 in a
file called myfile.txt?
POS 433 Week 2 Linux® Directory Log
Instructions
Assignment Preparation: Activities include completing the SkillSoft course above,
independent student reading, and research.
Assignment: Complete the University of Phoenix Material: Linux
®
Directory Log located
on the student website.
Linux®
Directory Log
To: <Insert your facilitator's name>
From: <Insert your name>
Date: <Insert the date (XX/XX/XXXX)>
Directions: As you complete each of the following steps, keep track of what occurs at each
point, including what you type, the output given, and if you experience any errors. Record the
occurrences in the following matrix.
1. Open a terminal.
2. Create a new group called mygroup. Hint: /usr/sbin/groupadd.
3. Create a new folder and name it your first name.
4. Get a directory listing of the home folder using the long listing format.
5. Modify the permissions on your new folder to set read, write, and execute permissions for the
user and group.
6. Get a directory listing of the new folder using the long listing and human readable format. (ls
–lh)
7. Use Gedit or VI to create two files (myfile1.txt and myfile2.txt) and save them in the
new folder. Add a paragraph of your own liking to each file.
8. Get a regular format directory listing of the new folder.
9. Change the ownership of myfile1.txt so the owner is mygroup and the group is mygroup.
10. Get a directory listing of the new folder using the long listing and human readable format.
11. Change the permissions on myfile2.txt using the following: user:read and write,
group:read and write, and owner: read, write, and execute. Set the sticky bit. Use
Octal s to set these.
12. Get a directory listing of the new folder using the long listing and human readable format.
POS 433 Week 3 Learning Team: UNIX®, Linux®, and Windows
Server® Critique and Presentation Preparation Part II
Instructions
Review the results from the Learning Team to ensure that all elements of the assignment
have been fully researched.
Complete and submit the outline of the final Learning Team paper.
Begin developing the rough draft of the critique due in Week Five.
POS 433 Week 3 Linux® Script Worksheet
Instructions
Assignment Preparation: Activities include completing the SkillSoft course, independent
student reading, and research.
 Complete the SkillSoft course, "UNIX Fundamentals: Shell Scripting
Basics" (ID:lu_unix_a02_it_enus)
Assignment: Complete the University of Phoenix Material: Linux®
Script Worksheet
located on the student website.
Linux®
Script Worksheet
To: <Insert your facilitator's name>
From: <Insert your name>
Date: <Insert the date (XX/XX/XXXX)>
Before beginning the Linux®
Script Worksheet, update the PATH variable to add your folder from
last week. You will find how to do this on p. 134 of Linux®
Command Line and Shell Scripting
Bible.
Linux
®
Script 1
Requirements
In the same folder as last week, create a new file titled week3prog1[name].scr.
Change the permissions on this new file to add the execute bit for user, group, and owner.
Edit your new file using Gedit or VI and change it so it performs the following actions:
 Display the date.
 Display the words Hello World.
 Display information about users that are currently logged in.
Note. Remember to include #!/bin/bash as the first line of your script.
Save the file and type your file name to execute.
Source Programs
<Insert your source code here.>
Output Results
<Insert the output here. Use a screenshot of the output with the input requirements specified in
the assignment.>
Linux
®
Script 2
Requirements
In the same folder as last week, create a new file called week3prog2[name].scr.
Change the permissions on this new file to add the execute bit for user, group, and owner.
Edit your new file using Gedit or VI and change it so it performs the following actions:
 Using a line after #!/bin/bash, take the output of the ps –e command and pipe it to the
sort command.
 After it has been piped to the sort command, redirect that output to a file called psfile.
Note. Remember to include #!/bin/bash as the first line of your script.
Source Programs
<Insert your source code here.>
Output Results
<Insert the output here. Use a screenshot of the output with the input requirements specified in
the assignment.>
Linux®
Script 3
Requirements
In the same folder as last week, create a new file called week3prog3[name].scr.
Change the permissions on this new file to add the execute bit for user, group, and owner.
Create two files.
 File1 has one line with the value of 5.
 File2 has one line with the value of 100.
Edit your new file using Gedit or VI and change it so it performs the following actions:
 Read the values from the two files above (file1 and file2).
 Divide the value from file2 by the value in file1.
 Output the result of this calculation to a new file called file3.
Note. Remember to include #!/bin/bash as the first line of your script.
Source Programs
<Insert your source code here.>
Output Results
<Insert the output here. Use a screenshot of the output with the input requirements specified in
the assignment.>
POS 433 Week 4 Learning Team: UNIX®, Linux®, and Windows
Server® Critique and Presentation Preparation Part III
Instructions
Continue working on your critique due in Week Five.
Complete and submit the draft of your final paper.
Begin developing the presentation due in Week Five
POS 433 Week 4 Systems Administration Scripting Log
Instructions
Assignment Preparation: Activities include completing the SkillSoft course, independent
student reading, and research.
 Complete the SkillSoft course, "Working with UNIX Programs."
Assignment: Complete the University of Phoenix Material: Systems Administration
Scripting Log located on the student website.
Systems Administration Scripting Log
To: <Insert your facilitator's name>
From: <Insert your name>
Date: <Insert the date (XX/XX/XXXX)>
As you complete each of the following steps, keep track of what occurs at each point, including
what you type, the output given, and any errors experienced. Submit this information in a log to
your instructor for this week’s assignment. Your log can use the sample format provided, or you
can create your own.
1. In the same folder as last week, create a new file titled week4prog1[name].scr.
2. Change the permissions on this new file to add the execute bit for user, group, and owner.
3. Run the following script:
a. #!/bin/bash
b. count=1
c. echo "start of the program"
d. while [ $count -le 10 ]
e. do
1) echo "Loop #$count"
2) sleep 10
3) count=$[ count + 1 ]
f. done
g. echo "end of the program
4. Modify the program to add a trap for SIGINT and SIGTERM.
5. Save the script and then run the script in the background.
6. Use the jobs command to display a list of the jobs currently running.
7. Find the process id of the script and kill the job.
8. Check to see if you get the trap message.
9. Run the script again using the at command to schedule the job in the future. Wait for the job
to run to make sure it executes.
POS 433 Week 5 Learning Team: UNIX®, Linux®, and Windows
Server® Critique
Instructions
Finalize and submit the UNIX®
, Linux®
, and Windows Server®
Critique
POS 433 Week 5 Learning Team: UNIX®, Linux®, and Windows
Server® Presentation
Instructions
Finalize and submit the UNIX®
, Linux®
, and Windows Server®
Presentation
POS 433 Week 5 UNIX® Networking
Instructions
Assignment Preparation: Activities include completing the SkillSoft course, independent
student reading, and research.
 Complete the "File Sharing with NFS and Samba" modules in the SkillSoft course,
"UNIX Fundamentals: Network Administration."
Assignment: Find a current article about UNIX® Networking. Write a 1-2 page paper
discuss the article and its relevance to the course

More Related Content

What's hot

Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...Syaiful Ahdan
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)Sukhraj Singh
 
Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...
Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...
Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...Joachim Jacob
 
Gnu study guide linux admin 1 (lab work lpi 102) v 0.2
 Gnu study guide linux admin 1 (lab work lpi 102) v 0.2 Gnu study guide linux admin 1 (lab work lpi 102) v 0.2
Gnu study guide linux admin 1 (lab work lpi 102) v 0.2Acácio Oliveira
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Edureka!
 
Linux powerpoint
Linux powerpointLinux powerpoint
Linux powerpointbijanshr
 
Unix(introduction)
Unix(introduction)Unix(introduction)
Unix(introduction)meashi
 
Linux Administration
Linux AdministrationLinux Administration
Linux Administrationharirxg
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Scriptsbmguys
 
Linux Administrator - The Linux Course on Eduonix
Linux Administrator - The Linux Course on EduonixLinux Administrator - The Linux Course on Eduonix
Linux Administrator - The Linux Course on EduonixPaddy Lock
 

What's hot (14)

Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)
 
Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...
Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...
Part 5 of "Introduction to Linux for Bioinformatics": Working the command lin...
 
Gnu study guide linux admin 1 (lab work lpi 102) v 0.2
 Gnu study guide linux admin 1 (lab work lpi 102) v 0.2 Gnu study guide linux admin 1 (lab work lpi 102) v 0.2
Gnu study guide linux admin 1 (lab work lpi 102) v 0.2
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
 
Linux powerpoint
Linux powerpointLinux powerpoint
Linux powerpoint
 
Unix(introduction)
Unix(introduction)Unix(introduction)
Unix(introduction)
 
Linux Administration
Linux AdministrationLinux Administration
Linux Administration
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Script
 
Ch03
Ch03Ch03
Ch03
 
Spsl by sasidhar 3 unit
Spsl by sasidhar  3 unitSpsl by sasidhar  3 unit
Spsl by sasidhar 3 unit
 
Linux Administrator - The Linux Course on Eduonix
Linux Administrator - The Linux Course on EduonixLinux Administrator - The Linux Course on Eduonix
Linux Administrator - The Linux Course on Eduonix
 
Ch02
Ch02Ch02
Ch02
 
Basic Unix
Basic UnixBasic Unix
Basic Unix
 

Similar to Pos 433 pos433

POS 433 Education Organization / snaptutorial.com
POS 433 Education Organization / snaptutorial.com POS 433 Education Organization / snaptutorial.com
POS 433 Education Organization / snaptutorial.com McdonaldRyan65
 
Uop pos 433 week 3 linux
Uop pos 433 week 3 linuxUop pos 433 week 3 linux
Uop pos 433 week 3 linuxanjuchandu755
 
Uop pos 433 week 3 linux
Uop pos 433 week 3 linuxUop pos 433 week 3 linux
Uop pos 433 week 3 linuxshyaminfopvtltd
 
Pos 433 Effective Communication-snaptutorial.com
Pos 433 Effective Communication-snaptutorial.comPos 433 Effective Communication-snaptutorial.com
Pos 433 Effective Communication-snaptutorial.comjhonklinz34
 
Pos 433 Exceptional Education-snaptutorial.com
Pos 433 Exceptional Education-snaptutorial.comPos 433 Exceptional Education-snaptutorial.com
Pos 433 Exceptional Education-snaptutorial.comrobertleses32
 
POS 433 Enhance teaching - snaptutorial.com
POS 433 Enhance teaching - snaptutorial.com POS 433 Enhance teaching - snaptutorial.com
POS 433 Enhance teaching - snaptutorial.com donaldzs82
 
Pos 433 Education Specialist-snaptutorial.com
Pos 433 Education Specialist-snaptutorial.comPos 433 Education Specialist-snaptutorial.com
Pos 433 Education Specialist-snaptutorial.comrobertledwes18
 
Uop pos 433 week 2 linux
Uop pos 433 week 2 linuxUop pos 433 week 2 linux
Uop pos 433 week 2 linuxElijahEthaan
 
Uop pos 433 week 2 linux
Uop pos 433 week 2 linuxUop pos 433 week 2 linux
Uop pos 433 week 2 linuxanjuchandu755
 
Uop pos 433 week 2 linux
Uop pos 433 week 2 linuxUop pos 433 week 2 linux
Uop pos 433 week 2 linuxshyaminfopvtltd
 
Linux® Directory LogPOS420 Version 111University of Pho.docx
Linux® Directory LogPOS420 Version 111University of Pho.docxLinux® Directory LogPOS420 Version 111University of Pho.docx
Linux® Directory LogPOS420 Version 111University of Pho.docxSHIVA101531
 
POS 433 Creative and Effective/newtonhelp.com
POS 433 Creative and Effective/newtonhelp.comPOS 433 Creative and Effective/newtonhelp.com
POS 433 Creative and Effective/newtonhelp.commyblue100
 
POS 433  Focus Dreams/newtonhelp.com
POS 433  Focus Dreams/newtonhelp.comPOS 433  Focus Dreams/newtonhelp.com
POS 433  Focus Dreams/newtonhelp.commyblue70
 
Week 2 IPWeekly tasks or assignments (Individual or Group Projec.docx
Week 2 IPWeekly tasks or assignments (Individual or Group Projec.docxWeek 2 IPWeekly tasks or assignments (Individual or Group Projec.docx
Week 2 IPWeekly tasks or assignments (Individual or Group Projec.docxcandycemidgley
 
Assessment item 1 File Systems and Advanced Scripting .docx
Assessment item 1 File Systems and Advanced Scripting .docxAssessment item 1 File Systems and Advanced Scripting .docx
Assessment item 1 File Systems and Advanced Scripting .docxdavezstarr61655
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comULLPTT
 
linux-lecture1.ppt
linux-lecture1.pptlinux-lecture1.ppt
linux-lecture1.pptNikhil Raut
 
fileop report
fileop reportfileop report
fileop reportJason Lu
 
Uop pos 433 week 5 linux script worksheet new
Uop pos 433 week 5 linux script worksheet newUop pos 433 week 5 linux script worksheet new
Uop pos 433 week 5 linux script worksheet newshyaminfopvtltd
 
Jayse farrell resume
Jayse farrell resumeJayse farrell resume
Jayse farrell resumeJayse Farrell
 

Similar to Pos 433 pos433 (20)

POS 433 Education Organization / snaptutorial.com
POS 433 Education Organization / snaptutorial.com POS 433 Education Organization / snaptutorial.com
POS 433 Education Organization / snaptutorial.com
 
Uop pos 433 week 3 linux
Uop pos 433 week 3 linuxUop pos 433 week 3 linux
Uop pos 433 week 3 linux
 
Uop pos 433 week 3 linux
Uop pos 433 week 3 linuxUop pos 433 week 3 linux
Uop pos 433 week 3 linux
 
Pos 433 Effective Communication-snaptutorial.com
Pos 433 Effective Communication-snaptutorial.comPos 433 Effective Communication-snaptutorial.com
Pos 433 Effective Communication-snaptutorial.com
 
Pos 433 Exceptional Education-snaptutorial.com
Pos 433 Exceptional Education-snaptutorial.comPos 433 Exceptional Education-snaptutorial.com
Pos 433 Exceptional Education-snaptutorial.com
 
POS 433 Enhance teaching - snaptutorial.com
POS 433 Enhance teaching - snaptutorial.com POS 433 Enhance teaching - snaptutorial.com
POS 433 Enhance teaching - snaptutorial.com
 
Pos 433 Education Specialist-snaptutorial.com
Pos 433 Education Specialist-snaptutorial.comPos 433 Education Specialist-snaptutorial.com
Pos 433 Education Specialist-snaptutorial.com
 
Uop pos 433 week 2 linux
Uop pos 433 week 2 linuxUop pos 433 week 2 linux
Uop pos 433 week 2 linux
 
Uop pos 433 week 2 linux
Uop pos 433 week 2 linuxUop pos 433 week 2 linux
Uop pos 433 week 2 linux
 
Uop pos 433 week 2 linux
Uop pos 433 week 2 linuxUop pos 433 week 2 linux
Uop pos 433 week 2 linux
 
Linux® Directory LogPOS420 Version 111University of Pho.docx
Linux® Directory LogPOS420 Version 111University of Pho.docxLinux® Directory LogPOS420 Version 111University of Pho.docx
Linux® Directory LogPOS420 Version 111University of Pho.docx
 
POS 433 Creative and Effective/newtonhelp.com
POS 433 Creative and Effective/newtonhelp.comPOS 433 Creative and Effective/newtonhelp.com
POS 433 Creative and Effective/newtonhelp.com
 
POS 433  Focus Dreams/newtonhelp.com
POS 433  Focus Dreams/newtonhelp.comPOS 433  Focus Dreams/newtonhelp.com
POS 433  Focus Dreams/newtonhelp.com
 
Week 2 IPWeekly tasks or assignments (Individual or Group Projec.docx
Week 2 IPWeekly tasks or assignments (Individual or Group Projec.docxWeek 2 IPWeekly tasks or assignments (Individual or Group Projec.docx
Week 2 IPWeekly tasks or assignments (Individual or Group Projec.docx
 
Assessment item 1 File Systems and Advanced Scripting .docx
Assessment item 1 File Systems and Advanced Scripting .docxAssessment item 1 File Systems and Advanced Scripting .docx
Assessment item 1 File Systems and Advanced Scripting .docx
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
 
linux-lecture1.ppt
linux-lecture1.pptlinux-lecture1.ppt
linux-lecture1.ppt
 
fileop report
fileop reportfileop report
fileop report
 
Uop pos 433 week 5 linux script worksheet new
Uop pos 433 week 5 linux script worksheet newUop pos 433 week 5 linux script worksheet new
Uop pos 433 week 5 linux script worksheet new
 
Jayse farrell resume
Jayse farrell resumeJayse farrell resume
Jayse farrell resume
 

More from GOODCourseHelp (20)

Soc 110 soc110
Soc 110 soc110Soc 110 soc110
Soc 110 soc110
 
Soc 110 soc110
Soc 110 soc110Soc 110 soc110
Soc 110 soc110
 
Psy 203 psy203
Psy 203 psy203Psy 203 psy203
Psy 203 psy203
 
Psy 103 psy103 UOP
Psy 103 psy103 UOPPsy 103 psy103 UOP
Psy 103 psy103 UOP
 
Prg 211 prg211
Prg 211 prg211Prg 211 prg211
Prg 211 prg211
 
Mkt 421 mkt421
Mkt 421 mkt421Mkt 421 mkt421
Mkt 421 mkt421
 
Mgt 312 mgt312
Mgt 312 mgt312Mgt 312 mgt312
Mgt 312 mgt312
 
Law 421 law421
Law 421 law421Law 421 law421
Law 421 law421
 
It 242 it242
It 242 it242It 242 it242
It 242 it242
 
It 241 it241
It 241 it241It 241 it241
It 241 it241
 
It 240 it240
It 240 it240It 240 it240
It 240 it240
 
It 237 it237
It 237 it237It 237 it237
It 237 it237
 
It 236 it236
It 236 it236It 236 it236
It 236 it236
 
It 200 it200
It 200 it200It 200 it200
It 200 it200
 
Hum 186 hum186
Hum 186 hum186Hum 186 hum186
Hum 186 hum186
 
Hum 115 hum115
Hum 115 hum115Hum 115 hum115
Hum 115 hum115
 
Hrm 498 hrm498
Hrm 498 hrm498Hrm 498 hrm498
Hrm 498 hrm498
 
Web 240 web240
Web 240 web240Web 240 web240
Web 240 web240
 
Sci220 sci 220
Sci220 sci 220Sci220 sci 220
Sci220 sci 220
 
Sci 256 sci256
Sci 256 sci256Sci 256 sci256
Sci 256 sci256
 

Recently uploaded

AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Romantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptxRomantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptxsqpmdrvczh
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........LeaCamillePacle
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayMakMakNepo
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 

Recently uploaded (20)

AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Romantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptxRomantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptx
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up Friday
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 

Pos 433 pos433

  • 1. POS/433 UNIX NETWORKING The Latest Version A+ Study Guide ********************************************** POS 433 Entire Course Link https://uopcourses.com/category/pos-433/ ********************************************** POS 433 Week 1 UNIX® and Linux® Comparison Matrix Instructions Assignment Preparation: Activities include completing the SkillSoft course, independent student reading, and research.  Complete the "Choosing UNIX Shells" module in the SkillSoft course, "UNIX Fundamentals: Shell Scripting Basics." Assignment: Complete the University of Phoenix Material: UNIX ® and Linux ® Comparison Matrix located on the student website. UNIX® and Linux® Comparison Matrix Directions: Choose three different versions of the UNIX ® or Linux ® operating systems to compare. Insert the three chosen versions and fill out the requested information in the Components column. UNIX® or Linux® operating system version: <Insert your chosen version>
  • 2. Components Your response Role of shell Three features and roles of each feature Comments on security Comments on administration Comments on networking Comments on performance Comments on programmability Other UNIX® or Linux® operating system version: <Insert your chosen version> Components Your response Role of shell Three features and roles of each feature Comments on security Comments on administration Comments on networking Comments on performance Comments on programmability Other UNIX® or Linux® operating system version: <Insert your chosen version> Components Your response Role of shell Three features and roles of each feature Comments on security Comments on administration Comments on networking Comments on performance Comments on
  • 3. programmability Other POS 433 Week 2 Learning Team: UNIX®, Linux®, and Windows Server® Critique and Presentation Preparation Part I Instructions Develop a plan for completing the Week Five Learning Team assignment. Submit the plan to the instructor. Determine what research is needed to complete the written critique and presentation due in Week Five. Assign at least one research component to each team member. POS 433 Week 2 File Processing Commands Worksheet Instructions Assignment Preparation: Activities include completing the SkillSoft course, independent student reading, and research.  Complete the "navigate a filesystem, create a file, set permissions, create and delete files, and assign ownership and permissions" modules in the SkillSoft course, "Working with UNIX Files and Directories." Assignment: Complete the University of Phoenix Material: File Processing Commands Worksheet located on the student website. File Processing Commands Worksheet  What UID and PID have the highest amount of physical memory a process has used and is not swapped out? Show all processes and full output.  If using a long listing and no process modifiers, what is the swap space amount for the bash command?  When using top command, what command would you use to kill a process?  If you were not using top command, what command would you use to kill a process?  What command would you use to manually mount the standard CD-ROM device /dev/db1 at /media/disk?  What command would you use to display the amount of available disk space on /dev/db1 in a human readable form?  Type in the command grep - - help to access the help manual. Using this information and
  • 4. the information from the text, how would you write a command to find the pattern 111 in a file called myfile.txt? POS 433 Week 2 Linux® Directory Log Instructions Assignment Preparation: Activities include completing the SkillSoft course above, independent student reading, and research. Assignment: Complete the University of Phoenix Material: Linux ® Directory Log located on the student website. Linux® Directory Log To: <Insert your facilitator's name> From: <Insert your name> Date: <Insert the date (XX/XX/XXXX)> Directions: As you complete each of the following steps, keep track of what occurs at each point, including what you type, the output given, and if you experience any errors. Record the occurrences in the following matrix. 1. Open a terminal. 2. Create a new group called mygroup. Hint: /usr/sbin/groupadd. 3. Create a new folder and name it your first name. 4. Get a directory listing of the home folder using the long listing format. 5. Modify the permissions on your new folder to set read, write, and execute permissions for the user and group. 6. Get a directory listing of the new folder using the long listing and human readable format. (ls –lh) 7. Use Gedit or VI to create two files (myfile1.txt and myfile2.txt) and save them in the new folder. Add a paragraph of your own liking to each file. 8. Get a regular format directory listing of the new folder. 9. Change the ownership of myfile1.txt so the owner is mygroup and the group is mygroup.
  • 5. 10. Get a directory listing of the new folder using the long listing and human readable format. 11. Change the permissions on myfile2.txt using the following: user:read and write, group:read and write, and owner: read, write, and execute. Set the sticky bit. Use Octal s to set these. 12. Get a directory listing of the new folder using the long listing and human readable format. POS 433 Week 3 Learning Team: UNIX®, Linux®, and Windows Server® Critique and Presentation Preparation Part II Instructions Review the results from the Learning Team to ensure that all elements of the assignment have been fully researched. Complete and submit the outline of the final Learning Team paper. Begin developing the rough draft of the critique due in Week Five. POS 433 Week 3 Linux® Script Worksheet Instructions Assignment Preparation: Activities include completing the SkillSoft course, independent student reading, and research.  Complete the SkillSoft course, "UNIX Fundamentals: Shell Scripting Basics" (ID:lu_unix_a02_it_enus) Assignment: Complete the University of Phoenix Material: Linux® Script Worksheet located on the student website. Linux® Script Worksheet To: <Insert your facilitator's name> From: <Insert your name> Date: <Insert the date (XX/XX/XXXX)> Before beginning the Linux® Script Worksheet, update the PATH variable to add your folder from last week. You will find how to do this on p. 134 of Linux® Command Line and Shell Scripting Bible.
  • 6. Linux ® Script 1 Requirements In the same folder as last week, create a new file titled week3prog1[name].scr. Change the permissions on this new file to add the execute bit for user, group, and owner. Edit your new file using Gedit or VI and change it so it performs the following actions:  Display the date.  Display the words Hello World.  Display information about users that are currently logged in. Note. Remember to include #!/bin/bash as the first line of your script. Save the file and type your file name to execute. Source Programs <Insert your source code here.> Output Results <Insert the output here. Use a screenshot of the output with the input requirements specified in the assignment.> Linux ® Script 2 Requirements In the same folder as last week, create a new file called week3prog2[name].scr. Change the permissions on this new file to add the execute bit for user, group, and owner. Edit your new file using Gedit or VI and change it so it performs the following actions:
  • 7.  Using a line after #!/bin/bash, take the output of the ps –e command and pipe it to the sort command.  After it has been piped to the sort command, redirect that output to a file called psfile. Note. Remember to include #!/bin/bash as the first line of your script. Source Programs <Insert your source code here.> Output Results <Insert the output here. Use a screenshot of the output with the input requirements specified in the assignment.> Linux® Script 3 Requirements In the same folder as last week, create a new file called week3prog3[name].scr. Change the permissions on this new file to add the execute bit for user, group, and owner. Create two files.  File1 has one line with the value of 5.  File2 has one line with the value of 100. Edit your new file using Gedit or VI and change it so it performs the following actions:  Read the values from the two files above (file1 and file2).  Divide the value from file2 by the value in file1.  Output the result of this calculation to a new file called file3. Note. Remember to include #!/bin/bash as the first line of your script. Source Programs <Insert your source code here.>
  • 8. Output Results <Insert the output here. Use a screenshot of the output with the input requirements specified in the assignment.> POS 433 Week 4 Learning Team: UNIX®, Linux®, and Windows Server® Critique and Presentation Preparation Part III Instructions Continue working on your critique due in Week Five. Complete and submit the draft of your final paper. Begin developing the presentation due in Week Five POS 433 Week 4 Systems Administration Scripting Log Instructions Assignment Preparation: Activities include completing the SkillSoft course, independent student reading, and research.  Complete the SkillSoft course, "Working with UNIX Programs." Assignment: Complete the University of Phoenix Material: Systems Administration Scripting Log located on the student website. Systems Administration Scripting Log To: <Insert your facilitator's name> From: <Insert your name> Date: <Insert the date (XX/XX/XXXX)> As you complete each of the following steps, keep track of what occurs at each point, including what you type, the output given, and any errors experienced. Submit this information in a log to your instructor for this week’s assignment. Your log can use the sample format provided, or you
  • 9. can create your own. 1. In the same folder as last week, create a new file titled week4prog1[name].scr. 2. Change the permissions on this new file to add the execute bit for user, group, and owner. 3. Run the following script: a. #!/bin/bash b. count=1 c. echo "start of the program" d. while [ $count -le 10 ] e. do 1) echo "Loop #$count" 2) sleep 10 3) count=$[ count + 1 ] f. done g. echo "end of the program 4. Modify the program to add a trap for SIGINT and SIGTERM. 5. Save the script and then run the script in the background. 6. Use the jobs command to display a list of the jobs currently running. 7. Find the process id of the script and kill the job. 8. Check to see if you get the trap message. 9. Run the script again using the at command to schedule the job in the future. Wait for the job to run to make sure it executes. POS 433 Week 5 Learning Team: UNIX®, Linux®, and Windows Server® Critique Instructions Finalize and submit the UNIX® , Linux® , and Windows Server® Critique POS 433 Week 5 Learning Team: UNIX®, Linux®, and Windows Server® Presentation Instructions Finalize and submit the UNIX® , Linux® , and Windows Server® Presentation
  • 10. POS 433 Week 5 UNIX® Networking Instructions Assignment Preparation: Activities include completing the SkillSoft course, independent student reading, and research.  Complete the "File Sharing with NFS and Samba" modules in the SkillSoft course, "UNIX Fundamentals: Network Administration." Assignment: Find a current article about UNIX® Networking. Write a 1-2 page paper discuss the article and its relevance to the course