Unix Systems Books
Related Subjects: Linux
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

Used price: $0.32

about upg. and rep. PCs, Linux Edition.Review Date: 2000-01-25
Good book, not enough Linux specific information.Review Date: 2001-11-23
A disapointing effort.
A great hardware guide, but a little light on LinuxReview Date: 2001-07-27
Never the less, this book is still a great guide to hardware. The non-Windows perspective makes it an excellent complement to Minasi's or Bigelow's book, and it is fairly current (with coverage of RDRAM, DVDs, and FireWire). The CD comes in handy, too. Bottom line: if it's time to upgrade your copy of Upgrading & Repairing PCs, you might as well dual-boot.
A reason for an A+ for Linux!Review Date: 2000-01-25
Upgrading & Repairing PC's Linux ediitonReview Date: 2000-05-28


Try another bookReview Date: 2007-02-28
1) Links (p.63)
There are some contradictory statements in this section. I found a website that does a good job of explaining hard links v. soft links, and it uses diagrams. Why didn't the authors use diagrams?
2) Deleting Files (p.73)
The authors say the rm command(remove) has a -f option that will remove a file without prompting for confirmation, e.g.
rm -f filename
However, when I use the rm command *without using the -f option*, it removes files without prompting for confirmation anyway. So, I'm left wondering what the -f option does. I have to use rm -i to make rm prompt me for confirmation before removing the file. The authors mention that you can create aliases for commands, which essentially means you can rename a command. So you can do this:
$ alias rm = "rm -i"
Thereafter, when you issue the rm command, unix will interpret rm to mean rm -i, and then the rm command will prompt you for confirmation before removing a file. Did the authors do that on their system? And is that why they say using rm -f is necessary to skip the confirmation message before removing a file? Who knows?
3) apropos (p. 110)
The authors say the command:
apropos keyword
can be used to find files with the specified keyword in their name. That doesn't work for me. I looked around on the internet, and I can't find any UNIX tutorials that say apropos will return file names with the specified keyword in them. In fact, after some more digging, I discovered that the apropos command is equivalent to man -k, and man -k searches the man pages for *descriptions* containing the specified keyword--it does not search filenames for the keyword, so the example in the book won't work.
4) Advanced Tools (chap. 8)
The authors decided to introduce regular expressions, which I know pretty well. Personally, I don't think regular expressions should be included in a beginning text on anything--although they are well worth learning for any computer language. So I was interested to see how the authors would tackle the subject. To my surprise, I found the author's introduction to patterns quite good--except for one little thing. They don't show you how to use the patterns with a unix command. The author's start out the section by telling you to type in an overly long amount of example text into a testfile. Then they say: "The results shown in each case represent output from your testfile if the example search were run on it". However, they don't tell you how to run an example search on the testfile. All they do is show you a pattern and what matches it would produce-- if you ran a search on the testfile. I don't think some(most?) beginners will be able to figure out how to perform a search on the testfile. The authors could have very simply combined all their example patterns with a simple vi search command(vi is a unix text editor). In vi, the '/' plus a specified pattern will search the file for the pattern and move the cursor to the matching word. That way a beginner could actually use one of the example patterns to search the testfile and see for themselves what it does.
5) grep p.160
Nowhere in the description of grep do the authors tell you what the command actually outputs. All they tell you is that grep is one of the most useful commands in UNIX. Great! What does it do? If you consult the man pages, i.e. man grep, you will learn that grep prints *the entire line* in a file if the line contains something that matches the pattern. I lost all respect for the author's ability to teach unix after that omission.
6) find (p.161)
The authors say if you issue the following commmand:
find /etc -name passwd
That command does nothing in Mac OS X. In Mac OS X, there is no ouput and no errors--even though there's a file called passwd in the /etc directory. Back to the man pages. This time the man pages weren't helpful in figuring out how the find command works. This is the worst section of the book so far.
I've only just finished chapter 8, but I feel like I should post this review now, so anyone considering this book will know what to expect.
I think these authors are too long removed from beginner status, and therefore they don't know how to speak to beginners. Unfortunately, this book contains contradictions and incomplete or confusing descriptions, and some things are just plain wrong. In addition, as I read the book I found myself repeatedly saying to myself, "Why didn't the authors simply say it like this?".
I was really excited about this book because I just started using an intel iMac with Mac OS X 10.4.7, and I wanted to learn some basic Unix. This book points out when other versions of Unix may have different commands or effects, and the authors specifically address Mac OS X differences throughout the text. However, nothing in the book explained some of the discrepancies I experienced when I tried some of the commands in Mac OS X. Did the descriptions contain mistakes or did the authors omit something? Or are things just different on Mac OS X? All three--as I found out.
I recently spotted the book Unix Visual QuickStart Guide(3rd edition) on the shelves of my local bookstore, and after reading some random sections, I wish I had purchased that book instead.
Great book for Beginners to Unix/Linux/Mac OS XReview Date: 2006-04-02
The rest of the book assumes the reader has no knowledge of Unix/Linux and progresses from the basics of the operating system to more in-depth topics as the book continues to later chapters. The inclusion of the Knoppix Linux operating system allows the reader to follow the book while using a complete Unix environment (with no changes to the thier installed operating system).
great and timeless Unix information hereReview Date: 2008-02-23
When I glanced at this book, my first question was, "Who are these guys on the cover?" Before scanning the contents and index, my usual first step in examining a new book, I searched for the cover credits. I found none.
I use the term Unix as the authors use the term, to designate all Unix based systems including Linux, Solaris, OSX, and the BSDs as well as Unix.
The 400+ page paperback book is divided into 21 chapters. Each chapter ends with exercises; the solutions are found at the end of the book. The book's copyright is 2005 but the fundamentals of the Unix based operating systems don't change much so this book is by no means out of date.
Included is a CD of KNOPPIX 3.7. This is an old version of KNOPPIX but very usable for the authors' purpose of learning Unix. By using the live CD, it is possible to study Unix without installing it.
The book begins with introductory material giving a, thankfully, very brief history of Unix and its evolution. Next "Beginning Unix" explains how the Unix system is set up and what the major components are.
Logging in is covered. Logging out and shutting down the computer, if you have permission, are explained. Logging in and out properly is well detailed.
The book explains files in a very thorough and informative manner. As the whole strategy of Unix is based on files, creating, removing, copying, moving and organizing files are important functions. File permissions and their importance receive thorough and clear discussion. With a thorough understanding of permissions many potentially frustrating problems can be avoided or solved quickly.
Commands are introduced as needed for completing simple to very complex exercises. The functions of the shell are explored. Simple and advanced scripting is explained and several examples are presented. Besides shell scripts, there is a brief introduction to PHP. Piping, using the output of one program as input for another program, is illustrated with several meaningful examples.
There is a chapter on customizing your personal environment. Customizing the prompt, creating aliases, and organizing your work are explained in detail. This is much different than the usual customizing instructions focusing on the desktop.
Full chapters cover securing the system, using log files, understanding and controlling jobs and processes, backing up information, and automating tasks using cron. These chapters are useful in administering your Unix system. Administration on a desktop Unix system is important as the user is usually the administrator.
Network connections are explained, both in theory and by example. As Unix originated as a network environment, there are many tasks to be accomplished over the network. This information is important in connecting to the Internet.
There is a chapter covering installing programs from source code. Although this was necessary in early Linux distributions, the repositories available with most distributions make this interesting but seldom used information for most users. The procedure and potential pitfalls are discussed in detail. Reading this chapter reenforced my feeling "this is something I don't need to do for a while."
Migrating from a Mac or a Windows PC to Unix takes up the last two chapters of the book. These chapters should be very helpful in making the transition. They concentrate on the skills developed in using the Mac or a Windows PC and help transfer them to a Unix system.
Conclusions
There are several things I like about this book. Extensive use of screen shots in combination with the text helps me understand the examples more easily. The examples are clear and concise. The theory included helps improve understanding of the subject but doesn't overload the reader. The flow of the book is logical with examples building on previous exercises.
The complete lack of discussion of KDE, Gnome and other desktops is refreshing as these are explained in several other sources; I see no use for another superficial chapter or two in this book. It is more difficult to find good information on using the command line than using GUIs and this book has much good excellent information.
I am a Linux user with about two years experience so I found much new information in "Beginning Unix". This book answers questions I didn't know I had. There are several examples and techniques presented that will make my use of Linux more efficient, powerful and fun. Many "fuzzy areas" came into focus for me.
I think, at completion of this book, the user will be comfortable and effective at using the command line. After these exercises the user might be tired of the command line but they will not be fearful.
from rags to richesReview Date: 2006-08-25
Beginning UnixReview Date: 2006-03-21

