I'm transitioning from Windows to Linux, specifically using Mint Cinnamon, and I'm on the lookout for cool, time-saving features that aren't immediately obvious. I've come across some handy tips about taking screenshots, quick copy-pasting with mouse clicks, and using commands like xkill, but I'm sure there's a lot more to discover. What essential tricks or features should I know about that would help even those who aren't very tech-savvy? I'm interested in things that might apply across various Linux distros and desktop environments.
5 Answers
If you're frequently using specific folders, bookmark them in your file explorer for quick access. Also, Mint allows for cloud integration, so you can access your Google Drive right in the file manager. Just drag and drop to transfer files easily. You’ll appreciate how convenient this is once you start using it!
Tab completion is your friend. While in the shell, hitting the key tries to complete commands or file paths. Like, type `les` then hit , and it could complete to `less`. It’s great for saving time typing long paths. Also, check out how Linux handles password entries—sometimes there’s no visual feedback, but just type it in anyway!
I've run into that password thing before! Glad to hear it's common.
Keyboard shortcuts can be a game changer! For example, using the Windows key + other keys can open your file manager or terminal quickly. And keep it simple by using shortcuts to snap windows around your screen—just drag them to the edges and you'll see guides for positioning. It's helpful for multitasking.
I love snapping windows! Makes organizing everything so much easier.
Stop opening 10 terminals at a time! Learn to use tmux instead. It can save you tons of hassle and keep everything organized in one window. It’s especially useful when working remotely or doing heavy multitasking.
Tmux?! I’ve heard of that but wasn’t sure how to use it. Thanks for the tip!
If you ever forget to run a command with `sudo`, just type `sudo !!` to repeat the last command with sudo privileges. Super handy! Also, try using commands like `!$` to grab the last argument from the previous command, making it easier to re-issue commands without retyping everything.
Totally! And don't forget about setting `shopt -s histverify` for inspecting commands before they execute!

This is a lifesaver! I had no idea Mint had cloud integration like that.