Reimplementation of the classic Mac OS X 'Flying Icons' screensaver Releases No releases published. No packages published. One cannot downgrade a new Mac to a older version of the OS X operating system to work with hardware/software like one can do with a Windows PC and certain 'Pro' versions or better. Apple is Evil, pure and simple. The head of Apple Product Security is a top NSA guy named David Rice. System 6 (also referred to as System Software 6) is a graphical user interface-based operating system for Macintosh computers. It was released in 1988 by Apple Computer and was part of the classic Mac OS line of operating systems. System 6 was shipped with various Macintosh computers until it was succeeded by System 7 in 1991.
Mac Os Catalina
by Kyle D'Addario & Wincent Colaiuta Console Yourself: Understanding Mac OS X Logs Underneath the bright and shiny new Aqua interface of Mac OS X comes a completely new Unix foundation that is unlike anything Mac OS users have experienced before. One of the most attractive aspects of this new foundation is the set of industrial-strength networking applications that come with it. We've looked at many of these in previous Hot Cocoa columns. They include things like NFS (Network File System), Samba/CIFS (Windows filesharing), AFP (Apple File Protocol), FTP (File Transfer Protocol) and robust Web serving with Apache, the world's most popular Web server. As an inseparable part of all this Unix technology we are also welcome to the world of logs. Logs are text files that form a record of what has occurred on the system, much like a journal. This column will serve as an intro to some of the key logs that you'll find on your Mac OS X system. We'll start by looking at the system console log. So if you can't see the wood for the trees, console yourself and delve into the wonderful world of logs.. Insufficient adjectives mac os. The console app Take a look in the Applications/Utilties folder of your Mac OS install you'll find a little application named 'Console.' If you've ever tried running this app you'll have seen how it likes popping to the front of your screen every now and then and flashing some nearly intelligible textual messages for a second. What this program is actually doing is monitoring a little file called 'console.log' that is stored deep down in the filesystem at the following location: Everytime something new gets written to that file the Console app flashes its window up to the front and lets you know what's happening. So what sort of things get written to that file? Most often, the answer is error messages and warnings. All programs that are running on the machine will occasionally emit error, warning and status messages in a textual form. If the events they refer to aren't significant enough to demand a user's immediate attention, then they usually get routed to a log somewhere, and it is the console.log that gets many of them. Unfortunately, the Console application leaves a lot to be desired. This app is a simple front-end to the Unix command line tool 'tail.' When you run the graphical Console application what it is actually doing is issuing a 'tail -f /private/var/tmp/console.log' command behind the scenes, taking the output from that command and displaying it in a pretty Aqua window. (The tail command, as the name suggests, shows the tail end of a file. The '-f' switch instructs the tail command to stay running and 'follow' the file, continually watching the end and printing out any additional lines that get written to it.) A much more impressive way of displaying the console.log file is to use an excellent application called DesktopConsole by Matthew Drayton. This tiny 66 kilobyte app will follow the console.log file (or any other number of text files you nominate) and display them in a transparent window at the very back of your screen. The quest of the two buttons mac os. As shown in the screen shot below, this creates the illusion that the log files are actually being written to your desktop picture in real time.
This is the best type of eye candy because it serves a functional purpose in addition to being aesthetically pleasing and unobtrusive. As a quick glance at this thread on the MacNN forums will show, many people have been using DesktopConsole to help them monitor FTP or HTTP (web) access to their machines. Analyzing logs These logs can be confusing, even to experienced Unix users. Although I am reasonably familiar with various types of Unix, I still find that there are many, many, many lines in logs that I do not understand. The important message though is don't worry. The reason that programmers send their messages to logs and not into dialog boxes and error messages is that they don't deem them significant enough to bother users. If you see it in a log, it probably won't mean the end of the world. By the same token, logs can be very useful even though the ordinary user will never have any need to delve into them. For example, logs can provide you with additional diagnostic information when trying to troubleshoot a problem. You might be trying to unmount a FireWire drive by dragging its icon to the trash and you're puzzled at why it's not working. A quick look at the system log might just tell you what's up with some lines like this: What this message means is that on Aug 3 at 16:39 the autodiskmount process tried to unmount a disk and it was unable to because the device was busy. The word 'cannondale' here is the machine name. On your machine it might be something different, or it could be 'localhost' if you have left things at their default settings. Apple will be releasing Mac OS X 10.1 at the end of September and my looks at pre-release builds of the new version indicate that the 'console.log' file will not be active. Most of the information will instead be routed to the system.log file (which incidentally also exists on pre-10.1 versions of Mac OS X) which can be found at: Like many log files this one is readable only by owner 'root' and by members of group 'wheel.' This means that only a 'superuser' or an administrator can look at the file. It's a measure that's intended to increase security in case an unauthorized user or a guest gets a peek at the potentially sensitive information in the log. To finish off this week's Hot Cocoa column I'll examine a few more entries from the system.log file to demonstrate how they can be read. If you want to learn more about logs then it's a good idea to run a program like DesktopConsole for a few weeks and just keep an eye on a few key files like 'console.log' and 'system.log' -- and other log files of interest hidden away in /private/var/log/. You'll be surprised at how much you learn just from letting them sit there in the background. Let's start with a couple lines that will be sure to turn up in your logs at some point: These are the last two entries you'll see in the system.log before a machine reboots. They indicate that the syslogd process (the program that is responsible for writing all these messages to the logs!) has received a signal to quit and the machine is going to restart. (For more info on syslogd type 'man syslogd' in the terminal.) Next up we see a collection of messages issued during the startup process. The first few lines come from 'mach_kernel' which is the process at the very heart of Darwin. There's not much that happens on the system that the kernel doesn't know about, and its the kernel which is responsible for those lovely black and white 'panic' messages which appear when something goes really, really wrong. Here we can see the kernel finding the ATI Rage Mobility chipset on my logic board, recognizing my Ethernet interface and enabling packet filtering. The latter is handled by the ipfw program and although it doesn't do much in a default Mac OS X install, it can actually be configured to provide robust firewall functionality (type 'man ipfw' for more details). Following this we see messages coming from a number of other processes during the boot: NetInfo and lookupd both start, and we see network time synchronization kick in courtesy of ntpdate and ntpd. Finally we see automount (the process that automatically mounts removable media like CDs and hot-swappable drives like FireWire hard disks) and cron (the utility that starts various system maintenance functions at pre-determined times) start up. Even more information about the start up than this is available by issuing the 'dmesg' command at the terminal which outputs all of the messages that the kernel has issued since boot time. This is the same material that you would see if you held down Command+V during a boot (to force a 'verbose' boot) except this time it's not flying by so fast that you can't read it. Here you'll see information that the kernel emitted before the syslogd process even started, and hence before the messages could be output to the system.log. For example, the following brief excerpt shows the kernel detecting the USB subsystem very early on in the boot process. The two different numeric addresses correspond to the two ports on the back of the computer. Conclusion Like all things with Mac OS X there are two ways to learn about the console and the system logs: firstly, you can read what others have to say about them (like you are now); and secondly, you can go out there and get your feet wet yourself! Have a go with the DesktopConsole app and see what you can find out. There are plenty of useful purposes to which this little application can be put and one of the most useful is as a learning aid. The other is for monitoring all those background processes that Mac OS X runs behind the scenes. These daemons include things like the inbuilt FTP server and web server (which write entries into /private/var/log/ftp.log and into the /private/var/log/httpd/ directory respectively) as well as third party servers like hxd (the Unix Hotline daemon). Because these processes run invisibly in the background, there's no easy way to tell if people are accessing your server at any given time and what they're up to. But keep an eye on the logs and you'll soon see what's happening. Have fun! Wincent Colaiuta - [email protected] You are encouraged to send Richard your comments, or to post them below. Most Recent Hot Cocoa Columns Mac OS X & Firewalls: Part One - The Basics Console Yourself: Understanding Mac OS X Logs Making NFS Work On Mac OS X Hot Cocoa Archives Back to The Mac Observer For More Mac News! Kyle D'Addario is the assistant editor of The Mac Observer and has logged about as much time on Mac OS X as is humanly possible. Kyle studies Computer-Mediated Communication, whatever that is, at the graduate level, and was a founding member of the original Webintosh team. Wincent Colaiuta runs Macintosh news and criticism site, wincent.org, and joined The Mac Observer team as a contributor in March 2001. He has worked with computers since 1984, and his interests in that area include Macs, PHP programming and security. |