Used price: $0.39

A must have for beginners and intermediate usersReview Date: 2002-02-21
The only disapointing aspect it's the ortographic errors and the mislabeled pictures.
not badReview Date: 2003-07-16
Typical Linux book, plus the word "Debian" on the coverReview Date: 2001-04-19
Fortunately, this book deals with Debian in such a marginal manner that the version number doesn't matter a hill of beans. This is the typical 1000+ page Linux book plus the word "Debian" on the cover. Chapter after chapter introduces UNIX, X, editors (WordPerfect?! hardly appropriate...), servers, a host of programming languages, and all of the bizarre UNIX commands we know and love, but Debian specific information about these tools is scattershot at best.
This wouldn't be so bad if, after going over a standard UNIX topic, the authors took time to explain how and why Debian implements that topic the way it does. In most situations they don't. Most of this text could've been ripped straight from the "Using Slackware Linux" book I bought in 1995.
A classic example is the woefully inadequate chapter on email. Debian installs Exim as its standard MTA. But "DG/L2.1U" contains 11 pages on sendmail and 8 pages on listar (listar?!). There is one mention of Exim in the book that basically says, Debian will install Exim as your default MTA. I guess it's up to you to figure out how to configure it.
"DG/L2.1U" devotes about 95 of its 1000+ pages to Debian topics, including dpkg, make-kpkg, the Debian bug tracking system, installing Debian, and the Debian Free Software Guidelines. But that's it. Really.
If you know very little about Linux or UNIX and you want to install Debian, you might want to buy this book. Or you might want to buy any other, it won't matter.
Good for beginnersReview Date: 2001-08-09
The downside of this book is that nothing is really done in detail. For instance the chapter on shells lists some differences between C shells and bash shells, which was good. But it has nothing really about commands themselves. In some ways this book can't decide if it's for beginners or more advanced people. The chapters on internet services (httpd, nfs etc) are really simple. But the chapters on stuff like tcl python java are more for advanced people.
I think the book works best for beginners. There is a lot of information clearly written, all in one book. It is a very good book, with limitations.
A decent intro to DebianReview Date: 2001-05-13
Still, I think it's a great primer, and it was certainly enough that I got a box up and running without too much of a headache.

