I’m having a bit of a headache with my Ubuntu 24.04 setup and I was hoping to tap into the collective wisdom of this community. Here’s the situation: whenever I try to copy large files or folders using Nautilus, the progress indicator just doesn’t show up. It feels like I’m left in the dark, waiting around until I can finally see if the transfer worked or not. It’s definitely frustrating, especially when I’m moving several gigabytes of data.
I’ve tried a few standard troubleshooting steps, like restarting Nautilus, updating the system, and even rebooting my machine, but nothing seems to help. I’ve checked the forums and saw some threads mentioning similar issues, but the suggested fixes didn’t quite work for me. It’s not a deal-breaker, but it’s made file management a bit of a pain lately.
For instance, I copied a large folder filled with photos and videos last night, and I was guessing the entire time if anything was happening. There’s something unnerving about staring at an unchanging screen, wondering if the files are actually transferring or if I’ve made some sort of misstep. It’s days like these that make me wish I had a solid alternative to Nautilus, but I do love it when it’s working properly.
So, I’m reaching out—has anyone else faced this issue with Nautilus on Ubuntu 24.04? If so, what did you do to get the progress indicator back up and running? I’m open to trying anything at this point, even command-line alternatives if they promise to do the job. Any tips, tricks, or even potential workarounds would be hugely appreciated! Would love to hear if you’ve experienced the same problem or found a solution that worked. Thanks a bunch in advance!
Sounds like you’re having a tough time with Nautilus! I totally get the frustration of not knowing if your files are actually transferring or if something went wrong. Here are a few things you can try:
dconf reset -f /org/gnome/nautilus/
rsync
to copy files and see the progress. Here’s a basic command:rsync -avh --progress /path/to/source /path/to/destination
Hopefully one of these tips will help you get the progress indicator back or at least give you a way to see what’s happening during those large transfers. Good luck, and don’t hesitate to reach out if you need more help!
It sounds like you’re experiencing a frustrating issue with Nautilus not displaying the progress indicator during file transfers on your Ubuntu 24.04 setup. One of the first things to check is whether there are any issues with Nautilus itself or its dependencies. Sometimes, issues can arise due to a corrupt configuration or a missing package. You can try resetting Nautilus to its default settings by running the command
dconf reset -f /org/gnome/nautilus/
in the terminal. Additionally, consider using the command line for large file transfers as a temporary workaround. Thersync
command, for instance, is efficient and provides real-time progress updates, making it a solid alternative for large data movements.If the issue persists, it may also be beneficial to check for any known bugs or updates related to Nautilus in the official Ubuntu repositories or launchpad. Sometimes, bugs may be rectified in minor updates that you might not have installed yet. You could also explore the use of alternative file managers such as
Thunar
orPCManFM
, which might offer a smoother transfer experience while you continue troubleshooting the Nautilus issue. Lastly, if the problem is specifically related to a certain type of file or destination, examining the file system and permissions could help identify the root cause. Keeping the system and packages updated is crucial, so runningsudo apt update && sudo apt upgrade
frequently is advisable.