All sorts of problems...

Joined
Jul 24, 2006
Messages
6
Reaction score
0
Here's Part 1 of my situation:

My main harddrive crashed. I can start it up and log in to user account, but finder won't start once I log in. It only displays the background, and then the spinning beachball for eternity. My hunch is that it has something to do with harddrive space. I accidentally transferred too much data off of an external drive, to the point where I think there's less than 1MB of free memory.

Part 2 of the situation is this:

Acing on the aforementioned hunch, I'm attempting to mount my crashed drive as the slave to drive from another computer, so I can delete some of the extraneous data. Trouble is, the system won't boot when both drives are connected. I reset the jumpers, so it should be no problem. Is there a conflict since both drives have an OS installed? Or is the problem most likely something else?
 

Ric

Joined
May 14, 2004
Messages
4,260
Reaction score
5
Hi there and welcome,

can you start in Single User Mode...

If you can then we can delete some files from there, and then get the Mac to boot up !

Single User mode will dump you into a CLI (command line prompt) if you are not sure what to do once there let us know...

regards

Ric
 
Joined
Jul 24, 2006
Messages
6
Reaction score
0
I tried starting in single user mose, and I ran the file check utility from there, but I don't know how to delete particular files.

Interestingly, I was unable to safe boot.
 

Ric

Joined
May 14, 2004
Messages
4,260
Reaction score
5
Hi there,

Safe boot wouldn't work, you haven't the space...

Once you get dumped into the Terminal...

You can remove files with the rm command...

Do you know where the extra data is ?

If you know say, where there is one big folder you can delete it...

Code:
rm -r /Users/Yourusername/Desktop/testFolder/

This would delete a folder on the desktop called testFolder

regards

Ric
 
Joined
Jul 24, 2006
Messages
6
Reaction score
0
Unfortunately I'd have to browse the data. Is there a command that will list directory contents? Also, if I need to delete a file rather than a folder, would I just type

rm -r /Users/Yourusername/Desktop/testFolder/file.ext


Thanks for your help, by the way. I appreciate it tremendously.


-J
 

Ric

Joined
May 14, 2004
Messages
4,260
Reaction score
5
No problem..

To delete an individual file...

rm /Users/Yourusername/Desktop/testFolder/file.ext

regards

Ric
 

Ric

Joined
May 14, 2004
Messages
4,260
Reaction score
5
The root of your hard drive is

/

so type

Code:
cd /

to go to the top level of your drive...


then you can use

Code:
ls

to display the contents...

Code:
ls -la

will show invisibles and more info...

Code:
pwd

will tell you 'where' you are ie what folder you are in...

There's a bit two much to list here...

Have a read of this, it is targeted more for OS X Server, but it should give you a quick understanding of a few commands...

http://manuals.info.apple.com/en/MacOSXSrvr10.3_CommandLineAdminGuide.pdf

regards

Ric
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top