Used price: $34.47

Best reference on LVM I've seenReview Date: 2005-04-18
He covers a lot in a short amount of time, and presents the reader with details on problems that you may encounter. He covers JFS (VxFS), OnlineJFS, HFS, Mirroring with LVM, converting to LVM, troubleshooting, and more.
Even with the age of the book, the data that this book covers is still relevant, and still useful with today's HP-UX. However, it should go without saying that the details should be checked against the current system documentation - you don't want to find out something changed the hard way.
In any case, this book is a worthwhile addition to your library, and will give you a familiarity with LVM not otherwise available.
Good Book - an almost one stop shop, but it needs updating.Review Date: 2000-07-11
Very good cook book for LVM beginners and also experstReview Date: 2000-01-06
Very good step by step commands for people who are not so familiar with LVM. Also very good examples for like Exporting and Importing of Volume Groups for more experienced SysAdmins. This 39 bucks are a really good investment.
Best source of LVM information availableReview Date: 1999-10-17
The rest of the book dealt with tasks one would typically need to perform on LVM and HP-UX filesystems. Fortunately, no time is wasted with lengthy man page reprints. Each chapter is broken down in to sections, each of which addresses a particular task. A lot of attention is paid to using the command line to optimze the placement of logical volumes, and to specifying the best options depending on what the logical volume is being used for. It provides just enough detail of the inner workings of LVM for someone who needs to build well-planned storage systems.
I would liked to have seen perhaps another chapter dedicated to more philisophical issues, like opinions from HP's LVM experts on best practices, etc.
Still, the best source of LVM information out there.
Not a fan.Review Date: 2000-08-09
I'm giving it two stars because it's probably a good historical reference. Let's see "Version 2" someday.

