Running Mac OS X Panther
The book fills a certain niche very well. It is not the missing manual to the iApps or a list of Finder tricks. It's not a primer on Unix for people used to GUIs and Macs (that's Learning Unix for Mac OS X Panther , also from O'Reilly). This book is for users who have administered a machine or network before and want to get the absolute most out of their Mac. It's also useful for connecting your Mac to a network seamlessly. But it's complicated and technical enough if you're the kind of Mac user who doesn't have the Terminal on your dock you might be intimidated. That may not include most slashdot readers, but it's worth mentioning because part of the Mac ideology is that it works beautifully with little trouble. The Unix ideology, however, is also represented: if want to tweak it, you can.
The author illustrates both interfaces to the operating system throughout the book. There are Macintosh applications to access all kinds of system information, whether it's users and groups, preferences, system logs, or services. For those who love Unix and the command line, just about anything you can do with the GUI you can do with the CLI. This makes a nice two-tiered approach to anything you'll want to do. The GUI is fast and easy to learn, but some things (particularly automated tasks) really need to be done on the command line.
The book is written well, and if you happen to be sitting next to your computer while reading it, you'll be constantly torn between the two. There are lots of things you'll want to try right away.
Part I: Getting StartedThis part has a charming history of the Macintosh, from the toaster to Panther, complete with snapshots (my favorite parts of these are the disk usage indicators: System Folder: 152K in folder, 167K available.) It's fun to read and discover where on the time line you came into the fold.
Here also is a basic layout of the filesystem, containing parts used by the more Macintosh-y side and the more Unix-y side. For instance, there are several directories (um, folders) called Library; these contain information which might be in an include, share, etc, or lib directory. Better put, these contain supplemental Mac-app-related, non-user data. For Unix applications, the /usr, /var, /bin, /sbin, /etc, are all there.
Of course, there are top-level places to store things, or user-level locations for essentially the same kind of data (applications, preferences, documentation). This is the concept of filesystem domains, which additionally include network and system domains. The whole idea is to allow customization to ordinary users without giving up system integrity and preventing all users from unintentionally corrupting things.
If you haven't used the CLI on the Mac before, the author gives a basic introduction to Terminal.app. Terminal by default uses the bash shell, but there are number of ways to change that if you want. Several text editors are available for editing through the terminal, but unfortunately, the author doesn't talk much about them. True, pico is self-explanatory and vi and emacs users will already have their followers, but a little more than how to exit these programs if they start accidentally (while that's quite useful information) would have been helpful.
There's important extra structure to Mac files that can be (accidentally or intentionally) unlinked on the Unix side. There are commands like ditto, CpMac and MvMac which take care of the important stuff and do exactly what their GUI counterparts do (and more than mv and cp). Also, there's open which is the analog of double-clicking (either apps or docs), and osascript which lets you write and run AppleScript scripts on the fly. More could have been said here about the differences between Mac files and Unix files. What of the resource fork?
Part II: EssentialsThis is where the book's meat is. There is first a blow-by-blow account of what happens when you turn on your Mac. If you are interested in seeing all the gory details, you can always hold down Propeller-V during startup and see the BSD diagnostics (even if you don't know what these mean, it's nice to know some progress is being made. Though I love the taste of Mac Kool-aid, I often worry what's going on while that dial is spinning). You can change how the Mac boots by updating (at your peril, as usual) the Open Firmware settings on the chip with nvram. One nice bit of customization from Bell-and-Whistle Land: the graphic shown at boot time is in /System/Library/CoreServices/SystemStarter/QuartzDisplay.bundle/Resources/BootPanel.pdf. The /etc/hostconfig file has Unix-style host configuration information, such as what services get turned on.
Creating your own startup items is relatively easy; it's a matter of putting a directory, shell script, and plist file in /Library/StartupItems. You can also customize what happens after a successful startup. You can present a login window, auto-login as a specific user, or even allow dropping down to console login.
The larger and more powerful a computer gets, the more people want or need to use it, and the more important it is to make sure each user area remains separate. At the Mac lab at which I worked during college in the early nineties, we used RevRDist to make sure every computer in the lab mirrored one with just the right software, fonts, and windows in the right place. The Mac from which we mirrored was locked in the office, not to be touched. Now there are much easier ways to do this without wasting a computer.
It's easy to create and manage users using the the Accounts preference panel. The root user exists, but is essentially not needed. The person who installs the operating system becomes an administrative user, and can bestow that privilege on other users. On the command line, all administrative tasks can be done with sudo, which requires authentication as an administrative user to run, but which contains a slight memory so that passwords don't need to be typed at every command. Although it's discouraged, you can allow the root user to log in.
With the several filesystem domains, each user can manage his or her own preferences. Each application allows access to its own preferences, or they can be taken care of from the command line with the defaults utility. GUI means it's easy to do what you want without knowing exactly what setting to change; CLI means you can automate it easily.
Another important aspect of a multi-user system is in permissions. Like in any good unix, in Mac OS X files have permissions attached to them indicating whether the owner, other users in the owner's group, or all users are allowed to see, edit, or run them. This can be managed through the Finder (with the Get Info menu command), or with the command line with chmod.
Several applications in the /Applications/Utilities folder allow you to keep track of what's running on your Mac. The author demonstrates these:
- System Profile, which shows information about your system's hardware and software. You can use this to check out who made your hard drive and how much RAM you have. Also, every application installed in /Applications is registered here, so you can easily see what versions of which are there.
- Console is another great utility for monitoring your applications. It collects log files from /Library/Logs, /var/log, and ~/Library/Log in a tree for browsing. You can filter views of these logs easily, making this a little more pleasant than tail -f.
- To monitor processes themselves you can use Activity Monitor. Think of it as top on Macintosh Steroids. You can inspect processes to try and figure out what they're doing or kill them if they've stopped accepting input. For super users and developers, you can sample processes to figure out their inner workings. There is probably FMTYEWTK about processes, but it's good know it's there.
- To terminate processes, there's the Force Quit command from the Apple menu, or you can do it through Activity Monitor, or there's good old-fashioned kill.
At the core of the Mac filesystem lies, of course, the filesystem. The Mac OS X Extended Filesystem (HFS+) is powerful yet friendly. It's case-preserving and case-insensitive. The latter means that README and Readme are the same file, but the former means that your original name for the file will be kept without enforcement of case usage. So if you want to call it ReAdMe, that's oK, too.
One of the most powerful features of HFS+ is journaling. This means every change to the file system is kept track of in the event of a system crash. This causes a slight overhead but pays benefits in automatic recovery from crashes without having to run fsck (or be scolded by your computer for its own crash). Fragmentation is also handled smartly; files smaller than 20MB are moved so as to have less than 8 fragments.
Lots of other disk-related activities are covered, including:
- how to mount filesystems of other types, including CDs and DVDs, Apple Filing Protocol, Samba, NFS, WebDAV and FTP;
- The Disk Utility application and its CLI cousin diskutil which do as much as you would want and more with a disk utility. You can check, repair, partition, erase and format any disks. You can even obliterate data by writing over it eight times with random data. Take that, NSA!
- disk images, which are like 21st century tarballs. A disk image contains not only data but its own filesystem, and are mounted onto the user's filesystem just like disks. In addition, disk images can be encrypted to restrict access without a password.
Part III: Advanced Topics
The further along in the book, the less useful it gets. That speaks not the author's skill of exposition or choice of subject matter, but simply confidence in the Mac and the knowledge that I didn't need to know it. For the user administering a single machine, there's no real need to grok the inner workings of Open Directory: it just works. Printing, network services: it all just works. That's good news for Mac users. But it's also good that all this information is available if you really do want to tweak default behavior or configure something that isn't working as it should.
I talked about this book with the systems administrator in my department, and he mentioned that my statements in the previous paragraph are somewhat simplistic. According to him, it was a hard task to have public Mac workstations which mounted home directories from a central Unix computer, and allowed users to have their own preferences and user data (including Dock setups) live in their Unix accounts. Apparently the book that has all the information about networking, warts and all, hasn't been written yet. This book is as good as it gets, so far.
To summarize this part of the book: Open Directory has nothing to do with the filesystem directory. Instead, it's the central location of all authentication information. At one time Unix maintained user information in flat files such as /etc/passwd and /etc/group; with the advent of larger networks that regime has been largely replaced. Open Directory is a liaison between BSD's Pluggable Authentication Modules (PAMs) and Mac's Directory Services on the local end, and LDAP, Rendevous, Kerberos, etc., on the network end. Open Directory can talk to Active Directory as well, to allow authentication across Windows and Mac platforms. Through network (shared domain) authentication, users can log in on networked machines while their names and passwords are stored on a central server. The Directory Access Utility is the tool for this.
NetInfo is the database behind Open Directory. As usual, there are two ways to manage Netinfo information; the GUI NetInfo Manager, and nicl on the command line.
Mac OS X uses CUPS (Common Unix Printing Service) to configure and access printing. The printing chapter shows how to add and manage printers using the Printer Setup Utility, and how to customize jobs with the various settings in the standard print dialog. Like I said, though, printing is much easier than it sounds from this chapter. Rendezvous and Open Directory find the printers you're allowed to print on; you click Print and go.
Networking and network services are also covered here. The author shows not only the theory behind networking, but the settings which allow one computer on a network to find another on another network through the internet. Once this is accomplished, a number of services can be deployed, from FTP to remote login to a personal web site.
AppendicesThere's some useful stuff in the back, including how to install Panther from scratch (but especially what needs to be backed up before you do so!), all those boot key combos you can never remember, and a whole list of other resources, be they books, magazines, web sites, or mailing lists.
Check out this book if you want to learn the gory details of Mac OS X's core. It's short on gimmicks but long on information.
You can purchase Running Mac OS X Panther from bn.com. Slashdot welcomes readers' book reviews. To see your own review here, carefully read the book review guidelines, then visit the submission page.
Then you better go catch it!
CompUSA has it now.
It's just a pity that this book is 1 year late.
Now, it's a book about Tiger (10.4) that we'd need.
Trolling using another account since 2005.
Tiger, the next version of the MacOS, is being polished right now. At Mac Expo London last week, Apple was giving demos of the new OS and had machines where you could get a hands-on taste of some of the new features, like video conferencing, Safari RSS, etc.
Impressive doesn't do it justice: if it lives up to its billing then it'll be nothing short of the best desktop OS ever. And this coming from a dedicated Windows and Linux user.
"Accept that some days you are the pigeon, and some days you are the statue." - David Brent, Wernham Hogg
A re-issue is probably already in order as OS 10.4 is on the verge of appearing. I refuse to call it Tiger.
"When Nature Calls We All Shall Drown" Johan Edlund
I can run the older unix-based apps I need to for work, and use Microsoft programs and play fancy games when I want
That's good, they aren't making any more unix-based apps from what I've heard. What kind of silly statement is that?
Trolling is a art,
Allow me to save you 43% off the listed bn.com price (I hope /. at least gets a cut at that price).
The awesome Bookpool has it for $22.75.
That goes for my thinkpad running Linux too. I can run microsoft programs, I don't but I could, and play "fancy games." While the game collection for OSX and Linux is increasing, its usually older games. I really don't find gaming enjoyable on a laptop anyway. My powermac G5 is a nice gaming machine with the addition of a sensible mouse. Now all I need to do is wait for Doom3 and Half Life 2. By the time they come out, my one year Apple warranty will have expired.
Mac OS X Hints is a great free resource for those wanting to get under the hood of OS X. They have stuff like Applescripts for automation, shareware reviews, and command line stuff. Bookmark it!
Despite its title as a book review, isn't this just another Apple-pimping slashvertisement?
Yes.
You say in your journal that your karma needs to go up. Well, it won't with such stupid comments. Apple has created a very good OS based on Unix, and applied their GUI and usability philosophy to it.
I have a windows box and a Mac. I would just like to point out that this too is essentially two different computers.
I have an emachines laptop that includes an Athlon64, 512MB RAM and an ATI 9600 Mobile. I bought a 15" AlBook with an ATI 9700/128MB RAM.
Yet, WoW runs faster on my emachines laptop, without a doubt. And on the forums I've heard that people are getting less framerates than my x86 laptop while running Dual 2.5 G5s with 6800 Ultra cards.
My question is, where's the bottleneck? Is it poor optimization for PPC? Or driver design? Or simply RISC vs CISC?
I was going to throw YellowDog on the AlBook because I love the hardware, but YD4 still doesn't have a sleep function, which is the same problem I have on the emachines. I've since gone back to fedora on the x86 and the difference in opening programs, scrolling, etc, is huge. Anyone out there with anecdotes on YellowDog vs OS X?
I am a long time PC user, dual booting Windows and Linux. Although I am not easily influenced by advertisements, Slashdot is doing a very good job convincing me to switch.
I know that Mac OS X is a great OS. I think I know the most important advantages of switching. What is holding me back, however, is the fact that no-one is talking about the disadvantages of doing so.
I know that there are certain applications which do not exist on Mac OS X. But I can do my research on that topic. What truly bothers me is that there might be things I do not expect to be missing, e.g. I recently learned that iBooks do not support extended desktop, or that Quicktime does not play fullscreen.
So I have a question to y'all switchers. Are there any annoyances you encountered when switching from Windows or Linux? Something unexpected?
...we've known this all for years. ...isn't this just another Apple-pimping slashvertisement?
No, it's a book describing the new Panther details of all the cool stuff that you 'already know.' Why so defensive?
You like your Macintosh better than me, don't you Dave? Dave? Can you hear me Dave?
The open source spirit would be to allow you to see his research and drafts. Open source fits within the realm of a capitalist system.
The free version of QT that comes with the box does not play fullscreen, but the full version ($35US, quicktime.apple.com) plays fullscreen very well, as well as allows you to edit QT content in many ways that the free version doesn't: add/remove tracks, adjust a plethora of attributes (size, aspect ratio, graphics mode, sound levels etc.) For example, I do a fair amount of basic video editing with iMovie, but iMovie won't let you swap the video track left to right, ie. car entering frame left now entering from the right. Full QuickTime does that in two or three clicks, without re-encoding.
HFS+ does have defraged files, it just defrags the FS over time.
So you cant say it never get defraged, it just knows how to clean up after itself. Thats a big difference than saying it never defragments.
How could you not go indepth in Resource forks? Thats the main difference between it and a normal BSD Box. Since most applications are GNU they dont care about them, and you have to use special programs to copy apple files, etc. Thats really the only annoying thing about the mac, resource forks (IMHO).. I know in theory its good to have fat binaries and such, with multiple help files, but since I'm an english only OS user, I dont need all the extra fluff.
And you can boot the system into console mode and treat it like a normal BSD box. I've become a little lazy and stopped using my Linux server and started using fink and applications under OSX. Screen, Irssi, squid, perl, etc, all the same applications and server processes I use daily are all there under OSX.
Sounds like an OK book, but I don't want to know about *nix side, I'm a unix admin already, I want to know the if's, how's of darwin hitting the metal. I dont need GNU overviews.
But thats me. I run gentoo linux on x86/ppc/sparc, but the Mac I leave running OSX.
Apparently the book that has all the information about networking, warts and all, hasn't been written yet. This book is as good as it gets, so far.
Ah. That was the answer to my question. (Where is the rest of the documentation for Open Directory?)
Thanks.
There are no trails. There are no trees out here.
Concerning the extended desktop on iBooks:. html
http://www.rutemoeller.com/mp/ibook/supportlist_e
will do the trick (easy, safe -list of supported machines, clean). Concerning the Quicktime full-screen, previous answers are complete (buy it if you also need editing, trick it, or just use VLC as you perhaps already do on Linux).
And yes, there are differences between Linux, Windows and MacOsX and that makes some of the possible annoyance.
If you know Linux well, you'll discover some little changes, like when you switch to FreeBSD or AIX or Solaris. Basically you can (configure; make; make install;) run most of Linux tools. You'll certainly miss the multi-desktop feature (not included but some free/sharewares do the trick) and discover Expose (whaaaou).
If you know Windows well, you'll find the Finder strange at the beginning, you'll perhaps regret the latest games (situation gets better but slowly), and some advanced P2P/Ripping tools (situation gets better really fast), you'll miss the global inconsistence you got accustomed to and perhaps some keyboard tricks (like calling menus with alt-E), you'll discover new Ms Prices (Office is really expensive on Mac and stealing it is easier but still forbidden), you'll miss the graphical admin (get server tools if you like admin with windows or get some of the freewares which do that well or remember it's Unix and you can do what you want with a terminal). And of course you'll discover "major updates" with "real features" (and "price";-( every 18 months.
There are plenty of good sides of course but you seem to have heard enough of them for today...
Just remember the first week is awkward and you have to realize you need to learn new moves. Don't try a small weekend switch and get ready to spend some time at the beginning to make your new /Users (oops, not /home nor /usr) feel good.
And ask some Mac users about your precise needs and habits, they'll certainly tell you how to find a solution.
ClaudeBBG
This has been addressed in several interviews with Win Game -> Mac porting houses. It seems that while raw OpenGL performance is about the same between a Mac and a similar PC, the differences come in the game design / optimization and other libraries used. Many coding decisions made in the original game were done with the Windows / x86 crowd in mind. Even many PC "OpenGL" games still use other DirectX libraries for sound, user I/O, and other tasks. Even some very basic considerations, such as data file read-in, is done in little endian. Differences like this are almost nill in a small academic test case, but are significant in a complex game. Virtual machines, such as those used for AI in games like Quake3 are also optimized for x86.
For an example of a "pretty good" port, try the latest Mac build of UT2004. It has a few more tweaks and makes uses of a newer version of OpenAL. It's still slower than the native Windows version, but it's not too bad.
I have personal biases, and I think we all do. But the fact remains, the best choice is to use the right tool for the job.
:) The only Mac I use these days is my PowerBook G4 I use for most of my personal web surfing, personal email, digital photography, digital home videos, and other light duty experimenting. It works like a charm and I love it. But I also love my other toys, and it's a PC and a PS2 that I play my games on. I don't bother running anything other than Enigmo, SimCity 4, and UT2004 on the PowerBook.
Mac diehards will flame me, but a Mac is not always the best tool.
If you live or work in a MS world, then no amount of utilities and features will ever make your Mac fit perfectly. However, if you only have to grab mail and swap calendar data from an exchange server and open/edit files from Office, then perhaps a Mac will be OK. If you need to access SMB shares and printers, Mac OS X should work fine out of the box. If your office has a screwy setup then you might need to use Dave. Then again, it might also be configured in such a way that your Mac may never be able to connect. A Mac isn't a Windows PC, so there's no guarantee.
If you need to work on a "pure" Unix system, you should be OK. It's POSIX compliant and has pretty much every OS feature found on FreeBSD (with some bits from OpenBSD) though implementation may be different.
If you need to use a Windows-only application, you could probably use Virtual PC, but performance will suck. Badly. Even on an overclocked 9 GHz G7.
You need to figure out what exactly your needs are and pick the right hardware and software for the job. I have friends and coworkers that use 8-year-old Silicon Graphics (SGI) workstations for both work and home use with great success!! I have friends who are highly talented software engineers that use nothing but Wnidows. I've had a college professor who does GIS R&D on a second generation iMac. There are all types.
As for me, these days I develop software for internal company use. My platform of choice is Linux, though I still run a few Solaris servers for various projects. I also have a company-issue ThinkPad running Win2K for the corp stuff, but it gets little use. At home I have a variety of machines... new, old, and ancient. Win, Mac, Linux, Unix, Prodos.
For the record, not all CompUSAs suffer this limitation. My local chain has a good sized Mac section right at the front of the store with a lot more than just RAM upgrades available. And keep in mind that a lot of off-the-shelf PC stuff (like internal HDs and peripherals) will work fine with the Mac and OS X.
Screen Spanning Doctor.
Bless it. Works beautifully on my iBook. I do however miss:
But those are the full sum of my regrets after moving from a Athlon 2800+/nForce 2 to an iBook. The OS easily makes up for the relatively slow hardware
Doesn't it make you feel good to know that our freedoms are protected by politicans, lawyers and journalists.
Quicksilver. Quicksilver. Quicksilver.
htttp://www.blacktree.com
Quicksilver. Quicksilver, and of course, Quicksilver.
I've seen this book in stores and I'm curious, why is the cover of a german shepard? Instead of, oh I dunno, maybe, a big cat?
On the other hand are basically Linux geeks who know how to do things with Linux/terminal and like to fiddle with Linux apps and all that jazz.
For the 'medium-pro' power user, people who don't know how to program or use Linux, they're completely lost. I fall into this category: I can fiddle around things to my hearts content with Windows, stuff that I merely can't do on a Mac unless I'm a Linux expert...
Oh, and I write this just after Disk Utility on the Mac deleted my whole hard-drive when I specifically told it to 'erase' one of the partitions. Thank God it was empty.
And I truly mean it. There has been so much influence from the FOSS, OSS, OSC, CIAFBINAACPHPGPG13, etc and so many features have been added that cater to my kind of work that it's not surprise that the powerbook count has been steadily rising at meetings and conferences. We had one guy left in our department that stubbornly refused to stop developing perl on his winXP laptop. We let him borrow a 12" powerbook for the weekend and he still has it. His winXP laptop is a place to sit one of those obnoxiously large-bottomed coffee pot/cups. XCode is fun stuff to play with. It was so fun we've ended up using Mac OS X for some small kiosk based products. So far we've purchased 5 Xserve RAID's for storage when we need something cheap and autonomous. They've been cheap as sin and rock solid reliable. Ich bein Impressed! (lame sealab reference) We probably aren't going to be using it for servers anytime soon. We have a pretty entrenched RHES 3.0 install and have just started to see the light at the end of the tunnel with the package management hell that naturally arises when you have UTF8 compatibility issues with Perl, a need for a version of aspell that isn't 3 fucking years old, or the ability to make a ton of custom rpm's for various things (ldap integration, sendmail customizations, etc) and not cause dependancy breakage hell.
For every annoying gentoo user, are three even more annoying anti-gentoo crybabies. Take Yosh from #Gimp for example.
The day before Thanksgiving I bought my first Mac (a 12in Ibook 1.2 Gig, and I talked the salesperson out of a bag and an extra 256Megs of Ram)
I for one will probably not be buying this book until I need it. Thus far I have been able to install everything I need to run my Linux Apps, and have loaded Gtk2 and Gkrellm and got them running without a hitch with Fink.
It took me about 6 hours of messing around with this laptop and saying to myself "I Hate Mac OSX-nix why am I doing this to myself" untill I had some kind of breakthrough, and I'm feeling much more comfortable; don't get me wrong, I love Linux and KDE (just MHO) but if this is as stable as I'm told since all I do with a laptop is check Email, web, Light linux admin and development, this laptop is nice with great battery life and light.
I am glad that this book is available, even if there is another pussycat in the wings. I don't think I will be upgrading right away, and good resources can be hard to come by.
I wish Safari had a web spellcheck.
freetradecampus.com
I'd Tell you all my secrets but I lie about my past
Anyone who buys into the OSX being "rock solid" obviously never ran an OSX server with over 100 clients. Take NetBoot for example - great system when it works, but has a tendency to simply stop working for seemingly no reason whatsoever.
If you want examples visit the Apple support discussions and look under OSX Server.
OSX Server is definitely a feminine OS. It does what it wants when it wants with no reason or accountability. You just have to accept whatever it decides to do and attempt to work around it.
My siblings are correct - I've got 512MB main memory, and 128M of video memory.
This is an HCI issue. "Cut" by itself is a destructive operation. Apple considers destructive operations on file system objects to be a Bad Thing, since it would be too easy for a novice user to remove a file this way. Remember, the Mac UI is supposed to be safe before powerful. You are, of course, free to disagree.
It's got something to do with the way I use computers, I guess. I'm a little bit ADD and switching between windows, scrolling (*especially* with a mouse wheel), opening new windows, and typing in general just seem more responsive on my x86 box, in XP and in Fedora (and FreeBSD). And no, I'm not one of the gentoo zealots bent on getting 1% performance boosts for three hours worth of work. I can live with a few trade-offs for convenience.
It might break down to just learning key combinations. I've turned on the "full keyboard access" since I wasn't raised on a mouse and a button, but I can't alt-tab between windows in the same program. A lot of the web buttons won't fire off when I hit enter, even though I'm using firefox on both OSs. I have no delete key. In half of the programs, trying to highlights lines of work with Shift+Command+Left/Right doesn't happen. It's the little things like having a scroll section on my trackpad that I miss.
I'm just really disappointed, I think, that the hardware feels so right, but the OS is the part that's too cushy. It holds my hand when I don't want it to.
I have Linux servers, (SuSE RH, Debian) but I prefer Macs for workstations.
/Users/home/me unlike using a windows lappy.
.... I cant wait for Tiger
I can use Apple X11 and do the ssh -X -l root user@domain.com to work on the Linux boxen while I am inside at lan speed, and I have found NX ( http://www.nomachine.com ) for everywhere else.
I like the OS X user interface more than I do Linux though, and I love my PowerBook.
OS X still is close enough that I can scp -r user@domain:/stuff/
When friends of mine as if OS X is similar to linux on the comand line I just tell them.
"It's like going to a Korean massage parlor and getting a Chinese girl. Most woul'nt know the difference"
In any case, OS X is where I choose to spend my time
Cheers
* Carthago Delenda Est *
Thank you very much.
At work I have a dual 1.8 G5 with two monitors, the main one an Apple Cinema Display 23" and the other a top of the line Dell 20".
You may have some stats to back up your claim of the Dell monitor's superiority, but in practice there is no comparison. All color-critical work I do is on the Cinema Display, the Dell is only for the extra real estate needed to hold all the Photoshop, Illustrator, Flash etc. menus.
Not that the Dell is a bad monitor--it's perfectly OK for normal use--but the Apple monitor is for real work and if you saw the two of them side by side it would be hard for you or anyone to disagree.
there is Vendetta Online - runs on a Mac .. but dunno if you will like it.
:)
Shame Legends doesn't run on a Mac - it runs on FreeBSD and Linux though. A port shouldn't be too much trouble to write - says , pretty clueless about porting stuff
Of course, there are. But they are mostly minor annoyances and few compared to linux/windows. Here are some: - No support for graphic tablets in GIMP (at least I couldn't figure it out) - The Finder doesn't have a 'cut' action, only copy & paste. - It's sometimes hard to remove packges which were installed using an installer application - The Finder hangs for a couple of seconds when trying to preview an avi which it can't play (But I'm shure you can change this) - OS Upgrades are expensive if you're used to linux - no native GTK port, only the X11 one These are just some random examples. There are many more, but IMO it's still the least annoying OS.
Apple's market share has been steadily increasing
Uh... hrm.. maybe not.
More machines are being sold (provided Apple delivers themmm but that's another story). But in terms of market share, it's gone down drasticaly recently (it's overing just around 2% from 4% five years ago).
This means that the number of PC unis being sold (Dell, Gateway etc) has risen more than Apple.
There are more Mac users. But the market share hasn't increased.
Since you started this nitpicking of other people's word choice...
It's you're.
as in
"yeah you are right"
Should not he have said then:
"yeah, it's your right"
?
The claim that "Since the iMac, Apple's market share has been steadily increasing, ..." is simply false.
In fiscal 1999, the first full year after the introduction of the iMac, Apple had sales of 3.5 millions computers. In fiscal 2004 they sold 3.3 millions computers. So, in terms of absolute numbers they are down. In terms of market share they are down a lot.
i'll tell you why: hardware. despite its reputation for industry-leading quality hardware, i have had an incredible string of bad luck with my laptops.
originally i bought an iBook, but in 29 days the monitor pooped out in a hailstorm of static (strange, but apparently not uncommon). they replaced the 'book (under 30 days is considered DOA) with a new iBook, which also pooped out in the exact same way in exactly 29 days.
i should have cut my losses right then and demanded my money back, but i allowed them to give me a PowerBook trade-up instead. this would have been great except that the PowerBook had the dreaded Bright Spots on the monitor. as a computer professional, i had to wait a while before i could give up my computer long enough to get it fixed, but i did eventually do that.
so at that point i would have had a PowerBook for the price of an iBook, except that the repair technician didn't quite do his job right: the monitor didn't quite close down and latch properly. also, every now and then the monitor would go dark. i mean, the image would still display on the screen but there was no brightness -- i think the power supply to the florescent tube light was failing, possibly because the technician's poor work left a bad signal connection at the hinge. it would always come back on again when i closed the case and reopened it, though, so i didn't worry about it.
i didn't worry about it, that is, until last week when the screen went dark and wouldn't come back on after a power cycle.
so let me recap: the first iBook's screen, the second iBook's screen, the PowerBook's first screen, AND the PowerBook's second screen all failed on me. i bought the first iBook about twenty months ago. on Monday my machine will go into the shop (and of course i'll be paying cash for this because it's out of warranty) and i will try my fifth laptop monitor.
if OS X weren't by far the best operating system software available on the planet earth, i would not even consider again purchasing Apple hardware (and i'm a life-long Mac man and zealot). this was my third Apple hardware purchase (I had an LC III and an iMac) and i would love nothing more than to make it my last. i have arrived at the end of my patience with respect to Apple hardware. if there are any more problems with this computer, i will abandon the Mac platform (with my next laptop purchase) in favor of commodity hardware and free software. i'd rather not do that, though, because OS X really is that much better than anything else i've ever used. really.
Almost all iBooks can be made to run 2 monitors: http://www.rutemoeller.com/mp/ibook/ibook_e.html
Office is really expensive on Mac and stealing it is easier but still forbidden
Umm, have you tried NeoOffice/J? It's awesome. Be sure to d/l the latest patch as well.
W
-------------------
This is my SIG. There are many like it, but this one is mine.
Inability to tab between buttons
(i.e., Save vs, Don't Save vs. Cancel) This is a specific case of keyboard accessibility problems, but in general I can do what I want via keyboard. Expose is awesome for switching windows, though I usually do use my mouse for that. My mouse is a Logitech with scrollwheel, I might add. I wish the builtin mouse on this Powerbook had a second button.
More shareware, less freeware
But the shareware is often pretty awesome stuff. AudioHijack is one I actually paid for ($32 for the Pro edition). Amadeus (sound editor, much like SoundForge etc.) is one I may purchase in the future. Another side effect of this is that I've had to teach myself some rudimentary shell scripting to do certain tasks. Like using YoSucker! (perl-based, I think?) to download Yahoo! mail messages. Just getting Perl working properly familiarized me with using CPAN's interactive shell to get modules.
MS Office Incompatibilities .doc format garbled the fractional characters (1/2, 1/4). And Word for Mac occasionally freaks out and loses all my menu preferences, or forgets how to properly open documents so that there is gibberish spewn in between coherent text. Often this goes away if I close Office and reopen it again.
Two in particular annoy me: recipe files I received in a Windows
UNIX inconsistencies
In many ways, the Darwin underbelly is almost exactly like FreeBSD, but certain differences are invisible until after you mess something up. One example: adding a user from the CLI doesn't work right. I tried to do that remotely once, but the permissions were screwed up somehow and I had to delete the account and add it from the GUI when I got home. Certain utilities that are usually installed on shell accounts I've had are absent. I just installed lynx. The "talk" program is buggy or broken. Other programs will not install properly unless you use the -no-cpp-precomp flag. I shouldn't have to know that, because a config file should detect OS X and add the flag, but a lot of developers forget about OS X. Certain Windows FTP programs (Filezilla?) have trouble dealing with the OS X filesystem.
No good free text editor
That is, until SubEthaEdit, which I've been using as of very recently, and enjoy. BBEditLite had a horrible bug where if more than one window was open, the "Save" and "Close" feature might indiscriminately close the wrong window, without (!!!) saving temporary data. And the BBEdit folks never fixed the freeware version, though I hear TextWrangler is nice (see above comment about shareware on Mac). Until Panther, X11 was a messy and unpredictable install, so emacs wasn't a real option. From the CLI, pico is functional but the cursor doesn't change position with a mouse click. I have to have that feature in a text editor. For me, vi is not even thinkable.
The Notorious RAM Issue
I have one point to add to the discussion on this topic: There are two slots for RAM in my laptop. Apple RAM is overpriced, but if I wanted 1GB total RAM, I'd still have to get 512MB RAM from Apple. The other option would have been getting 256MB RAM, then selling that on eBay and getting two 512MB sticks. I don't have time for that. And you can't buy a laptop with no RAM.
That's all I got.
Si la vida me da palo, yo la voy a soportar Si la vida me da palo, yo la voy a espabilar