Linux
Welcome to c/linux!
Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!
Rules:
-
Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.
-
Be respectful: Treat fellow community members with respect and courtesy.
-
Quality over quantity: Share informative and thought-provoking content.
-
No spam or self-promotion: Avoid excessive self-promotion or spamming.
-
No NSFW adult content
-
Follow general lemmy guidelines.
view the rest of the comments
You might want to use rsync rather than a GUI file browser. I don't know if it'll be faster, but it'll be more reliable, especially if you want to stop and restart it, or just plain restart it if it fails for some reason.
Yeah, it'll be faster if you need to restart partway through, since
rsync
won't overwrite already-copied data. But outside of that,cp
should be fine.If retaining original file modification times is desired, then the
-a
flag, to eithercp
orrsync
, is valuable, since otherwise, you'll update the file modification times to the time of the copy.