Used price: $4.69

great getting started guideReview Date: 2007-01-03
Jump-start your Eclipse IDE experienceReview Date: 2005-11-07
Save your moneyReview Date: 2007-06-14
A great place to startReview Date: 2005-11-28
While this is a very small book, the contents have been selected to give you a best start with the main features of the Eclipse IDE. The topics are short but concise and include scattered tips for the points of interest.
If you're just starting with this IDE, the Eclipse IDE Pocket Guide will give you a great head start and will continue helping you as a lovely reference to refer back to as the features become familiar. Having all of these critical features pointed out earlier will save you a lot of bother in the future, since you'll be annoyed if you only find out about them much later by accident or experimentation!
Experienced users are less likely to get much from it though. The authors made a decision between content and size, and I feel they chose to stick with a smaller, simpler book than I would have expected. There is a final section on places to go for more information, but it just refers to various community sites.
I wish I had this book when I started using Eclipse.
Extremely shallow coverageReview Date: 2005-11-11

Used price: $0.99

Harley Hahn's Student Guide To Unix Review Date: 2006-11-10
As said, a student's guideReview Date: 1998-08-04
Detailed, understandable, thorough and fun!Review Date: 1998-11-05
Perfect for someone who never even knew what UNIX wasReview Date: 2002-10-18
The author did a very good job particularly in describing and tutoring the reader how to do common tasks such as using email systems, doing text editing, issuing commands from the CLI, etc. Not very in-depth but the point is, it is enough to get you interested to look for MORE, which is the most important thing. There is no point in explaining something in-depth only to discourage the reader to look for more information, and only to leave the subject untouched because it looks "hard". If you are a UNIX veteran/advanced user/system administrator, this book is not for you, as you have probably known way more than what this book contains.
I highly recommend this book as the very first book on UNIX to read on, if you have never even heard of UNIX before, and only experienced in Windows/MacOS environments.
Ideal book for getting startedReview Date: 2000-03-01

Used price: $0.21

Caldera OpenLinux version with book already out of dateReview Date: 2000-03-13
i want to know about linuxReview Date: 1999-08-22
Excellent Linux Applications BookReview Date: 1999-07-12
If however, you want to see how to move your corporate mission-critical desktop MS Office applications to Linux, this book is a real eye-opener. Most people do not realize you can get just-as-visual AND heavy duty apps in Linux...
Very Good Introduction to LinuxReview Date: 1999-03-30
The only drawback is that there is not much troubleshooting info. The author assumes everything works right. (I cannot get my PS/2 mouse to work in KDE/XWindows. I had to go online, on a different PC obviously, to usenet to find potential solutions.)
I would definitely recommend this book to "mere mortal" first time Linux users!
Good for those of you trying to weane yourself from Windows.Review Date: 2000-05-18
I find this a nice guide for those of you that would like to try Linux for the first time and are either wanting to get away from Windows products or are even trying out a OS for the first time ever.
It is a visual guide as stated, in color, yet the newer Caldera will allow you to skip all the X terminal and command line prompt garbage in the first few chapters, so you can jump straight to KDE pretty much.
Caldera is not the most popular distro of Linux available, but it is a nice start for the beginner and this book will tell you enough to give you a working knowledge of the GUI functions it has using the KDE interface.
...Even still, this a decent price for a starter kit.
Not that great...but definitely serviceable.

