Haroon Javed

@445
6 Followers
8 Following
22 Posts
Linux and open source software tech creator.
PRONOUNShe/him
WEBSITEhttps://labhint.com/

You switched to #linux you love it, but there is still that one #windows app holding you back. You are not alone. In this video, I cover six real solutions that let you run Windows software directly on your Linux Mint desktop, no dual boot required.
#opensource #linuxmint

https://www.youtube.com/watch?v=Ef-X-07MT1o

Best Ways to Run Windows Apps on Linux Mint Without Dual Boot

YouTube

Most Linux Mint tutorials keep covering the same things over and over. So in my latest video, I decided to go beyond the basics and share 4 power-user features that almost nobody talks about. Check it out 👇

#linux #linuxmint #opensource

https://youtu.be/Ry7U-Y1Ok6c?si=axAmpwTKLfimn6tR

4 Linux Mint Features That Will Turn You Into a Power User

YouTube

Even though modern Linux distributions let you do almost everything through a graphical interface, I've found that the right command-line tools can make certain tasks much faster, more efficient, and overall much smoother.
#linux #linuxmint #opensource #tools

https://youtu.be/zZl-H_WZB-Y?si=Lhg5QkFSUJEpniOk

9 CLI Tools I Install on Every New Linux Mint Setup

YouTube

Switching from Windows to Linux can feel intimidating, such as, different distros, the terminal, setup, learning curve, and much more. I also felt the same, but the Linux Mint distro changed all of that for me. It’s simple, fast, and works smoothly even on older hardware.

In my recent video, I share why I think Linux Mint is the best Windows replacement.

#linux #linuxmint #windows #opensource

https://youtu.be/Z5aPR2IBIP0?si=HyRD7I4OwNGD8dhg

6 Reasons Linux Mint Is the Best Windows 11 Replacement

YouTube

Quick Linux Tip:

If you often run commands one by one and wait for each to finish, you can chain them like this:
sudo A && sudo B

This means the second command will only run if the first one completes successfully. It’s different from using (;), which runs the next command no matter what happens before it. You can also chain more than two commands.
sudo A && sudo B && sudo C

#linux #opensource

I keep coming back to Linux Mint because it just works without me thinking about it too much. What’s your go-to Linux distro right now, and why?
#linux #opensource

Linux Mint already gives you a solid desktop experience out of the box, and the preinstalled tools that come with it are handy. However, to transform this fresh installation into a true daily driver, you need the right applications.

In this video, I show you a set of apps that cover the things I normally require for my day-to-day work.
#linux #opensource #linuxmint

YouTube Link: https://youtu.be/vFN8McjPjJw?si=xX4t5IiojxW1fBZj

The Best Free Software to Install on Linux Mint Right After Setup

YouTube
@cimek Great choice! Nano is great, it’s easy and beginner-friendly.
What’s your favourite text editor in Linux? And why?
#linux #opensource
Vim
40%
Nano
36.7%
Emacs
20%
Gedit
3.3%
Poll ended at .

Here’s a simple command that saves a lot of time when working in the terminal. If you move to one directory and then switch to another, you can quickly jump back to the previous one without typing the full path again. Just use cd -.

For example, if you run:
cd /home/user/Documents
then cd /usr/share
and after that type cd -

You’ll instantly jump back to /home/user/Documents. It works like a back button for your terminal and makes moving between folders much faster 😊
#linux #opensource