User Tools

Site Tools


haas:fall2020:unix:projects:pbx0

Corning Community College

CSCS1730 UNIX/Linux Fundamentals

Project: THE PUZZLEBOX (pbx0)

Errata

  • any bugfixes or project updates will be posted here

Objective

To become familiar with another useful utility, and to develop some basic debugging/diagnostic abilities.

Toolbox

In addition to tools you may already be familiar with, you may also want to check out:

  • sort(1)
  • tr(1)

Background

The filetype of a file can be extremely important when determining what application is used to open it.

As discussed on a few occasions already, conventional UNIX filesystems do not have any special treatment for file extensions. It is therefore said that UNIX ignores them; that means we can use more characters as valid symbols in filenames.

On systems that have engrained support for filename extensions (say, DOT followed by 3 characters), that actually limits our ability to name files.

In UNIX, it is not uncommon to find files named archive.tar.gz, and since UNIX ignores extensions, this is a perfectly legitimate filename… and it is also quite informative (we are clued in on potential actions taken on this file, as well as what tools to make use of).

Most of the time a file is named correctly, for instance a file ending in .c can be assumed to be the source code of a C program, or .gz to be a gzipped file. These are not extensions, they are traditional naming conventions (just as we tend to call those petrol-powered metal boxes with 4 rubberized wheels a “car”… we CAN call it something else, but that may cause bumps in otherwise smooth communications).

With the dircolors(1) utility colorizing specific files, it is further assuming that files which end in .mpg are really MPEG files and colors them accordingly, and the same for .zip files, etc.

In other operating systems, a file's extension determines what application is used to open the particular file. If a file that ends in .mp3 is really a .png file, the default MP3 player is going to have difficulties.

Sometimes files are not always named properly, either due to a web browser mangling an extension or for whatever reason. When a file is more than meets the eye, we must rely on the various tools available to use to determine what in fact it is.

The file utility

In UNIX there is a nifty little utility called file that attempts to determine the actual type of a file by checking a series of properties. From the file(1) man page:

There are three sets of tests, performed in this order:

  1. filesystem tests,
  2. magic number tests,
  3. and language tests.

The first test that succeeds causes the file type to be printed.

A filesystem test checks to see if the file is non-ordinary (such as a socket, symbolic link, or other special file).

The magic number test is a check of files conforming to existing fixed formats, typically by examining the file at the binary level. If using a hex editor, you will find that .gz files should always start with the same sequence of hexadecimal values.

Finally, if the file is determined to be a simple ASCII file, it will attempt to analyze whether or not it conforms to some language (ie C source code vs. an HTML document).

Note that file is not always perfect, but for most cases will get the job done. Try checking files in your home directory or elsewhere on the system and see the results. Should file not be able to give you a clear answer, you must still result to your other skills and mental faculties– test and debug the situation.

Refer to the file(1) manual page or your references for more information.

Project

For this project, files are located in the pbx0/ subdirectory of the UNIX Public Directory.

There is a directory by the name of your user, which contains a file. Please copy this into some custom project folder in your home directory.

Using your debugging, observation, and analytical skills, unravel the puzzle until you have an ordered, plain text, english readable file (called results) with directions on how to submit the project.

In many puzzles, one's visual comprehension of the scenario plays a vital role. Where something doesn't necessarily meet the eye, or is not behaving as you would expect- just try reading any messages or output. Sometimes the clues are right under your nose.

As is the case many investigations, just observing how things behave can lead to recognition of an object's true state, or the recognition of a pattern, which can be used to solve the task at hand.

Verification

The results file, when correctly unscrambled and assembled, can be verified by generating its md5sum hash.

This hash should match the hash stored inside the MANIFEST file located in the project directory (in the public directory).

filechk

You can also use the filechk tool to verify the accuracy of your results:

lab46:~/src/unix/pbx0$ filechk unix pbx0

Submission

In addition to the files produced during the completion of this project, I would also like for you to create a detailed step-by-step text file called pbx0steps which includes the valid command-lines that will document for me the steps you took from project commencement through completion. You will submit this file at the end in accordance with the instructions.

To successfully complete this project, you must follow the directions located in a readable file at the conclusion of this project. Until you encounter it, you are not yet finished (hint).

You should get some sort of confirmation indicating successful submission (actually, two) if all went according to plan. If not, check for typos and or locational mismatches.

I'll be looking for the following:

52:pbx0:final tally of results (52/52)
*:pbx0:submitted results file via submit tool [7/7]
*:pbx0:submitted pbx0steps file via submit tool [8/8]
*:pbx0:results md5sum matches project MANIFEST [5/5]
*:pbx0:results is correctly unscrambled and assembled [5/5]
*:pbx0:pbx0steps contains valid list of instructions [12/12]
*:pbx0:pbx0steps any extra information after hash mark [5/5]
*:pbx0:emailed results via instructions [5/5]
*:pbx0:matching subject line as per instructions [5/5]
haas/fall2020/unix/projects/pbx0.txt · Last modified: 2020/01/31 11:14 by 127.0.0.1