Used price: $0.49

Learning Red Hat Enterprise Linux & Fedora, Fourth EditionReview Date: 2005-07-12
Good intro to FedoraReview Date: 2004-06-24
Those with experience, will probably want to pass on this book. Its not likely you'll pick up anything new
(I didn't). (For those unfamiliar with what Red Hat has done with the split out of Fedora; think of
Fedora Core 1 as Red Hat Linux 9.1 or 10; if Red Hat had continued the product line.)
This book focuses on the "NEW" Red Hat Enterprise Linux and Fedora Core 1 Linux user. The book is a relatively
easy read. Bill McCarty writes a clear and well organized book. From a novice's perspective, the author gives
you, what you need to get Fedora installed, running and usable. The author does a good job of pointing
the reader at additional information sources on each topic. The book is short, less than 300 pages.
This is nice compared to some of the other 1,000 page plus Linux novice tomes; which try to be a "how to get
started" book and a "general reference" all at they same time; except they don't do either well. Linux should
be friendly, not scary. First timers shouldn't have to read a Encyclopedia to get started in Linux. I agree
with the author's choice of brevity for his book.
One suggestion to the author, would be to include output examples with the CLI (Command Line Interface) examples.
He does it with the GUIs, so why not with the CLIs???
I bought the book because "Red Hat Enterprise" (RHE) was in the title. I was disappointed in the fact there wasn't
more detail about RHE. In retrospect, anyone doing RHE, is probably an experienced Linux person working for a
company, where RHE is deployed and may even have had formal training on RHE. So why would they need this book?
My bona fides; I've been using been using various flavors of Unix for an embarrassing long time, Red Hat Linux
for 8 yrs (from release RH 3.0.3 to 9) and I have been running Fedora Core for about 5 months now.
End-user level introduction to LinuxReview Date: 2004-08-10
This is a solid introduction to end-user level Linux that should be suitable for anyone who is reasonably technical (no need to be a programmer). The only reason I give it four stars instead of five is because of the reliance on numerous screenshots, which isn't the best way to explain things, and is not the quality that I expect from O'Reilly.
Can't rate because it did not meet my needsReview Date: 2004-09-27
This book is absolutely NOT a good book to learn Fedora in TEXT MODE because the book is about graphic mode and it wasn't said somewhere. It's all about GNOME and KDE.
Be sure you use the graphic mode before buying!
Perfect for what I was looking for...Review Date: 2004-10-03
Chapter list: Why Run Linux?; Preparing to Install Linux; Installing Linux; How Linux Works; Using the GNOME and KDE Desktops; Using Linux Applications; Conquering the bash Shell; Installing Software Using the RPM Package Manager; Configuring and Administering Linux; Connecting to the Internet; Setting Up Network Services; Advanced Shell Usage and Shell Scripts; Linux Directory Tree; Principal Linux Files; Managing the Boot Process; Linux Command Quick Reference; Index
This book concentrates more on the desktop and graphical interface aspect of running Linux, which is exactly what I was looking for. While this book won't tell you everything you need to know about any specific subject (like shell programming or networking), it covers more than enough to get you up and running with a complete Linux setup. Using this volume, I've been able to get a full desktop and server setup going with little effort or trouble. By following the rest of the book, I'll gain a solid base of knowledge of Linux, and then I'll be ready to move on to more detailed learning.
Perfect level of coverage for where I'm at, and enough detail to get me up and running quickly... I like it.

Used price: $7.25

