A flashing question mark appears when you start your Mac


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS A flashing question mark appears when you start your Mac
# 1  
Old 11-07-2008
A flashing question mark appears when you start your Mac

If you see a flashing question mark when you start your Mac, it's probably because it can't find the system software it needs to start up. Usually, all you have to do to get your Mac back up and running is remind it where its software is. After the flashing question mark appears, one of two things may happen: The computer starts up normally after a brief delay. The computer does not start up.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Cybersecurity

When i start CSF i cant connect VPS or download any data into it It appears i cant connect Linux VP?

It appears i cant connect linux VPS server via SSH or i cant SCP any file to it and i cant wget any file TO it (from inside it) while CSF (Config Server Firewall, LFD is running. Just after isntall in default configuration and after changing TESTING mode to LIVE mode. Trying to wget & install... (1 Reply)
Discussion started by: postcd
1 Replies

2. Shell Programming and Scripting

Question mark in filename

Dear All, I am trying to run some commands and I am getting question mark in filename as output files. Which is not a literal question mark however it is not standard output format for UNIX and it can not print it. The output files are extended with ? For example,... (2 Replies)
Discussion started by: hsmart
2 Replies

3. UNIX for Dummies Questions & Answers

trailing question mark in filename

I have a script(ex.sh) with one line in it, running in bash shell. ls -l > /usr/ngasi/contexts/tdevoe/private/ex.txt when I run it , it creates the file with a trailing question mark -rwx------ 1 tdevoe webapp 59 Jun 7 06:42 ex.sh -rw------- 1 tdevoe webapp 3761 Jun ... (3 Replies)
Discussion started by: devoetfd
3 Replies
Login or Register to Ask a Question
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)