 |
 |
CDs not automatically mounting unless forced
|
 |
|
 |
|
Clinically Insane
Join Date: Mar 2001
Location: yes
Status:
Offline
|
|
Hello,
Here is a tough one:
CDs and DVDs are not automatically mounting. If I do a "disktool -m disk1" in the terminal, the CD/DVD will mount, but the DVD player won't play DVDs that were mounted this way. The CDs and DVDs are visible within Disk Utility, which means that the hardware is detecting the media, it just won't mount it like it usually does.
I've repaired permissions, haven't run fsck yet. I've recently reinstalled the OS. This is some strange voodoo.
Any ideas?
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Dec 2000
Status:
Offline
|
|
NSString *toolName;
if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_2)
{
// OS is Jaguar or earlier
toolName = @"autodiskmount";
}
else
{
// OS is Panther or later
toolName = @"diskarbitrationd";
}
NSLog(@"Could you run ps -acx in the Terminal and see if %@ is running?",toolName);
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Mar 2001
Location: yes
Status:
Offline
|
|
I found the answer to my problem... if you log in as another user, it will correct the problem - even after logging back in as the original user. Very strange, but effective (especially with Fast User Switching).
What does that code do Charles?
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Mar 2001
Location: yes
Status:
Offline
|
|
I found the answer to my problem... if you log in as another user, it will correct the problem - even after logging back in as the original user. Very strange, but effective (especially with Fast User Switching).
What does that code do Charles?
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Dec 2000
Status:
Offline
|
|
Originally posted by besson3c:
What does that code do Charles?
It asks you if you could fire up the Terminal and see if a certain process is running when this problem occurs, and post the results in here, so I could see if the problem is due to one possible cause. Unfortunately, the name of the process to check for is different depending on whether you're running Panther or not, so I decided to phrase the question in Objective-C. C'mon, it's not that hard to figure out. I even left comments to make it easy.
Basically, it was just my attempt to find a 'cute' way to ask you whether you could check if diskarbitrationd (in Panther) or autodiskmount (earlier OS's) was running. Guess I should have just worded it in plain English... sorry about that.
(Last edited by CharlesS; Feb 16, 2004 at 10:08 PM.
)
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Mar 2001
Location: yes
Status:
Offline
|
|
Originally posted by CharlesS:
It asks you if you could fire up the Terminal and see if a certain process is running when this problem occurs, and post the results in here, so I could see if the problem is due to one possible cause. Unfortunately, the name of the process to check for is different depending on whether you're running Panther or not, so I decided to phrase the question in Objective-C. C'mon, it's not that hard to figure out. I even left comments to make it easy. 
Basically, it was just my attempt to find a 'cute' way to ask you whether you could check if diskarbitrationd (in Panther) or autodiskmount (earlier OS's) was running. Guess I should have just worded it in plain English... sorry about that.
You caught me at the wrong time I guess... I'm not smart sometimes.
|
|
|
| |
|
|
|
 |
|
 |
|
Addicted to MacNN
Join Date: Jan 2003
Location: ~/
Status:
Offline
|
|
|
|
|
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |
|