if your class is using this book, abandon ship now!Review Date: 2004-10-10
Best Linux TextbookReview Date: 2004-12-05
NiceReview Date: 2002-02-02
A bonus is that, if you like books, you will appreciate the quality of the printing and the material used.
Dull and confusingReview Date: 2003-08-07
After reading four five-star reviews, I think I need to speak up. Our school used this book for a freshman-level Operating System Utilities class and I was not fully pleased. As far as positives go, I will give that this book is extremely comprehensive. Most important commands are explained and the more obscure commands and options are included in the back. Even though I disliked the book, I still keep it as a reference due to its scope. Issues regarding differences between different versions of Linux are not covered well, but that's really too much to cover in one book. Just make sure to get a book specific to your version in addition (or possible exclusion) of this one. I have Red Hat and fortunately most of the code in here is portable to Red Hat. Also Mandrake is included on the disk (at least in my version), which is the version the book is catered to. Maybe it's just bad luck but I found the version of Mandrake included to be quite buggy, but that's a separate rant.
The main reason I didn't like the book is the usual flaw in technical computer books: unclarity. The explanations are not well-written and are short of examples in some areas. Also, the explanations that are given tend to be just as dry and boring as unclear. In addition to the constant vagueness and unreadability, there isn't enough attention given onto the traditional privileges and restrictions of the typical user. The examples and explanations don't give the reader a good feel as to what they can do on a Linux system, unless they happen to have full root access. Given an experienced programmer knows there restrictions and they may vary, but the introductory Linux programmer is not clear on the kind of programming environment they will be working in.
A really good bookReview Date: 2001-11-06
One really important part is missing! Almost no discussion is provided on the user profile definition. How the user is related to the group, how can a user be part of several groups, etc...
Really, is a good book, but the writers suppose that everybody will use "root"? I hope not. To be useful for the IT Professional, a little more has to be spent on this area.

Used price: $0.01

Very Solaris centricReview Date: 2005-08-29
Fairly OutdatedReview Date: 2001-01-11
If you are a beginner and are looking for fundamental information this book might be useful if you remain aware of its shortcomings. It covers the fundamentals of NFS V2 over UDP, and NIS quite well, and has a good troubleshooting section, which might help beginners negotiate the interoperability and tuning issues that are common in today's multivendor environments. It covers automounting issues quite well, from an "automount" (SunOS 4) perspective.
A note from one of the co-authorsReview Date: 2004-03-03
co-authors of Managing NFS and NIS, Second Edition.
I'm writing this note to offer additional information
to potential readers.
At the time I submitted this note, most of the
customer reviews for this book referred to the first edition.
One of the reviews states that the book is focused on NFS
version 2 over UDP and the old style automounter.
Actually, you'll find the second edition of our book
is more modern. New topics in the second edition
include NFS version 3, NFS over TCP, modern autofs-based
automounters, Kerberos V5 authentication for NFS, NFS Access
Control Lists (ACLs), and client side fail over.
Another difference is that first edition of this book
used SunOS 4.x as a reference for examples. The second
edition uses Solaris 8.
The second edition provides information you won't find
in NFS product documentation, such as using tools like ethereal
to debug NFS problems. This book will give you the benefit of
insights from people who probably wrote some of the code for
your clients and servers. You may find (and I hope) that
it will save you the trouble reporting a problem to
your vendor's customer support line.
Thank you for considering our book.
NFS, NIS and automounter, a great combonation!Review Date: 2002-11-20
Most Unix admins have heard of NFS and NIS but might not have considered using them together. This book gives a very thorough discussion each topic, how to set it up, how to deal with advanced issues, and how to troubleshoot. Admins will really develop an appreciation for how useful these tools can be, especially when used together.
Though LDAP is gaining prominence, a network utilizing NIS, NFS, and automounter is still a very nice network to administer. Even just learning NFS/automounter is time well spent because it is a service not likely to go away. I really felt this this book was worth the time and money because it really helps the intermediate to advanced admin better gain control of the network (instead of the network controlling him :). Definintely give this book a try. Enjoy!
The standard for NFS/NISReview Date: 2001-03-24
Related Subjects: Linux
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250