$msg = "";
$myaddress = "sacha" + "@" + "sachachua.com";
$page = "CS161.php";
$page_title = "C S 161";
$page_updated = "2004-12-02";
$http_equiv = "Content-Type";
$meta_content = "text/html; charset=utf-8";
$maintainer = "mailto:sacha@sachachua.com";
$home = "WelcomePage.php";
$index = "WikiIndex.php";
$style = <<
If you're looking for my old (very disorganized) student notes, they're at 2001.Sem2.CS161
CS161 resources can be found at
http://sacha.sachachua.com/notebook/cs161/ - check out the reviewers/
subdirectory, and contribute your own! =)
Tasks
B1 X Check mon's submission from E-Mail from tayag@mydestiny.net {{Tasks:786}} (2004.03.26)
Thursday, 2004.03.25, 9:30 - 11:30, CTC 312
Whoops, we don't have a schedule for the CS161 finals yet. I'd like to have it on Thursday morning or on Wednesday. Tell all your classmates who are not currently exempted to e-mail me their schedule for the finals by Wednesday midnight. Urgent.
B+
A
The following students are to take the CS161 final exam on Thursday. They can e-mail me at sacha@sachachua.com to find out their pre-final grade and what they need to score in order to attain a target letter grade.
000100 | Alindogan, John Marlon J. | 4 | BS MIS |
000146 | Ang, Lindsay Ritz T. | 4 | BS MIS |
000257 | Balagot, Julyett D. | 4 | BS MIS |
000322 | Bautista, Jose Miguel O. | 4 | BS MIS |
000336 | Baybay, Maria Margarita F. | 4 | BS MIS |
000459 | Cadelinia, Dwight Jr. M. | 4 | BS MIS |
005011 | Chan, Jacky T. | 4 | BS MIS |
000612 | Ching, James Henry Y. | 4 | BS MIS |
000628 | Chua, Aimee Lou T. | 4 | BS MIS |
000822 | De Claro, Ada Mae I. | 4 | BS MIS |
000834 | De Guzman, Myron Patrick S. | 4 | BS MIS |
990791 | Delfino, John Tristan S. | 4 | BS MIS |
001191 | Garcia, Miguel Jose A. | 4 | BS MIS |
991211 | Irigo, Justin A. | 4 | BS CS |
001469 | Kho, Krystle Ann G. | 4 | BS MIS |
991571 | Marchan, Allison Lilac S. | 4 | BS MIS |
002032 | Ong, Emmanuel I. | 4 | BS MIS |
002050 | Ong, Wendilyn Lou O. | 4 | BS MIS |
992113 | Sabilano, Jose Leonardo A. | 4 | BS MIS |
981077 | Sanchez, Patrick Philip R. | 4 | BS CS |
002477 | Santiago, Victor Roberto Manuel O. | 4 | BS MIS |
002478 | Santillan, Arthur A. | 4 | BS MIS |
002536 | Sembrano, Cyrus V. | 4 | BS MIS |
002601 | Songco, Marvin L. | 4 | BS MIS |
No MIS student qualified for exemption.
We get to postpone finals for juniors in CS161 to the normal time. Wheee! I feel so much better now.
Of course, this gives us time to make really nasty tests... <evil grin> CS students can expect lots of problem-solving, as we're _supposed_ to know this.
Yes, there are exemptions: 90 and above. This includes the grades from the projects. The list of exempted people will be posted on Monday.
Bad news for the CS juniors: you have to take the test also at the same date! (Uh oh...) Thursday, 1:30 - 3:30 PM at C115. (That's Chem 115) AND there's extra work _after_ the finals.
(Apologies for the confusion. Apparently, missed important small text. My bad.)
I might not be able to give a lecture on filesystems this Friday (or it might whiz past with my mile-a-minute speech), so here are some detailed lecture notes on file systems to help you review for the final exams.
File systems. You know about file systems because that's one of the most obvious things about your computer. You know that your documents are hidden somewhere on your hard disk. You know that programs are stored in another directory. You know that you can make your own directories to organize your programs and your data.
Why are file systems important? Well, remember what happens during brown-outs or power fluctuations? If the power goes off and then on again in a computer lab without uninterruptible power supplies (UPSes), people will lose all their unsaved work. That's because the kind of memory we use loses its data if it doesn't have power. Hard disks, on the other hand, keep data even when the computer is off - so save often!
Let's take a look at the data associated with files. Different operating systems keep track of different things, but here's a short list.
Your hard disk is divided into partitions (PC term) or volumes (Mac term). These are the "drives" you see on Windows. You can split up one hard disk into a C: drive and a D: drive. If you learn about something called RAID, you can combine two hard disks into just one drive. ("Drive" is a confusing term, though, as you can have C:, D:, E:, F:, etc. on just one hard disk.)
Long, long ago, MSDOS didn't have directories. Seriously. Well, there was one directory, and all of your files had to be under it. You can imagine how this sucked, as all of your program files had to be in the same place as your data. Not only that, you were limited to 8 characters for the filename and 3 characters for the extension.
People used clever names like AAAAAAAA.TXT, AAAAAAAB.TXT and AAAAAAAC.TXT for their files. Of course, after six months, who could remember what the contents of each file were?
The diagram shows a single-level directory. The directory entries are "cat", "bo", "a", "test", "data", "mail", "cont", "hex" and "records". All of these entries point to files.
Now we got to organize them by user, at least. Still sucked because all of your files were in just one directory, but at least you didn't have to worry about other people's naming schemes.
This is the kind of directory tree you got used to in Microsoft Windows. You can create directories (aka folders) inside directories inside directories inside directories.
Links aren't actually real directories. In Microsoft Windows, they're fake - for example, you can't cd into them from the command line.
Remember the ln command from Unix? This is where links in Unix come in. (They're _real_ links, not like the fake ones in Microsoft Windows. =) )
ln somefile anotherfile
creates a link: anotherfile will refer to the exact same file that somefile refers to on the hard disk. They point to the same place on the hard disk.
This allows you to have acyclic graph directories, because the same file is referred to in two or more places.
ln returns! This time, we use it to make a symbolic link.
ln somefileordir anotherfileordir -s
Symbolic links can point to directories, so it's perfectly acceptable to make a link that points to one of your parent directories and thus get into some kind of loop.
Basically, a general graph directory is anything that could have these loops.
You don't want just anyone messing around with your files. Remember Unix file permissions and chmod? This slide talks about some of those permissions, although the access groups the slide uses are different from Unix permissions. Under Unix, it's user, group, others. Other operating systems support access control lists (ACLs) - this means that instead of just giving permission to one group, you can specify exactly who gets to do what to the file.
Here we start looking at how things are physically stored on your hard disk. You can start up defrag to get an idea of what it looks like.
It's like contiguous allocation for memory. All the space the file needs should be in one continuous block. The nice thing about it is that it's easy to figure out where all the data is - just find the starting position and count off so and so many bytes. If you need to allocate space for a new file, try either first-fit or best-fit. Downside of this is that file sizes are fixed, because once it's been allocated and another file has been allocated next to it, the file can't grow.
The file is treated as a list of blocks, where a block is a fixed-size contiguous collection of bytes on the hard disk. The blocks don't all have to be together on the hard disk - each block in the file points to the next one. Plus side: files can grow, just link in new blocks. Minus: To read the file, you have to hop around the hard disk, plus all of that pointing around wastes space because each block has to refer to the next one. Solution: use groups of blocks (aka clusters), but these might be bigger than you need - if so, then space is wasted.
Form of linked allocation. The links to the next block are kept in one large table in a certain place in the hard disk.
Still uses blocks, but instead of each block pointing to the next one, one block has an index that points to all of the blocks. This block is called the inode (index node) under Unix. If the file is too big for one index block, the index block refers to other index blocks.
How your computer can tell how much space you have free.
How directories work. That is - how do directories store info about files within them?
One way is to just keep a list of all the filenames in that directory. If you have a million files (and it's happened!), this can get _really_ slow.
Hashtables are supposed to be faster at lookup, so naturally there's a way to use them too.
Remember the scandisk that shows up when you improperly shutdown your computer? This is what's happening. Your computer's checking if what it thinks your filesystem should be like is different from what it actually is.
(and advanced merry Christmas and a happy New Year!)
Please e-mail me a snapshot of your work by Saturday - whatever you've worked on, even if it's just something along the lines of "okay, Foo in charge of doing this and Bar in charge of that, and this is how we plan to work over the break."
Santa Claus Learns Unix better !pout !cry better watchout lpr why santa claus <north pole >town cat /etc/passwd >list ncheck list ncheck list cat list | grep naughty >nogiftlist cat list | grep nice >giftlist santa claus <north pole > town who | grep sleeping who | grep awake who | grep bad || good for (goodness sake) {be good} echo "Oh," better !pout !cry better watchout lpr why santa claus <north pole >town - somewhere
Cliff's group has nicely made a few reviewers for CS161. You can find them at http://sacha.sachachua.com/notebook/cs161/reviewers/ .
E-Mail from Cliff
You can Google to find the original text.
Please see the instructions for exercise 1. This is due by 11:59:59 PM on Tuesday. It is not easy, but it is doable. =) Have fun!
man command | Displays the manual page for the command. You can also use man to find out about some configuration files. For example, man hosts brings up the explanation for /etc/hosts. You will occasionally see commands followed by numbers in parentheses; these |
apropos keyword | Searches the whatis database for a command that has the keyword in its description. NOTE: You may need to run makewhatis to initialize the database that apropos uses. |
http://www.rpmfind.net | Just in case you haven't installed the packages you need yet, you can find them on your distribution CDs (most likely) or on http://www.rpmfind.net (if the CDs are not handy). |
#!/bin/bash FILENAME=$(date +%Y.%m.%d) TIME=$(date +%T) echo >> $FILENAME echo $TIME $1 >> $FILENAME vi $FILENAME
Assigned reading:
Both can be found at the Linux Documentation Project, http://www.tldp.org
Slides | PPT |
Funny: http://www.cs.bgu.ac.il/~omri/Humor/unix-history.html
(Sung to the tune of "Hotel California")
In the darkness of Bell Labs Monitors glowing blue Thompson hacked on UNIX 1 Dennis Ritchie did too(that's about as far as I got; can you think of other stanzas, poems or songs?)
Slides | PPT SXI |
Teacher's notes | PPT SXI |
Did not have classes because of ACP.
Quickly went through the first slide set. PPT
Went through chapter 2 of Silberschatz and Galvin with recitation.
Groups, discussion of what we'll take up