POS 433 Entire Course

0 items
POS 433 Entire Course
POS 433 Entire Course
$49.99
  • Description

POS/433

UNIX NETWORKING

 

The Latest Version A+ Study Guide

 

**********************************************

POS 433 Entire Course Link

https://hwsell.com/category/pos-433/

**********************************************

 

POS 433 Week 1 Individual: UNIX® and Linux® Comparison Matrix

Complete the UNIX® and Linux® Comparison Matrix assignment.

Submit your assignment using the Assignment Files tab.

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>

 

ComponentsYour 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>

 

ComponentsYour 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>

 

ComponentsYour 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

Develop a plan for completing the Week Five Learning Team assignment.

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.

Submit the plan using the Assignment Files tab.

 

POS 433 Week 2 Individual: File Processing Commands

Complete the File Processing Commands assignment.

Submit your assignment using the Assignment Files tab.

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 txt?

 

 

POS 433 Week 2 Individual: Linux® Directory Log

Complete the Linux® Directory Log assignment.

Submit your assignment using the Assignment Files tab.

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.

 

  1. Create a new group called mygroup. Hint: /usr/sbin/groupadd.

 

  1. Create a new folder and name it your first name.

 

  1. Get a directory listing of the home folder using the long listing format.

 

  1. Modify the permissions on your new folder to set read, write, and execute permissions for the user and group.

 

  1. Get a directory listing of the new folder using the long listing and human readable format. (ls –lh)

 

  1. 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.

 

  1. Get a regular format directory listing of the new folder.

 

  1. Change the ownership of myfile1.txt so the owner is mygroup and the group is mygroup.

 

  1. Get a directory listing of the new folder using the long listing and human readable format.

 

  1. 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.

 

  1. 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

Review the results from the Learning Team to ensure that all elements of the assignment have been fully researched.

Complete the outline of the final Learning Team paper.

Begin developing the rough draft of the critique due in Week Five.

Submit your assignment using the Assignment Files tab.

 

POS 433 Week 3 Individual: Linux® Script Worksheet

Complete the University of Phoenix Material: Linux® Script Worksheet assignment.

Submit your assignment using the Assignment Files tab.

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

Continue working on your critique due in Week Five.

Complete the draft of your final paper.

Begin developing the presentation due in Week Five.

Submit your assignment using the Assignment Files tab.

 

POS 433 Week 4 Individual: Systems Administration Scripting Log

Complete the University of Phoenix Material: Systems Administration Scripting Log assignment.

Submit your assignment using the Assignment Files tab.

 

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:

 

  1. #!/bin/bash
  2. count=1
  3. echo “start of the program”
  4. while [ $count -le 10 ]
  5. do

 

  • echo “Loop #$count”
  • sleep 10
  • count=$[ count + 1 ]

 

  1. done
  2. echo “end of the program

 

  1. Modify the program to add a trap for SIGINT and SIGTERM.
  2. Save the script and then run the script in the background.
  3. Use the jobs command to display a list of the jobs currently running.
  4. Find the process id of the script and kill the job.
  5. Check to see if you get the trap message.
  6. 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

Finalize the UNIX®, Linux®, and Windows Server® Critique.

Submit your assignment using the Assignment Files tab.

 

 

POS 433 Week 5 Learning Team: UNIX®, Linux®, and Windows Server® Presentation

Finalize the UNIX®, Linux®, and Windows Server® Presentation.

Submit your assignment using the Assignment Files tab

 

 

POS 433 Week 5 Individual: UNIX® Networking

Find a current article about UNIX® Networking.

Write a 525-word paper discussing the article and its relevance to the course.

Submit your assignment using the Assignment Files tab.