Как я могу удалить папку «windows.old» в Mac OS X?

504
C. Wang

Я удалил windows.oldпапку, когда нахожусь в Mac OS X, и теперь она в корзине. Тем не менее, я не нашел ни пустого мусора, ни возврата папки на диск с установленной Windows.

Если я выберу пустую корзину, мой Mac OS X выйдет из строя, если я выберу безопасную пустую корзину, появится всплывающее окно с сообщением о том, что некоторые файлы в windows.oldпапке доступны только для чтения, а затем остановит процесс удаления. Теперь, как я могу удалить windows.old, потому что это большой размер, и я хочу вернуть свое хранилище.

1
Поместите остальное обратно туда, откуда оно пришло, и разберитесь с ним из Windows Tetsujin 8 лет назад 0

1 ответ на вопрос

0
JakeGould

Just open up a Terminal window in Mac OS X and run a command like this:

rm -rf /Users/cwang/.Trash/windows.old 

I’m assuming your user’s name is clang but just change that to match whatever user name that’s dealing with this issue and just run that command.

If somehow that still doesn’t work, I would then recommend rebooting your Mac in “Recovery Mode.” And then once you are fully booted into the “Recovery Mode” volume, open up the Terminal and do the following:

ls /Volumes/ 

That will list all connected volumes associated with your machine. Remember, when you are in “Recovery Mode” you are booting from a different volume than your main disk, so you need to figure out the full path to your main disk to fix things like this. Now note your system’s true volume name which might be something like Hard Disk/. With that noted, you can then run the rm -rf command like this:

rm -rf /Volumes/Hard\ Disk/Users/cwang/.Trash/windows.old 

And that should get rid of the windows.old directory as well. Now just reboot into your main Mac OS X volume and you should be good to go.

Похожие вопросы