Justin Pot has been writing about technology for over a decade, with work appearing in Digital Trends, The Next Web, Lifehacker, MakeUseOf, and the Zapier Blog. He also runs the Hillsboro Signal, a volunteer-driven local news outlet he founded. Read more.
If you’re like me, you connect your Time Machine backup disk every time you’re at your desk. You know you should unmount that drive when it’s time to hit the road, but opening the Finder just to hit “Eject” feels like a waste of time.
Enter Semulov. This lightweight, open source application adds an “Eject” button to your Mac’s menu bar, so you can unmount any drive in just two clicks. You can even create a universal keyboard shortcut to unmount every drive connected to your computer, saving you from having to open the Finder and unmount everything individually.
To get started, download Semulov. The application comes in a ZIP file which you can unarchive by opening. Then, drag the icon to your Applications folder.
Start Semulov and you’ll see an Eject button in your menu bar. It looks just like the Eject button used back when Macs had optical drives and dinosaurs roamed the earth.
Click the icon and you’ll see a list of currently connected external drives; click a drive to unmount it. You’ll see a notification when the drive is ready to disconnect.
You can open drives by holding Option and clicking the drive; more on that later.
This application really doesn’t need to be more complicated than this, and for most users this is enough. But there’s a bit more power if you dig into the settings, which you can find by clicking the menu bar icon and heading to Semulov > Preferences.
A window will pop up with various options, the first of which is whether Semulov should start up when your mac does.
- Customize the menu bar icon, allowing it to show how many drives are currently mounted.
- Decide whether your startup disk should be listed. You can’t unmount your start up disk, so this would be purely informational.
- Add an “Eject All” button, and even define a keyboard shortcut for unmounting all drives.
- “Show Unmounted Volumes” does exactly what it says, allowing you to mount such drives simply by clicking them.
- Change whether clicking a drive unmounts it or opens the drive in Finder. Check this option and holding Option while clicking will eject the drive.
Below these options you’ll find a few more.
If you use a file browser besides Finder, you can specify an alternative application using the bundle ID. You can also set custom icons using regular expressions. The “Alternative disk layout” ignores names set by users in favor of the manufacturer’s name for a drive, and shows the relationship between partitions. The “Block mounts” option adds a button that temporarily prevents drives from being mounted. Finally, you can enter a few names of drives for the application to completely ignore.
For most users these features are overkill, but we like having the option to customize this tool just a little bit more.
Justin Pot has been writing about technology for over a decade, with work appearing in Digital Trends, The Next Web, Lifehacker, MakeUseOf, and the Zapier Blog. He also runs the Hillsboro Signal, a volunteer-driven local news outlet he founded. Read more.
If you’re like me, you connect your Time Machine backup disk every time you’re at your desk. You know you should unmount that drive when it’s time to hit the road, but opening the Finder just to hit “Eject” feels like a waste of time.
Enter Semulov. This lightweight, open source application adds an “Eject” button to your Mac’s menu bar, so you can unmount any drive in just two clicks. You can even create a universal keyboard shortcut to unmount every drive connected to your computer, saving you from having to open the Finder and unmount everything individually.
To get started, download Semulov. The application comes in a ZIP file which you can unarchive by opening. Then, drag the icon to your Applications folder.
Start Semulov and you’ll see an Eject button in your menu bar. It looks just like the Eject button used back when Macs had optical drives and dinosaurs roamed the earth.
Click the icon and you’ll see a list of currently connected external drives; click a drive to unmount it. You’ll see a notification when the drive is ready to disconnect.
You can open drives by holding Option and clicking the drive; more on that later.
This application really doesn’t need to be more complicated than this, and for most users this is enough. But there’s a bit more power if you dig into the settings, which you can find by clicking the menu bar icon and heading to Semulov > Preferences.
A window will pop up with various options, the first of which is whether Semulov should start up when your mac does.
- Customize the menu bar icon, allowing it to show how many drives are currently mounted.
- Decide whether your startup disk should be listed. You can’t unmount your start up disk, so this would be purely informational.
- Add an “Eject All” button, and even define a keyboard shortcut for unmounting all drives.
- “Show Unmounted Volumes” does exactly what it says, allowing you to mount such drives simply by clicking them.
- Change whether clicking a drive unmounts it or opens the drive in Finder. Check this option and holding Option while clicking will eject the drive.
Below these options you’ll find a few more.
If you use a file browser besides Finder, you can specify an alternative application using the bundle ID. You can also set custom icons using regular expressions. The “Alternative disk layout” ignores names set by users in favor of the manufacturer’s name for a drive, and shows the relationship between partitions. The “Block mounts” option adds a button that temporarily prevents drives from being mounted. Finally, you can enter a few names of drives for the application to completely ignore.
For most users these features are overkill, but we like having the option to customize this tool just a little bit more.
You can mount and unmount drives, volumes, and disks from the command line of MacOS and Mac OS X.
For many users, the easiest way to unmount a drive in Mac is to either just drag a volume into the Trash, use the eject keys, disconnect the drive, or use one of the force eject methods. Along the same lines, if you want to remount a drive you can usually just physically unplug the drive and plug it back again. But what if you want to be able to mount, unmount, and remount drives from the command line? That’s exactly what we’ll cover here.
This trick works with external USB disks, hard drives, Firewire, Thunderbolt, DVD’s, CD’s, network drives, even USB thumb drives, literally any volume that can be mounted and accessed through the incredibly helpful diskutil command. By using the command line to remount the drive, the entire process can be completed remotely if necessary through SSH, and without ever having to physically disconnect a drive from the Mac. This is infinitely useful for troubleshooting situations, for scripting and automation, and it’s a great trick for those of us who just like to tinker around in Terminal.
How to Unmount a Drive from Command Line on Mac
Let’s first cover unmounting drives. To do this you’ll need another volume attached or connected to the Mac in some form or another, then launch Terminal to get started (sits in /Applications/Utilities/).
1: List All Drives
The first thing you’ll need to do is list the connected drives. This will provide a list of all drives that are attached to the Mac, that are either mounted and unmounted, and all of their respective partitions. We are doing this so we can get the drive identifier, which is typically something like disk1s2, or disk2s2, etc
The output will look something like this:
$ diskutil list
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *121.3 GB disk0
1: EFI 209.7 MB disk0s1
2: Apple_HFS Macintosh HD 120.5 GB disk0s2
3: Apple_Boot Recovery HD 650.0 MB disk0s3
/dev/disk1
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *16.0 GB disk1
1: EFI 209.7 MB disk1s1
2: Apple_HFS OSXDaily 15.7 GB disk1s2
For the sake of this example, we’ll focus on the attached drive named “OSXDaily”, which happens to be an external USB thumb drive that appears last in the list. Note the identifier for that drive is “disk1s2” and we’ll carry that to the next series of commands to unmount and remount it.
It’s probably worth mentioning that drives will always be located in /dev/ and thus /dev/ will always be prefixed to the identifier.
2: Unmount the Specified Drive
Still using the diskutil command, we’ll point it at the drive in question to unmount.
diskutil unmount /dev/disk1s2
This will report back the named volume and location has been unmounted, like so:
$ diskutil unmount /dev/disk1s2
Volume OSXDaily on disk1s2 unmounted
That’s all there is to it. You’ll notice the drive is no longer accessible in Finder, but it will still be visible through diskutil from the command line, or the more familiar Disk Utility app in Mac OS X’s GUI.
How to Mount a Drive from the Command Line on Mac
If you can unmount a drive, of course you can mount or remount one too. The command sequence is very similar; locate the volume, then mount the drive.
1: Find the Drive to Mount
If you already know where the volume is located, you can ignore part 1 and jump straight to part 2, but let’s cover retrieving the volume identifier anyway. This time around we’ll shorten it a bit because we’ll assume we know the name of the drive to mount, thus we only need to locate the identifier. We’ll do this by using grep to shorten the output of the diskutil command like so:
$ diskutil list |grep OSXDaily
2: Apple_HFS OSXDaily 15.7 GB disk1s2
That output is obviously much shorter than the full output of diskutil list which we showed above.
For this example, the drive “OSXDaily” is still located at /dev/disk1s2 and that’s what we’ll mount.
2: Mount (or Remount) the Drive
To mount (or remount) a drive, we’ll use the same diskutil command with a new flag and inputs like so:
diskutil mount /dev/disk1s2
Using the same examples as elsewhere, here is what the command and the output will look like:
$ diskutil mount /dev/disk1s2
Volume OSXDaily on /dev/disk1s2 mounted
This obviously mounts the drive again, and it will also make the mounted volume visible again in the Mac OS X Finder and to GUI-based apps in the various Open or Save dialog boxes.
How to Unmount & Remount a Drive / Volume in a Single Command
Want to quickly unmount and remount the same volume, essentially power cycling it’s connectivity to the Mac? You can do that in a single command by stringing the two together like so:
diskutil unmount /dev/disk1s2;diskutil mount /dev/disk1s2;echo “Remounted Volume”
This would look like the following when executed:
$ diskutil unmount /dev/disk1s2;diskutil mount /dev/disk1s2;echo “Remounted Volume”
Volume OSXDaily on disk1s2 unmounted
Volume OSXDaily on /dev/disk1s2 mounted
Remounted Volume
If you happened to be watching the volume in the Finder during this process, you would find it to disappear briefly, then reappear almost immediately. The last echo portion is optional but it makes the entire command action even more verbose.
Thanks to Nilesh for the tip inspiration
Jika anda seperti saya, anda menyambung cakera sandaran Masa Mesin anda setiap kali anda berada di meja anda. Anda tahu anda perlu menyahmuatkan pemacu apabila tiba masanya untuk melanda jalan raya, tetapi membuka Finder hanya untuk memukul “Eject” merasakan seperti membuang masa.
Masukkan Semulov. Aplikasi sumber terbuka ringan ini menambah butang “Eject” ke bar menu Mac anda, jadi anda boleh menyahirkan sebarang pemacu dalam hanya dua klik. Anda juga boleh membuat jalan pintas papan kekunci sejagat untuk menghidupkan semula setiap pemacu yang disambungkan ke komputer anda, menjimatkan anda daripada perlu membuka Finder dan menyahirkan semuanya secara individu.
Untuk bermula, muat turun Semulov. Aplikasi ini datang dalam fail ZIP yang anda boleh unarchive dengan membuka. Kemudian, seret ikon ke folder Aplikasi anda.
Mula Semulov dan anda akan melihat butang Eject di bar menu anda. Ia kelihatan seperti butang Eject yang digunakan semula ketika Mac mempunyai pemacu optik dan dinosaur menjelajah bumi.
Klik ikon dan anda akan melihat senarai pemacu luaran yang bersambung; klik pemacu untuk menyahpasangnya. Anda akan melihat pemberitahuan apabila pemacu bersedia untuk memutuskan sambungan.
Anda boleh membuka pemacu dengan memegang Pilihan dan mengklik pemacu; lebih lagi pada masa itu.
Aplikasi ini benar-benar tidak perlu menjadi lebih rumit daripada ini, dan bagi kebanyakan pengguna ini sudah cukup. Tetapi ada sedikit lagi kuasa jika anda menggali ke dalam tetapan, yang boleh anda temukan dengan mengklik ikon bar menu dan menuju Semulov> Keutamaan.
Tetingkap akan muncul dengan pelbagai pilihan, yang pertama ialah sama ada Semulov perlu dimulakan apabila mac anda berfungsi.
Anda juga boleh:
- Peribadikan ikon bar menu, membolehkannya menunjukkan berapa banyak pemacu yang sedang dipasang.
- Memutuskan sama ada cakera permulaan anda perlu disenaraikan. Anda tidak boleh menghidupkan cakera permulaan anda, jadi ini semata-mata maklumat.
- Tambah butang “Eject All”, dan juga menentukan pintasan papan kekunci untuk menyahaktifkan semua pemacu.
- “Tunjukkan Volum Unmounted” sama dengan apa yang dikatakannya, membolehkan anda melancarkan pemacu semata-mata dengan mengkliknya.
- Tukar sama ada mengklik pemacu menanggalkannya atau membuka pemacu dalam Pencari. Semak opsyen ini dan tahan Pilihan semasa mengklik akan mengeluarkan pemacu.
Di bawah pilihan ini anda akan dapati beberapa lagi.
Jika anda menggunakan penyemak imbas fail selain Finder, anda boleh menentukan aplikasi alternatif menggunakan ID bundle. Anda juga boleh menetapkan ikon tersuai dengan menggunakan ungkapan biasa. “Susun atur cakera alternatif” mengabaikan nama yang ditetapkan oleh pengguna yang memihak kepada nama pengeluar untuk memandu, dan menunjukkan hubungan antara sekatan. Pilihan “Blok gunung” menambah butang yang sementara menghalang pemacu daripada dipasang. Akhirnya, anda boleh memasukkan beberapa nama pemacu untuk aplikasi itu sepenuhnya mengabaikan.
Bagi kebanyakan pengguna ciri-ciri ini terlalu berlebihan, tetapi kami suka mempunyai pilihan untuk menyesuaikan alat ini hanya sedikit lagi.
I have a Time Machine drive for my laptop.
I bring the machine to work. Every morning I right-click “Eject” the drive, and it takes forever or just doesn’t eject.
I’m in a hurry, so I either sudo /sbin/shutdown -h now or if I’m really in a rush just yank the drive (then get scolded by the OS when I log back in later).
What would be a better way?
MacBook Pro mid 2012 ; OS 10.12.1 (Sierra)
4 Answers 4
There is a 3rd party app named Mountain that gives you control over all your connected volumes. It’s not free, selling for $7 but they have a free trial period so you can test drive it. Mountain creates a menu item that user can use to mount, unmount, eject or load volumes. I can’t guarantee it is faster than your method but I use it to mount or unmount stubborn drives.
Maybe too much data to backup. reduce your time machine backup to an interval smaller than 4 hours, if the unmount is slow it is because the backup has too much to backup, or that your antivirus slows it a lot. therefore, if there is less to backup before ejection the unmounting should be quicker. Do not also forget to check monthly if your disk transfert rate become too slow, (copy a big file and count the time) . very long disk access are a sign for a forthcoming disk failure.
This is a clear problem with backups for laptops. You want portability, and don’t want to wait hours for a backup to finish.
Firstly, killing the backup processes while running may result in corrupted backup files: yanking the drive out may damage the mechanical drive itself causing loss of the whole volume.
How much data are you creating each day? Once the first backup on your entire storage is created, then it should only be adding the delta (changed files) every hour.
This is at home, before you leave for work? Your best bet is backing up to a network storage device on your wireless network. Sadly, Apple just killed off its Time Capsule products, but any NAS box should work. You could even plug in that drive to your router, if it has USB slots, though you’ll need to reformat it to NTFS.
Another alternative is to use Cloud Storage as a backup strategy.
Pokud jste jako já, připojíte záložní disk Time Machine vždy, když jste u svého stolu. Víte, že byste měli odpojit tuto jednotku, když je čas na cestu, ale otevření nálezce, jen aby jste zaskočili “Vysunout” se cítí jako ztráta času.
Vstupte do Semulova. Tato lehká aplikace s otevřeným zdrojovým kódem přidává do panelu nabídek Mac tlačítko “Vysunout”, takže můžete odpojit libovolnou jednotku pouze dvěma kliknutími. Můžete dokonce vytvořit univerzální klávesovou zkratku pro odpojení všech jednotek připojených k počítači, což vám ušetří od nutnosti otevřít Finder a odpojit všechno jednotlivě.
Chcete-li začít, stáhněte si Semulov. Aplikace je dodávána v souboru ZIP, který můžete otevírat otevřením. Poté přetáhněte ikonu do složky Aplikace.
Spusťte Semulov a na panelu nabídek se zobrazí tlačítko vysunutí. Vypadá to, jako by se tlačítko pro vysunutí používalo, když Mac měli optické mechaniky a dinosaury procházely Zemi.
Klikněte na ikonu a zobrazí se seznam aktuálně připojených externích jednotek; klikněte na jednotku, kterou chcete odpojit. Zobrazí se upozornění, když je jednotka připravena k odpojení.
Jednotky můžete otevřít podržením možnosti a klepnutím na jednotku; více na to později.
Tato aplikace opravdu nemusí potřebovat být složitější než toto a pro většinu uživatelů to stačí. Ovšem trochu více energie, pokud se podíváte do nastavení, které můžete najít klepnutím na ikonu na liště menu a směrem na Semulov> Předvolby.
Zobrazí se okno s různými možnostmi, z nichž první je, zda má Semulov spusťte, když se váš mac
- Upravit ikonu na liště menu, což vám umožní ukázat, kolik disků jsou aktuálně připojeny
- Rozhodněte se, zda má být uvedena vaše spouštěcí disk. Nemůžete odpojit spouštěcí disketu, takže by to bylo čistě informativní.
- Přidat tlačítko “Vysunout vše” a dokonce definovat klávesovou zkratku pro odpojení všech jednotek
- “Show Unmounted Volumes” říká, takže můžete tyto jednotky jednoduše připojit klepnutím na ně.
- Změňte, zda klepnutí na jednotku odpojí nebo otevře jednotku v aplikaci Finder. Zaškrtnutím této možnosti a přidržením volby při klepnutí se vysune jednotka
Pod těmito volbami najdete ještě pár dalších položek.
Pokud používáte kromě vyhledávače prohlížeč souborů, můžete pomocí ID svazku určit jinou aplikaci. Můžete také nastavit vlastní ikony pomocí regulárních výrazů. Rozložení alternativního disku ignoruje názvy nastavené uživateli ve prospěch názvu výrobce jednotky a zobrazuje vztah mezi oddíly. Volba “Připojení bloků” přidává tlačítko, které dočasně zabraňuje namontování měničů. Nakonec můžete zadat několik názvů jednotek pro aplikaci zcela ignorovat.
Pro většinu uživatelů jsou tyto funkce přehnané, ale máme rádi možnost upravit tento nástroj jen o trochu víc.
Systém Windows 10 je určen pro počítače s neomezeným připojením k Internetu a obvykle používá tolik z vašich stahování a nahrávání šířky pásma jak to chce, aniž by se ptala. Nastavení připojení jako měřeného zařízení vám dává zpět kontrolu a je to důležité pro některé typy připojení. To budete vždy chtít provést na připojení s datovými čipy, mobilními hotspoty, satelitními připojeními přes internet, telefonickými připojeními a Něco dalšího.
Pouze když jste si mysleli, že hračky nemohou být více otravné, nové internetové hračky jako Furby Connect a já -Que Intelligent Robot jsou chytřejší než jejich předchůdci, takže vaše dítě může klást otázky, dostávat odpovědi, posílat zvukové zprávy a další. A díky bezproblémovým bezpečnostním otvorům jsou také nebezpečné.
OWC this week announced a neat and tidy solution for quickly disconnecting multiple drives from any OWC dock, with the release of a free Dock Ejector utility.
The Mac app lives silently in your menu bar and allows you to safely eject all drives connected to your OWC dock with a single click, ensuring all data has been written before any disk is unmounted.
We’ve experienced a couple of occasions where drives have disconnected sluggishly from a 14-port OWC Thunderbolt 3 Dock (reviewed here), one of which resulted in fragmented data, so this free app is certainly a welcome one.
We tested Dock Ejector on a multi-disk Mac workstation using the above dock – as well as the older OWC Thunderbolt 2 Dock – and found it to work well. The one-click function removes the tedium of undocking devices one at a time before you can disconnect your Mac, and the utility lets you know when it’s safe to unplug the dock.
The app is compatible with all OWC docks, according to the company, including its 10-port USB-C Dock and five-port USB-C Travel Dock.
The Dock Ejector utility is compatible with Mac and Windows and can be downloaded for free from the OWC website. [Direct Link]
Top Rated Comments
Shift/Cmd-clicking them all in the Finder isn’t too hard, is it? Undocking them one at a time just sounds painful.
Well, a free convenience app is fine by me, but it would be nice if it could eject more than just anything connected to their own docks, though.
Jei esate kaip ir aš, kiekvieną kartą, kai esate prie stalo, prijunkite “Time Machine” atsarginį diską. Jūs žinote, kad turėtumėte išmontuoti tą diską, kai laikas pasukti į kelią, bet atverti “Finder” tik paspausti “Išmesti” atrodo kaip švaistymas laiko.
Įveskite Semulovą. Ši lengva, atviro kodo programa į “Mac” meniu juostą įtraukia mygtuką “Išstumti”, taigi bet kokį diską galite atjungti bet tik dviem paspaudimais. Netgi galite sukurti universalią spartieji klavišus, kad išjungtumėte kiekvieną prie kompiuterio prijungtą diską, taigi jums nereikės atidaryti “Finder” ir viską atskirai pašalinti.
Norėdami pradėti, atsisiųskite Semulov. Paraiška pateikiama ZIP failą, kurį galite atsiversti anarchyvuojant. Tada vilkite piktogramą į aplanką “Programos”.
Pradėkite “Semulov” ir savo meniu juostoje pamatysite mygtuką “Išmesti”. Tai atrodo taip, kaip “Eject” mygtukas naudojamas atgal, kai “Mac” turi optinius įrenginius, o dinozaurai kerėjo žemę.
Spustelėkite piktogramą ir pamatysite šiuo metu prijungtų išorinių diskų sąrašą; spustelėkite diską, kad jį demontuotumėte. Pamatysite pranešimą, kai įrenginys bus pasirengęs atjungti.
Galite atidaryti diskus, laikydami pasirinktį ir spustelėję diską; daugiau apie tai vėliau.
Ši programa tikrai neturi reikia būti sudėtingesnė už šią, o daugumai vartotojų tai yra pakankamai. Tačiau jei naudojate nustatymus, kuriuos galite rasti, paspauskite meniu juostos piktogramą ir antraštę į Semulov> Parinktys. “
Langas pasirodys su įvairiomis parinktimis, pirmasis iš kurių – ar Semulovas turėtų
Taip pat galite:
- Nustatyti meniu juostos piktogramą, leidžiančią parodyti, kiek šiuo metu yra įdiegta diskų.
- Nuspręskite, ar jūsų paleisties diskas turi būti išvardytas.
- Pridėti “Eject All” mygtuką ir net nustatyti klaviatūros spartųjį klavišą, norint išmontuoti visus diskus.
- “Rodyti neįrengtus tūrius” daro tai, ką tai sako, leidžiantis tvirtinti tokius įrenginius, tiesiog spustelėję juos.
- Pakeiskite, ar spustelėjus diską išjungia jį, ar atveria diską “Finder”. Pažymėkite šią parinktį ir laikydami pasirinktį spustelėję, išvesite diską.
Žemiau esančių parinkčių rasite dar kelias.
Jei naudojate failų naršyklę šalia “Finder”, galite nurodyti alternatyvią programą naudodami paketo ID. Taip pat galite nustatyti pasirinktines piktogramas naudojant įprastas išraiškas. “Alternatyvaus disko išdėstymas” ignoruoja naudotojų nustatytus vardus, skirtus disko gamintojo vardui, ir parodo ryšį tarp pertvarų. Pasirinkimas “Blokuoti tvirtinimai” prideda mygtuką, kuris laikinai neleidžia montuoti diskų. Galiausiai galite įvesti keletą programų pavadinimų, kad visiškai ignoruotumėte programą.
Daugumai vartotojų šios funkcijos yra pernelyg didelės, tačiau mums patinka galimybė tinkinti šį įrankį šiek tiek daugiau.
Tai atsitiko daugumai iš mūsų. Jūs ištrinate failą ir suprato, kad jums reikia jį atgal. Šiame vadove paaiškinama, kada jūs galite grįžti prie šio failo ir kaip tai padaryti. SUSIJUSIOS: Atsitiktinai ištrintų failų atkūrimas naudojant Recuva Mes išnagrinėjome įvairius įrankius, skirtus anksčiau ištrintoms byloms atkurti.
Chrome” labai lengva perjungti profilius naršyklėje. Jei kiti žmonės naudoja jūsų kompiuterį ir norite, kad jie negalėtų pasiekti jūsų “Chrome” profilio, kuriame yra jūsų žymės, istorija ir galbūt net išsaugoti slaptažodžiai, galite užblokuoti jį naudodami savo “Google” paskyros slaptažodį. Norėdami užblokuoti “Chrome” profilį su savo “Google” paskyros slaptažodį, turite pridėti naują asmenį “Chrome” kaip prižiūrimam vartotojui.
Chris Hoffman is Editor-in-Chief of How-To Geek. He’s written about technology for over a decade and was a PCWorld columnist for two years. Chris has written for The New York Times and Reader’s Digest, been interviewed as a technology expert on TV stations like Miami’s NBC 6, and had his work covered by news outlets like the BBC. Since 2011, Chris has written over 2,000 articles that have been read nearly one billion times—and that’s just here at How-To Geek. Read more.
You’ve probably heard that you always need to use the Safely Remove Hardware icon before unplugging a USB device. However, there’s also a good chance that you’ve unplugged a USB device without using this option and everything worked fine.
Windows itself tells you that you don’t need to use the Safely Remove Hardware option if you use certain settings – the default settings – but the advice Windows provides is misleading.
Quick Removal vs. Better Performance
Windows allows you to optimize your USB device for quick removal or improved performance. By default, Windows optimizes USB devices for quick removal. You can access this setting from the device manager – open the Start menu, type Device Manager, and press Enter to launch it.
Expand the Disk drives section in the Device Manager, right-click your device, and select Properties.
Select the Policies tab in the Properties window. You’ll notice that Windows says you can disconnect your USB device safely without using the Safely Remove Hardware notification icon, so this means you can unplug your USB device without ever safely removing it, right? Not so fast.
Data Corruption Danger
The Windows dialog shown above is misleading. If you unplug your USB device while data is being written to it – for example, while you’re moving files to it or while you’re saving a file to it – this can result in data corruption. No matter which option you use, you should ensure that your USB device isn’t in-use before unplugging it – some USB sticks may have lights on them that blink while they’re being used.
However, even if the USB device doesn’t appear to be in-use, it may still be in-use. A program in the background may be writing to the drive – so data corruption could result if you unplugged the drive. If your USB stick doesn’t appear to be in-use, you can probably unplug it without any data corruption occurring – however, to be safe, it’s still a good idea to use the Safely Remove Hardware option. When you eject a device, Windows will tell you when it’s safe to remove – ensuring all programs are done with it.
Write Caching
If you select the Better Performance option, Windows will cache data instead of writing it to the USB device immediately. This will improve your device’s performance – however, data corruption is much more likely to occur if you unplug the USB device without using the Safely Remove Hardware option. If caching is enabled, Windows won’t write the data to your USB device immediately – even if the data appears to have been written to the device and all file progress dialogs are closed, the data may just be cached on your system.
When you eject a device, Windows will flush the write cache to the disk, ensuring all necessary changes are made before notifying you when it’s safe to remove the drive.
While the Quick Removal option decreases USB performance, it’s the default to minimize the chances of data corruption in day-to-day use – many people may forget to use – or never use – the Safely Remove Hardware option when unplugging USB devices.
Safely Removing Hardware
Ultimately, no matter which option you use, you should use the Safely Remove Hardware icon and eject your device before unplugging it. You can also right-click it in the Computer window and select Eject. Windows will tell you when it’s safe to remove the device, eliminating any changes of data corruption.
This advice doesn’t just apply to Windows – if you’re using Linux, you should use the Eject option in your file manager before unplugging a USB device, too. The same goes for Mac OS X.
Ako ste poput mene, spojite disk rezervne kopije Time Machinea svaki put kad ste za stolom. Znate da trebate demontirati tu vožnju kada dođe vrijeme da krenete na put, ali otvaranje Findera samo da biste pritisnuli “Eject” osjeća se kao gubljenje vremena.
Uđite u Semulova. Ova lagana aplikacija otvorenog koda dodaje gumb “Izbaci” na traci izbornika vašeg Mac računala, tako da možete isključiti bilo koji disk u samo dva klika. Možete čak stvoriti univerzalni tipkovnički prečac kako biste uklonili svaki disk koji je povezan s vašim računalom, čime ste uštedjeli da morate otvoriti Finder i isključiti sve pojedinačno.
Za početak, preuzmite Semulov. Aplikacija dolazi u ZIP datoteci koju možete otvarati arhiviranjem. Zatim povucite ikonu u mapu Aplikacije.
Pokrenite Semulov i vidjet ćete gumb Izbaci na traci izbornika. Izgleda kao da se gumb Eject koristi kada su Macovi imali optičke pogone, a dinosauri su lutali zemljom.
Kliknite ikonu i vidjet ćete popis trenutno spojenih vanjskih pogona; kliknite pogon da biste ga demontirali. Vidjet ćete obavijest kada je pogon spreman za prekid veze.
Pogone možete otvoriti tako da držite Option i kliknete pogon; više o tome kasnije.
Ovaj program ne mora biti kompliciraniji od toga, a za većinu korisnika to je dovoljno. No, ima malo više snage ako kopate u postavke, koje možete pronaći klikom na ikonu trake izbornika i naslovom na Semulov> Postavke.
Pojavit će se prozor s raznim opcijama, od kojih je prvi treba li Semulov pokrenuti kada vaš Mac radi.
- Prilagodite ikonu trake izbornika, omogućujući joj da prikaže koliko je pogona trenutno montirano.
- Odlučite hoće li vaš disk za pokretanje biti naveden. Ne možete demontirati početni disk tako da bi to bio isključivo informativan.
- Dodajte gumb “Izbaci sve”, pa čak i definirajte tipkovnički prečac za uklanjanje svih pogona.
- “Show Unmounted Volumes” radi upravo ono što kaže, omogućujući vam da montirate takve diskove jednostavnim klikom na njih.
- Promijenite je li klikanje pogona isključuje ili otvara pogon u programu Finder. Označite ovu opciju i držite Option dok klikate izbacit će pogon.
Ispod tih opcija naći ćete još nekoliko.
Ako koristite preglednik datoteka, osim Findera, možete navesti alternativnu aplikaciju pomoću ID paketa. Možete postaviti i prilagođene ikone pomoću regularnih izraza. “Alternativni izgled diska” zanemaruje imena postavljena od strane korisnika u korist imena proizvođača za pogon i prikazuje odnos između particija. Opcija “Block mounts” dodaje gumb koji privremeno sprječava montiranje pogona. Konačno, možete unijeti nekoliko naziva pogona za potpuno zanemarivanje aplikacije.
Za većinu korisnika ove značajke su pretjerane, ali volimo imati mogućnost prilagodbe ovog alata samo malo više.
Geoffrey_Carr
Kui sa oled nagu mina, ühendate oma Time Machine varukoopia ketta iga kord, kui sa oled oma laua taga. Teate, et peaksite seda sõita lahti pakkima, kui on aega tee lüüa, kuid Finder avamine lihtsalt “Eject” kuvamiseks tundub aja raiskamist.
Sisestage Semulov. See kerge avatud lähtekoodiga rakendus lisab teie Maci menüüribale nupu “Eject”, nii et võite eemaldada mis tahes draivi ainult kahe klõpsuga. Võite isegi luua universaalse kiirklahvi, et eemaldada iga arvutiga ühendatud kettaseade, jättes sulle vajaduse avada Finder ja eemaldada kõik isiklikult.
Alustamiseks laadige alla Semulov. Rakendus pärineb ZIP-failist, mida saate avanemisel arhiivida. Seejärel lohista ikoon kausta Applications (Rakendused).
Käivitage Semulov ja näete menüüribal nuppu Eject (Eject). See näeb välja nagu Eject nuppu, mida kasutati tagasi, kui Macidel oli optilised kettad ja dinosaurused rändasid maad.
Klõpsake ikoonil ja näete praegu ühendatud välise draivide nimekirja; klõpsake selle eemaldamiseks kettale. Näete märguannet, kui ketas on lahti ühendamiseks valmis.
Võid avad avada, hoides Optsiooni ja klõpsates draivi; seda veel hiljem.
See rakendus seda tegelikult ei tee vajadus et see on keerulisem kui see, ja enamikule kasutajatele piisab. Kuid seal on natuke rohkem jõudu, kui teete seadistusi, mida leiate, klõpsates menüüriba ikooni ja suundudes Semulov> Preferences.
Avaneb aken erinevate valikutega, millest esimene on see, kas Semulov peaks oma mac-i käivitamisel käivituma.
- Kohandage menüüriba ikoon, mis võimaldab näidata, kui palju drives on hetkel paigaldatud.
- Otsustage, kas teie käivitusketast tuleks loetleda. Sa ei saa oma stardiserveri eemaldada, seega oleks see puhtalt informatiivne.
- Lisage nupp “Eject all” ja määrake isegi kõigi kiiruste eemaldamiseks kiirklahv.
- Näidata mittekonkureeritud mahtu, on täpselt see, mida ta ütleb, võimaldades selliseid draive paigaldada lihtsalt nende klõpsates.
- Muutke, kas ketta klõpsamine eemaldab selle või avab Finderis draivi. Märkige see suvand ja hoidke valiku nuppu klõpsates draivi välja.
Allpool toodud valikuid leiate veel mõned.
Kui kasutate Finderi kõrval failibrauseri, võite määrata paketi ID abil alternatiivse rakenduse. Samuti võite regulaaravaldiste abil kasutada kohandatud ikoone. Alternatiivse ketta kujundus ignoreerib kasutajate määratud nimesid tootja nime järgi draivile ja näitab seost vaheseinte vahel. Valik “Blokeeri alused” lisab nupule, mis ajutiselt takistab kettaseadmete paigaldamist. Lõpuks võite sisestada mõne draivide nimede, et rakendus täielikult ignoreerida.
Enamiku kasutajate jaoks on need funktsioonid ületähtsad, kuid meile meeldib võimalus selle tööriista veidi natuke rohkem kohandada.
Voyager
RoCaRay
Go to ‘Control Panel’ (Advanced Mode) – then ‘External Devices’. From there, you can select the desired USB drive and click on ‘Eject’.
Alternatively, you may find an ‘External Drive’ icon on the DSM task bar (top of window, left of the ‘Notifications’ icon). Clicking on that will also take you to a window that has an ‘Eject’ option.
RoCaRay
- 26. Oct 2021
Go to ‘Control Panel’ (Advanced Mode) – then ‘External Devices’. From there, you can select the desired USB drive and click on ‘Eject’.
Alternatively, you may find an ‘External Drive’ icon on the DSM task bar (top of window, left of the ‘Notifications’ icon). Clicking on that will also take you to a window that has an ‘Eject’ option.
Voyager
- 27. Oct 2021
- Original poster
- #3
RoCaRay
- 27. Oct 2021
Voyager
- 31. Oct 2021
- Original poster
- #5
RoCaRay
- 31. Oct 2021
Sorry to hear that. I’ve experienced that scenario in the past; and never found a definitive cause or solution. Hopefully someone on the forum will have more insight.
I was generally able to see the USB device both places after powering the NAS down and back up – with the USB device attached and on.
fredbert
- 31. Oct 2021
Telos
- 31. Oct 2021
Voyager
- 31. Oct 2021
- Last edited: 31. Oct 2021
- Original poster
- #9
Hi fredbert, I checked the Settings tab in Hyper Backup and did not find any option to eject the drive when the backup task completes. However, I just discovered that there is a log file, and found the following entry: “The backup destination device of the backup task [Local Storage 1] is unmount successfully.” So perhaps Hyper Backup automatically (without giving me a choice) ejects the USB drive at completion?
This is good (now I don’t need to shutdown to eject the drive), but then I have a second question regarding the Backup Integrity Check: If Hyper Backup automatically ejects after the backup is done, then doesn’t that prevent the Backup Integrity Check from running? I don’t see any log entry that says Backup Integrity Check was run (or that it failed to run, for that matter), so that is strange.
Is there a way to allow the Backup Integrity Check to run before Hyper Backup automatically ejects the USB drive?
The menu bar is a great place to perform quick searches, track battery life, and switch Wi-Fi networks on your Mac, but it can do way more than that if you let it. I’ve rounded up some menu apps below that not only have features that will boost your productivity, but are lightweight enough to run entirely from the menu bar.
The majority of these menu bar apps are available through the Mac App Store, but for the few that aren’t, you will have to download either a .dmg or .zip file and install the apps manually. You might also need to adjust your security settings to allow some of these apps to run.
1. Easier Copy/Paste Functionality
With Clip Menu, you’ll no longer need to worry about copy/pasting text or images one at a time. Instead, you’ll have access to the ten most-recent clipboard entries, which you can copy directly from the Clip Menu icon in the menu bar.
2. Stupid-Fast Drive Ejecting
If you are constantly mounting and unmounting drives from your Mac, you know how annoying it can be to go to each individual drive icon and click “Eject.”
Ejector makes the entire process a two-click procedure. All you have to do is click its menu bar icon and hit “Eject All” to unmount every peripheral drive connected to your Mac. Individual drives can also be unmounted if you’d rather not eject everything.
3. Better iTunes Control
iTunes support apps are nothing new, but most of them only give you playback control shortcuts and they aren’t always free. BarTunes, on the other hand, also gives you the ability to change a song’s rating and displays the current song’s album art for free.
4. Quickly Organize & Use Screenshots
I take loads of screenshots for articles and guides, and QuickShot is the best tool to help me keep track of them. Right when I take screenshot, it gets stored in the QuickShot menu bar popup, allowing me to easily drag-and-drop them anywhere I want, which makes sending emails or creating reports much easier.
5. Safely Share Screen Recordings
When screenshots don’t cut it when helping others troubleshoot, I usually have to send a quick video recording. This usually means recording a screencast, uploading it to a cloud service, then sending the link. But with Recordit, the entire process is automated.
Once you click “Record” from the menu bar icon, the service will let you select a portion of the screen to record. Once you click “Stop,” a link will be copied to your clipboard that can be shared with anyone.
While this app is free, there is a $29.00 Pro version which allows you to remove the five-minute recording limit and add passwords to prevent strangers from watching them.
6. Change Display Resolutions with a Click
For those of you who use your Mac as media center and have projectors or external monitors hooked up, you know exactly how hard it can be to get the mirroring and resolution settings just right.
To make this process a whole lot easier, you can use Display Menu, which gives you all the same options that come with the regular OS X Display menu bar icon, but with the added bonus of changing your main resolution at any time.
7. Put Your Finder in the Menu Bar
The Finder sidebar is a great way to quickly navigate to your favorite folders, but with XMenu, you get the same functionality built into your menu bar.
By default, you will only be able to add predefined directories, but if you open the preferences, you can enable a user-defined XMenu. With that enabled, open up your Home folder, then go to /Library/Application Support/XMenu/Custom and begin dropping aliases of your favorite apps, folders, and documents. Those will be available from the XMenu with a cog icon.
If you created a custom XMenu, you would have also noticed a Snippets category, which can store text files that can be copied to your clipboard similar to the way ClipMenu works.
8. Access System Preferences
You may have noticed that XMenu did not have a way to add shortcuts to System Preference panes, but that’s where MenuPrefs comes in. You can either have shortcuts to all the System Preference categories, or make a list of the ones you most frequently use.
With these tools, you’ll hopefully be able to get way more out of your menu bar in Mac OS X. If you have an menu bar app you love that I didn’t cover, let me know in the comments below!
Follow Apple Hacks over on Facebook and Twitter, or Gadget Hacks over on Facebook, Google+, and Twitter, for more Apple tips.
Keep Your Connection Secure Without a Monthly Bill. Get a lifetime subscription to VPN Unlimited for all your devices with a one-time purchase from the new Gadget Hacks Shop, and watch Hulu or Netflix without regional restrictions, increase security when browsing on public networks, and more.
אם אתה אוהב אותי, אתה מתחבר דיסק גיבוי מכונת הזמן שלך בכל פעם שאתה ליד השולחן שלך. אתה יודע שאתה צריך unmount כי הכונן כאשר הגיע הזמן להכות את הכביש, אבל פתיחת Finder רק כדי להכות “להוציא” מרגיש כמו בזבוז זמן.
הזן סמולוב. זה קל, יישום קוד פתוח מוסיף כפתור “להוציא” אל שורת התפריטים של Mac שלך, כך שתוכל לבטל את טעינת כל הכונן רק שני קליקים. אתה יכול גם ליצור קיצור מקשים אוניברסלי כדי לבטל את טעינת כל הכונן המחובר למחשב, ובכך חוסך ממך לפתוח את Finder ו unmount הכל בנפרד.
כדי להתחיל, הורד את Semulov. היישום מגיע בקובץ ZIP שבו אתה יכול לשחרר את הארכיון על ידי פתיחה. לאחר מכן, גרור את הסמל לתיקיית היישומים שלך.
התחל את Semulov ותראה לחצן ‘הוצא’ בשורת התפריט. זה נראה בדיוק כמו כפתור הוצא בשימוש בחזרה כאשר Macs היו כוננים אופטיים ודינוזאורים שוטטו בכדור הארץ.
לחץ על הסמל ותראה רשימה של כוננים חיצוניים מחוברים כעת; לחץ על כונן כדי לבטל את טעינתו. תוצג הודעה כאשר הכונן מוכן להתנתקות.
באפשרותך לפתוח כוננים על-ידי לחיצה על Option ולחיצה על הכונן; עוד על כך מאוחר יותר.
יישום זה באמת לא צריך להיות יותר מסובך מזה, ועל רוב המשתמשים זה מספיק. אבל יש קצת יותר כוח אם אתה לחפור לתוך ההגדרות, אשר תוכל למצוא על ידי לחיצה על סמל שורת התפריטים הכותרת אל Semulov> העדפות.
חלון יצוץ עם אפשרויות שונות, הראשון שבהם הוא Semulov צריך להתחיל כאשר המק שלך עושה.
- התאם אישית את סמל שורת התפריטים, מה שמאפשר לו להציג את מספר הכוננים המותקנים כעת.
- החלט אם יש לציין את תקליטור האתחול. אתה לא יכול לטעון את דיסק ההפעלה שלך, אז זה יהיה מידע בלבד.
- הוספת כפתור “הוצא הכל”, ואפילו להגדיר קיצור מקשים עבור unmounting כל הכוננים.
- “הצג Unmounted כרכים” עושה בדיוק מה זה אומר, ומאפשר לך לעלות כוננים כאלה פשוט על ידי לחיצה עליהם.
- שינוי אם לחיצה על כונן תוציא אותו או תפתח את הכונן ב- Finder. סמן אפשרות זו והחזק את Option תוך כדי לחיצה על יציאת הכונן.
מתחת לאפשרויות אלה תמצא עוד כמה.
אם אתה משתמש בדפדפן קבצים מלבד Finder, באפשרותך לציין יישום חלופי באמצעות מזהה החבילה. ניתן גם להגדיר סמלים מותאמים אישית באמצעות ביטויים רגולריים. “פריסת הדיסק האלטרנטיבי” מתעלמת משמות שהוגדרו על ידי משתמשים לטובת שם היצרן עבור כונן, ומראה את הקשר בין המחיצות. האפשרות “Block mounts” מוסיפה לחצן שמונע באופן זמני את התקנת הכוננים. לבסוף, ניתן להזין כמה שמות של כוננים עבור היישום להתעלם לחלוטין.
עבור רוב המשתמשים תכונות אלה הם overkill, אבל אנחנו אוהבים את האפשרות להתאים אישית את הכלי הזה רק קצת יותר.
The next time you’re at the command line and need to eject every single mounted volume, hard drive, disk, disk image, and/or external drive attached to a Mac, you can instantly eject them all in one fell swoop with a handy osascript command string. This is great if you work frequently in the Terminal and you’re wanting to quickly pack up a workstation and head out, but it’s also very useful for remotely managing Macs through an ssh connection, or adding to a shell script, amongst other potential uses.
For those who are unfamiliar with osascript, it’s a command line interface to AppleScript that allows you to execute AppleScripts and OSA language scripts from the terminal. The functionality is quite simple, you basically just feed it a script or statement that you’d otherwise place into the AppleScript Editor, and the whole thing is handled from the terminal rather than having to launch into the GUI app within OS X. Let’s use osascript to eject all the mounted volumes on a Mac.
Ejecting All Mounted Volumes, Drives, and Disk Images via Terminal
From the Terminal, run the following command string on a single line:
osascript -e ‘tell application “Finder” to eject (every disk whose ejectable is true)’
As usual with the command line, be sure the entire command syntax is on one line. Unless your terminal window is set very large it will likely wrap, that’s ok.
The moment you hit the enter key to run the command, volumes will start ejecting. Disk images and network volumes go immediately, while external spinning hard drives will spin up first before ejecting. Nonetheless, even if you have to wait for the spin up of some drives the entire task is very fast and there is no further interaction required.
There are certainly other ways to do this, including with the hdiutil and diskutil tools, but the osascript method is probably the fastest since it ejects everything without having to use mount points. If you happen to know of another method to mass eject volumes, perhaps one that is cross platform compatible so that it’d work in Mac OS X as well as linux, do let us know in the comments.
Find yourself using this often? Consider adding it to your bash_profile with an alias to shorten the length of the command. Simply append something like the following to .bash_profile for this purpose:
alias ejectall=’osascript -e ‘tell application “Finder” to eject (every disk whose ejectable is true)”
This allows you only have to type ‘ejectall’ rather than the entire command string.
Of course, this is all a bit advanced, and most Mac users are better served ejecting disks by holding down the eject key, or going through the OS X Finder by finding them in the sidebar, hovering over the name, and clicking the eject button.
Summary: In this blog, we’ll share a variety of D-I-Y methods on how to resolve external hard drive sleep problems on Mac. And don’t worry about your data stored on Mac external hard drive having the ‘sleep problem’. Download the free trial of Stellar Data Recovery Professional for Mac. Recover the data from hard drives on Mac systems running on macOS Monterey, Big Sur, Catalina, or earlier.
Table of Content
The 7 useful methods you will learn are listed down as:
Methods to Fix External Hard Drive Sleep Issue
1. Reconnect the External Hard Drive
Activate your sleeping external hard drive by reconnecting it to your Mac. The drive will now be visible in Finder, and you can access the storage medium for read-write operation.
2. Reboot Your Mac
With the external hard drive connected, reboot your Mac to fix any system misconfiguration, error, or otherwise. It’ll revive the inactive external storage drive, and you can use it as usual.
3. Tweak macOS Sleep Setting
To resolve Mac external hard drive sleep issue, correct the default sleep setting from the Energy Saver window. Steps are as follows:
- Go to Apple menu >System Preferences >Energy Saver.
2. From the Energy Saver window, deselect “Put hard disks to sleep when possible” checkbox in Battery and Power Adapter panel.
Now, your external hard disk will remain active. This setting won’t affect SSD, as it doesn’t have any moving component.
4. Reinstall Hard Drive Software
Incompatible hard drive software can prevent macOS from performing correctly. So, uninstall the driver from your Mac. Next, visit the manufacturer’s website and download the latest, compatible driver. Now, install the driver to fix the external hard drive sleep problem.
5. Install the Latest Version of macOS
Bugs in Mac OS X or macOS may also result in the external hard drive sleep problem. Update or upgrade the operating system to the latest version to patch up the issue. Steps are as follows:
- Go to Apple menu >System Preferences >Software Update.
- If updates are available, click the Update Now button.
For macOS High Sierra, Sierra, El Captain, or an earlier version, perform the following:
- Open App Store then click Updates from the toolbar.
- Click the UPDATE ALL button to download and install the available updates.
If you have Mac OS X Lion or Snow Leopard, execute the following:
- Go to the Apple menu >Software Update.
6. Repair the External Hard Drive
To fix any unknown hard drive issues, try repairing the Mac storage drive. Steps are as follows:
- Press Command + Space Bar to open Spotlight.
- Type “disk utility” then press Return to open the Disk Utility app.
- Select the external hard drive from the left panel and click the First Aid tab.
- Click Run to initiate the drive verification and repair process.
Or else, use file system consistency check (fsck) command in Single User Mode as explained next:
- Start or restart your Mac then immediately press-hold Command + S keys.
- At the command line, type /sbin/fsck –fy then press Return.
- Let the command complete the verification and repair process.
- Rerun the command multiple times if required until the drive check is OK.
- Type reboot then hit Return.
7. Erase the External Hard Drive
Create a backup of your external hard drive before performing this fix. Once you have backed up all your valuable data, perform the following steps:
- Open Disk Utility.
- Select the external hard drive from the left panel then click the Erase tab.
- Specify the name, format, and other details then click Erase.
- Once the erase operation completes, restore the backed up data to the drive.
Conclusion
We hope this post will help you resolve your external hard drive sleep problem. Troubleshoot by reconnecting the external hard drive or rebooting your Mac. Go to Energy Saver window from System Preferences and ensure you deselect “Put hard disk to sleep when possible” checkbox. If the issue persists, try reinstalling hard drive software. Also, install the latest version of macOS.
In case the issue is with your external storage drive, repair the drive by using First Aid or fsck command. As a last resort, back up the drive, erase, then restore the backed up data. In any accidental data loss scenario, use the best Mac data recovery software to salvage your lost data.
About The Author
Vishal is a data recovery expert @Stellar. He addresses data loss scenarios on a Mac. He intends to help people solve their macOS problems. Besides, Vishal prefers to read about astronomy and autobiography, and his favorite is Steve Jobs – The man who thought different written by Karen Bluementhal.
Best Selling Products
Stellar Data Recovery Professional for Windows
Stellar Data Recovery has the right Windows Recovery tool for all your data recovery
Stellar Data Recovery Professional for Mac
Stellar Data Recovery for Mac program performs safe..
Stellar Photo Recovery
A comprehensive photo recovery software to restore photos, music & video files
Stellar Repair for Video
Powerful video repair tool for repairing corrupt or damaged MOV and other video files
4 comments
My Toshiba external hard drive always went in sleep mode after around 15-20 minutes of inactivity. By the option “Tweak macOS SleepSettings” I’m able to resolve the issue. Thanks for sharing such informative article!
Thanks for the appreciation, Rachid!
Every time I connect my external drive to copy backups or some other functions, after sometime it went to sleep mode and sometimes also disrupts the ongoing process! Thanks to this informative content and I will surely give a try to resolve my issue!
Hope your issue will get resolved and in case of any data loss, we recommend you to try Stellar data recovery free edition software to recover your valuable data!