Hey, glad it seems to work... but it should work in Windows too if you used FAT32 or NTFS (and not
ext4) file system. The
ext4 would be Linux only, so if you picked that you can use Gparted to format it to FAT32 or NTFS instead.
No magic though... that's Wizard's department. I'm just a fat hobbit having my 2nd breakfast, and catching up on the forum news for the day.
Is there any specific tutorial?
There is a ton of information on the internet.... you really want to make Google your best friend as you learn Linux. There are tutorials, free training courses, YouTube videos.... literally a wealth of information for you to dig into. But there isn't really a "START HERE" point. You've already started, and you seem to be doing very well.
Linux Mint offers a PDF "Users Guide" that is about 1.8 MB, a pretty small download. You can get it
here. It is based on the Cinnamon edition, so it will be slightly different from your MATE edition, but it is close enough to help you. The
dmesg output that shows color is a built-in option to the
dmesg command itself, and it is usually set to show colors by default, but you can turn off the colors if you wanted to.
When using the command line (terminal) there is a built-in set of help files called the "man pages" (man = manual). So for just about any command you would use, you can quickly look up how the command operates and what options are available with it. Below is a simple command that reports who the current user is (you)... run the command, and then run the man page and it will explain it better.
For something more complicated (but frequently used) from the command line, check out the "list" command,
ls:
You'll see the output of
ls shows you the files and folders from wherever you started, probably your home folder. With Linux Mint, you will see that the
ls output is color-coded also. There are many options for the
ls command to help you to identify the files and folders on your system. Not every distro does color-coding, or they may use different colors, so you also need to expect and be prepared for different things if you use a different Linux distro.
Use Google to search for "Linux cheat sheets" which will give you a lot of short lists of popular Linux commands. But there are other cheat sheets too. You can also search for "
vi cheat sheets" (
vi is a built-in text editor included with probably every Linux distro, but a new user needs a cheat sheet to begin to learn its special way of operation). Some other special commands used for file and/or text manipulation are
sed and
awk, and there are many cheat sheets available to help with those too. Those things are more for your later learning though... don't worry about them now. A cheat sheet just for Linux commands could be handy for you now though.
Cheers