I just started using Linux a day ago and I set up a flash drive with Foxclone to back up my potentially failing Windows OS drive. Everything went well, but after saving the image to my external drive, I couldn't find a way to safely remove or eject that drive. I read that there should be an option on the bottom right tray, like in Windows, but all I see are the time, battery, and network options. In the file manager or under system tools, I have the option to mount/unmount and power off the drive, but no eject option is visible. Would unmounting or powering off the drive work similarly? Right-clicking the drive doesn't show any additional menu. I'm just curious because I thought Linux always has an eject option, yet it seems missing with this Foxclone ISO (latest version 55).
3 Answers
I'd recommend using the "sync" command to make sure all data is written before you remove the USB drive. Just open a terminal and type `sync`. For more details, you can check `man sync` or `tldr sync`. It's a pretty straightforward command and helps ensure that everything is completed before you eject the drive.
If you're using GNOME, you could check out this extension for a quick removable drive menu: [Removable Drive Menu](https://extensions.gnome.org/extension/7/removable-drive-menu/). It makes managing drives a lot easier!
Interesting! So I would need to use GNOME as my default environment, right? I'm trying to understand how this all fits together with Linux Mint and how I can learn the basics.
The location of the eject option can vary depending on your Linux distribution and desktop environment. If you want to eject the drive via command line, you can use `sudo eject /dev/sdXX`, where 'sdXX' is the name of your USB partition.
Thanks! I don’t see an eject option in the GUI, so I’m keen to learn these commands. It’d be great to know basic command line skills for Linux.

Got it! I didn’t want to dive too deep into command line stuff just yet, but I’ll definitely look into it. Thanks for the tip!