Just did another upgrade attempt, this time to Mojave 10.14.6 and it crashed my MacBook Air again!
Code:
ERROR_7E7AEE96CA
Again, it will not restore from a recent time machine backup, even though I made a full backup before attempting to upgrade! Darn! What is up with Apple????
Will have to reinstall macOS from the net and recover / migrate from my time machine backup.
I am a hard-core Mac user, with four Macs (One 12 core 2013 Mac Pro, one Mac Mini and two MacBook Airs, two iPhones), and this is really getting annoying!
Am I going to attempt to upgrade my Mac Pro running Mojave 10.14.6? NO WAY!
I am interested in knowing if anyone out there has been using the BSD UNIX that underlies
MacOS X. Is this an "industrial strength" version of UNIX? Can I run X-Windows on such
a machine? How about TeXing, pythoning, PERLing or using other useful UNIX goodies
near and dear to my shrunken... (1 Reply)
Hi all,
Everyday I used to parse the Catalina.out log file on my Redhat system for errors for a particular date. Could anybody be able to help me to create a command which can grep the contents of Catalina.out starting from particular date.
Please do not suggest command which greps only the... (12 Replies)
Hey!
I compiled TUN 1.1 driver on my Solaris 10 64bit, and everything was working fine, all the commands for installation were successfull (add_drv, devfsadm -i tun ... etc.)
and the driver was working fine as I got OpenVPN server up and running with successful clients attached. My only problem... (2 Replies)
Hi,
Recently i received a request to rotate logs of catalina.out (tomcat). The file size was about 807 MB. I used logadm to truncate the log ( -c ) and zip (-z 0) it.
Everything worked fine, catalina.out.0.gz was created (22 MB) and the size of original catalina.out became 0kb.
After... (2 Replies)
Hello Team,
I am trying to extract date from the following output and trying to compare with current date and if there is 10 minute difference between the two. it should logs message in the file server is started.can anyone help me to implement this in the script? (1 Reply)
Hi,
I need to monitor the tomcat log file called "Catalina.out" for any errors like out of memory,JDBC exceptions,broken pipe any other errors and exceptions
The script should monitor this file and send a mail instantly and create a text file with errors day to day.
Iam using Solaris... (3 Replies)
why,just beacuse that its the bottom layer uses a small amount of bsd code? In my opinion, macos and Unix are completely different. The directories are long directory structures. For example, /application, /system, /user, /volumes, etc. are completely different from the traditional /bin/ /sbin... (5 Replies)
Interestingly Apple has decided to switch the default shell for new users from bash to zsh in MacOS Catalina (10.15)
Use zsh as the default shell on your Mac - Apple Support
Another interesting fact is that Catalina also comes with /bin/dash (5 Replies)
Discussion started by: Scrutinizer
5 Replies
LEARN ABOUT OSX
mac::aete::parser
Mac::AETE::Parser(3) User Contributed Perl Documentation Mac::AETE::Parser(3)NAME
Mac::AETE::Parser - parses Macintosh AETE and AEUT resources.
SYNOPSIS
use Mac::AETE::Parser;
use Mac::AETE::Format::Dictionary;
$aete = Parser->new($aete_handle, $name);
$formatter = Dictionary->new;
$aete->set_format($formatter);
$aete->read;
$aete->write;
DESCRIPTION
The Parser module serves as a base class for the Mac::AETE::App and Mac::AETE::Dialect modules.
Methods
new Example: ($aete_handle is a handle containing a valid AETE resource. $name is the name of the application.)
use Mac::AETE::Parser;
use Mac::AETE::Format::Dictionary;
$aete = Parser->new($aete_handle, $name);
read Reads the data contained in the AETE resource or handle. Example:
$aete->read;
set_format
Sets the output formatter used during by the 'write' subroutine. Example:
$formatter = Dictionary->new;
$aete->set_format($formatter);
copy Copies all suites from one Parser object into another. Example:
$aete2 = Parser->new($aete_handle2, $another_name);
$aete->copy($aete2);
copies the suites from $aete2 into $aete.
merge Merges suites from one Parser object into another. Only the suites that exist in both objects will be replaced. Example:
$aete3 = Parser->new($aete_handle2, $another_name);
$aete->merge($aete3);
write Prints the contents of the AETE or AEUT resource using the current formatter.
$aete->write;
INHERITANCE
Parser does not inherit from any other modules.
AUTHOR
David Schooley <dcschooley@mediaone.net>
The data structures are adapted from modifications made to the original aeteconvert script by Chris Nandor.
perl v5.10.0 2006-06-01 Mac::AETE::Parser(3)