10 Things to Do First in Linux Mint 21.3 MATE


Back to the home page



Congratulations, you have installed a brand new Linux Mint 21.3 (code name: Virginia), with the MATE desktop! What's best for you to do, first of all?

I've made a list of the things to do, which I've divided into three categories:
- 10 absolutely essential ones (part 1);
- the recommended ones (not essential, part 2);
- the maybe useful (part 3).

It's quite a list, but it'll give you a polished, nearly maintenance-free operating system that you'll be able to enjoy for years to come! Plus it's also a crash course in the use of Linux Mint.

Note: You'll find only relatively safe tips and tweaks here, because I think that the stability and reliability of your operating system should never be endangered. This website is serious about Linux Mint, so my approach is conservative.

I try to mention it whenever some risk is unavoidable, so that you can always make a balanced decision.

Note: This web page is only meant for Linux Mint 21.3 with the MATE desktop environment; the page for the Cinnamon desktop is here and the page for the Xfce desktop is here.

Contents of this page:

Tip: you can download a checklist here, which you can print on paper. Then you can strike the items that you've done.

Are you unsure what Linux Mint version you have? You can check that as follows:

Launch a terminal window:
Menu - Terminal

Type (use copy/paste in order to avoid typing errors):

inxi -S

(Note that the letter S is capitalized)

Press Enter.



Part 1

TEN ESSENTIAL ACTIONS


Always do these things:

Apply all available updates and set up Timeshift

1.1. a. First the updates, then the rest...

Click on Menu - Administration - Update Manager

Apply all updates.

Note: During the updates you might be asked whether you want to replace a configuration file. Don't replace it: although replacing is generally safe, it's usually unnecessary.

b. Then launch Timeshift, which is useful to get your system up and running again quickly in case of emergency:
Menu button - Administration - Timeshift

c. Click the button Settings - Schedule. Preferably configure Timeshift to put its snapshots on a separate dedicated hard disk partition (20 GB is a workable and reasonable minimum size for that partition), so it won't eat disk space needed by your system.

Set the schedule to monthly, with a retention of two snapshots. No more, because otherwise, under certain circumstances, Timeshift can start gobbling up disk space like crazy.

Barring the rare exception, nobody will ever need more than two snapshots.... Even if the snapshot you restore is quite old: simply run Update Manager after the restoration and your system will be fully up to date in almost no time at all.

Want to know more about dealing with Timeshift snapshots? Then read about it here (*click*).

d. Reboot your computer (usually not necessary after updating your system, but do it this time just to make sure).

Improve Update Manager

1.2. Update Manager is one of the most important tools you have. It's therefore also very important that you familiarize yourself with it.

For that purpose, I've published a how-to for tweaking and optimizing Update Manager here (*Click*).

Drivers and full multimedia support

1.3. For installing missing drivers and full multimedia support, proceed as follows (you need internet connection for this!):

Install missing drivers

1.3.1. Installing drivers is usually not necessary, because they are already present in the Linux kernel. Exceptions are some printer drivers and proprietary restricted drivers for (among others) Nvidia graphics cards.

a. Install your printer and scanner in this way (*Click*).

b. For optimal performance of your Nvidia video card, or your Broadcom wireless chipset, you'll want to install the closed source restricted driver (the proprietary driver). Like this:

Menu - Administration - Driver Manager

When available for your system, this tool will present you with one or more installable non-free drivers. Select them all, but only after creating a snapshot with Timeshift first.

The required drivers are then automatically downloaded from the internet, from the software repositories of Mint, and (also automatically) installed. Afterwards you'll have to do a full reboot of your computer.

Note: Sometimes you're being offered several versions of the restricted driver. The recommended one should work best for most hardware combinations.

Only choose from the versions that you're being offered, because only those support your device! Start with the recommended one, and only work your way down when it doesn't perform well.

Do you have a brand-new graphics card from Nvidia? Then it might be too new for the version of the proprietary restricted driver in the software repositories of Mint. In that case you won't be offered any proprietary driver at all by Driver Manager.

If this happens, then you can look for another solution for your Nvidia card on this page.


For an AMD/ATI video card you have to stick to the default open source driver. Because the closed AMD Catalyst (fglrx) drivers are not compatible with Linux Mint.

These closed fglrx drivers are proprietary and so their code is not available. AMD indicated they no longer wanted to support them and urged their customers to use open-source drivers instead.

If you're using an AMD or ATI GPU in Linux Mint, the operating system will automatically select either the radeon or the amdgpu driver for you, and both of these open-source drivers are installed by default.

Install full multimedia support

1.3.2. You've probably installed full multimedia support during the installation of Linux Mint, by ticking the checkbox for Install multimedia codecs. But if you didn't, you can do it now:

Menu button - Sound & Video - Install Multimedia Codecs

Note: This menu entry is only present when you haven't installed full multimedia support (mint-meta-codecs) yet. After installing it, this menu entry will disappear.

Optimize memory usage (important)

1.4. Especially noticeable on computers with relatively low RAM memory: they tend to be far too slow in Linux Mint. Luckily, this can be helped: see these tips for optimizing memory usage.

Turn on the firewall

1.5. The default security of Linux Mint can and should be improved a bit. The firewall is namely disabled by default, but usually it's better to turn it on. Especially on mobile devices like laptops, which sometimes connect to other networks than your own.

But also when you're always behind the firewall of your own router, because who knows if the firewall in your router is still working correctly? The router firmware is often never updated, so many (if not most) routers have multiple unfixed security flaws. These may affect the firewall of your router as well.

The firewall in Linux Mint is called Uncomplicated Firewall (ufw), and can be operated from the terminal. Like this:

a. Menu - Terminal

b. Copy/paste the following command line into the terminal:

sudo ufw enable

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

Uncomplicated Firewall (ufw) has a sensible set of default settings (profile), which are fine for the vast majority of home users. So unless you have special wishes: you're done!

c. With this command line you can check the current status of the firewall:

sudo ufw status verbose

Press Enter.

When it's enabled, the output should resemble this:

pjotr@netbook:~$ sudo ufw status verbose
[sudo] password for pjotr:
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing) disabled (routed)
New profiles: skip
pjotr@netbook:~$


I've printed the most important message in red: this output basically means that all incoming traffic is denied and all outgoing traffic allowed.

There are sensible exceptions in the default firewall settings (rules), which should ensure that the firewall is never in the way of normal average use. For example, with the default profile the use of Samba should be no problem. Also downloading torrents (fetch) should be possible; but seeding torrents (serve), might require a temporal disabling of ufw.

d. You'll probably never look at its logs, so it won't hurt to turn off all logging by the firewall. Especially because it can be rather spammy sometimes. Turning its logging off can be done with this terminal command:

sudo ufw logging off

Regrets? Turning firewall logging on again with the default amount of activity (low), can be done with the following terminal command:

sudo ufw logging low

e. It's easy to disable the firewall (should you wish to do so) with this terminal command:

sudo ufw disable

Press Enter.

f. A further explanation about the firewall and security in general, can be found here.

Optimize your Solid State Drive (SSD)

1.6. Do you have a Solid State Drive (SSD) instead of a conventional hard disk? Then optimize it for Linux Mint.

Install some useful tools and an extra media player

1.7. For file management it can sometimes be handy to use a stand-alone simple file manager like Double Commander.

Furthermore, a very useful tool for sound management is pavucontrol.

rar and p7zip-rar provide support for certain types of archives.

Then there's Catfish, which is an excellent, simple and fast file finder.

Finally, I advise to install the well-known VLC as extra media player.

Install them all in one stroke, like this:

Menu - Terminal

Copy/paste this magical incantation into the terminal (it's one line!):

sudo apt-get install doublecmd-gtk pavucontrol rar p7zip-rar catfish vlc

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

Improve font support

1.8. Install some useful fonts, in order to improve the compatibility with documents from Microsoft Office. Namely a package containing some old Microsoft fonts and two modern Google-made free replacement fonts.

I. First the package with old Microsoft fonts:

a. Launch a terminal window (this is how to launch a terminal window).

b. Use copy/paste to transfer this line into the terminal (it's one single huge line!):

wget http://ftp.us.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.8.1_all.deb -P ~/Downloads

Press Enter. With this command you download the installer package from Debian. Because the Debian package is cleaner, as it doesn't pull some extra software that's useless and even troublesome in Linux Mint.

c. For the actual installation, use copy/paste to transfer this line into the terminal (it's again one single line!):

sudo apt-get install --no-install-recommends ~/Downloads/ttf-mscorefonts-installer_3.8.1_all.deb

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Linux Mint this has changed: you'll see asterisks when you type your password. Press Enter again.

d. Then, copy/paste this command into the terminal, in order to copy the downloaded fonts into another new folder (it's one single line!):

sudo cp -v -r /usr/share/fonts/truetype/msttcorefonts /usr/share/fonts/truetype/msttcorefonts2

Press Enter.

e. Now remove the Debian installer, which will take the downloaded fonts in the original folder with it (but no worries, as you've copied them!), with this command:

sudo apt-get purge ttf-mscorefonts-installer

Press Enter.

f. Inform the system about the presence of the newly copied fonts, with the following command:

sudo dpkg-reconfigure fontconfig

Press Enter.


II. Now install the Google-made free fonts Carlito (replacement for Microsoft's modern proprietary Calibri) and Caladea (replacement for Microsoft's modern proprietary Cambria). Like this:

a. Launch a terminal window (this is how to launch a terminal window).

Use copy/paste to transfer this line into the terminal (it's one line!):

sudo apt-get install fonts-crosextra-carlito fonts-crosextra-caladea

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Linux Mint this has changed: you'll see asterisks when you type your password. Press Enter again.

b. Now you're going to configure Libre Office to use them as replacement for the Calibri en Cambria fonts from Microsoft:

Launch LibreOffice Writer.

In the panel of LibreOffice Writer: Tools - Options... - section LibreOffice: Fonts

Tick: Apply replacement table

c. Type in for Font (it's not in the dropdown list, you have to type it): Calibri
Replace by: Carlito (it's in the dropdown list)

Press the button with the green tick.

Tick: Always and Screen only

d. Now type in for Font (it's not in the dropdown list, you have to type it): Cambria
Replace by: Caladea (it's in the dropdown list)

Press the button with the green tick.

Tick: Always and Screen only

Click the OK button.

Avoid 10 fatal mistakes!

1.9. There are 10 mistakes that you'll definitely want to avoid, for the sake of the health of your system.

Solve some known bugs

1.10. If you have a problem: look at the solutions for several bugs. Don't skip this, when you have some problem! There's a big chance that you'll benefit from at least one of the workarounds presented at that page..... Written for Ubuntu, but applicable in Linux Mint as well.

Also relevant: the release notes of Linux Mint 21.2 Mate.


Part 2

TWELVE RECOMMENDED ACTIONS (NOT ESSENTIAL)


Do these things if and when you have the time:

Increase the general font size

2.1. If you have a display with a big resolution, sometimes the general font size is annoyingly small. This is how to increase that size:

a. Menu button - Preferences - Appearance - tab Fonts - click on the button Details...

Resolution: increase the Dots per inch (DPI).

b. Unfortunately the window control buttons don't partake in the size increase. The window control buttons of the default Mint theme, Mint-Y, can get too small because of that. So change the window control buttons into those of Mint-X, which are somewhat bigger:

Menu button - Preferences - Appearance

Tab Theme: click on the button Customize...
Tab Window Border: click on Mint-X.

Install MATE Tweak for more configuration options

2.2. It's useful to increase your tweaking options by installing MATE Tweak. Install it like this:

Menu - Terminal

Use copy/paste to transport this magical incantation into the terminal (it's one line):

sudo apt-get install mate-tweak

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

Now you can launch it like this:

Menu button - Preferences - MATE Tweak

Tip: did you tweak your MATE panel beyond recognition, and do you want the old default panel back? Then this terminal command should do the trick:
dconf reset /org/mate/panel/general/default-layout; mate-panel --reset

Check whether the screen saver is configured correctly

2.3. The screen saver is enabled by default. But there's some resource hogging stuff among the screensavers, that may freeze your computer.

Therefore make sure that the screensaver is set to the default "blank screen":

Menu - Preferences - Screensaver: choose Blank screen.

Remove Orca and speech-dispatcher

2.4. Your Linux Mint probably contains screen reader Orca and a package called speech-dispatcher, which ensures that text-to-speech output becomes actual speech hearable in the speakers.

Nifty, when you're visually handicapped. But useless when you're not. And it's rather disconcerting when, after pressing the wrong key combination, your computer suddenly starts addressing you with a heavy bass voice....

Furthermore, speech-dispatcher is known to cause sound problems in some cases. Which is reason enough to remove it as a matter of course.

You can get rid of these annoyances as follows:

Menu - Terminal

Use copy/paste to transport this magical incantation into the terminal (it's one line):

sudo apt-get remove orca speech-dispatcher

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

Optimize Firefox

2.5. With a couple of changes in the settings, you can improve the performance of Firefox in Linux Mint. These tweaks will make this fine web browser leaner and cleaner.

Tweak Libre Office

2.6. The default office suite is the fine Libre Office. In order to improve it, you can tweak the settings of Libre Office.

Fix a potential permissions bug in your home folder

2.7. In certain cases a file or folder permissions problem may exist in your personal folder(s), even without you being aware of it. The ownership of certain (hidden) files or folders might namely have been changed to root. This could create unexpected malfunctions.

You can make sure that all files in your personal folder belong to you, like they should. Proceed like this:

a. Launch a terminal. (You can launch a terminal window like this: *Click*)

b. Copy/paste this line into the terminal:

sudo chown -Rc $USER:$USER $HOME

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

c. When it's finished, reboot or log off and on again.

This appears to be an effective workaround which you probably only have to apply once. As such, it can serve as a practical "emergency" measure.

Improve Power Manager for a laptop

2.8. Do you have a laptop? Then improve the settings for Power Manager like this:

Click on the icon of Power Manager in the system tray - Preferences
Tab On AC Power:
When laptop lid is closed: set it to: Shutdown

Tab On Battery Power:
When laptop lid is closed: set it to: Shutdown
When battery power is critically low: set it to: Shutdown

Install an extra web browser

2.9. It's useful to have an extra web browser available. Firefox is a fine application, but now and then (especially when you've installed too many extensions or add-ons in Firefox), it doesn't function entirely well.

An excellent alternative to Firefox, is web browser Google Chrome. Unfortunately it's not in the software sources of Linux Mint, but you can download its 64-bit installer from the download page of Chrome.

That web page should automatically recognize that you're running Linux Mint: it should offer you a preselected installer for Debian/Ubuntu, because that's what you need in Mint.

Double-click the installer, which has the extension .deb, as if it were a .exe installer in Windows. Then it'll install itself automatically.

Furthermore, it'll add the software source for Chrome to your software sources list, so that Update Manager will automatically offer you updates for Google Chrome as soon as they become available.

You can find tips and tweaks for Chrome here.

Speed up your Linux Mint

2.10. You can probably speed up your Linux Mint noticeably, by applying these safe speed tweaks.

I advise to pay special attention to turning off the visual effects, as described in item 5 on the speed tweaks page. Visual effects are nice, but they can slow down your system and can occasionally even cause stability problems.

That's why there are only a few visual effects enabled by default. You can gain some speed and stability when you turn off those as well.

Multiple accounts: improve snooping prevention in your account

2.11. Does your computer have multiple user accounts? Then you can easily improve the snooping prevention in your account, without taking drastic measures like encryption. In the following way:

Launch a terminal window.
(You can launch a terminal window like this: *Click*)

Type (copy/paste):

chmod -v 700 $HOME

Press Enter.

Repeat this in each user account that needs the same protection.

Note (1): don't apply this recursively, on all files and folders within your home folder. That's quite unnecessary, and might even have negative side effects.

Note (2): this doesn't protect you from someone with root permissions! It won't stop a determined and experienced snooper, but it's an effective measure to "keep the honest people out". If that's not enough for you: encryption of files or even of your entire home folder, is much more secure....

Should you ever wish to undo this (but why?), that's easy as well. For undoing you can use this command:
chmod -v 750 $HOME

Think about removing Java (openJDK)

2.12. Linux Mint contains Java (openJDK) by default. It has some negative security implications. So I advise to consider to remove it (item 9).


Part 3

NINE NEUTRAL TWEAKS (MAYBE USEFUL)


Only do these things if you like them:

Add a weather report to the panel

3.1. Always nice: a weather report in the panel.

Add it like this:
Right-click mouse on an empty space on the panel - Add to Panel... - click Weather Report - click Add

Click Close.

Then: right-click mouse on 0°F - Preferences - tab Location: click your country - from the list, pick the town nearest to your own. Alternatively, you might try a search on town name, but that might be less successful.

Click close.

Change the wallpaper

3.2. Mint looks nice out of the box, but maybe you want to change its wallpaper anyway....

You can change your wallpaper in almost the same way as in Windows, but there's one important difference.

So: select a picture that you want for wallpaper. Double-click the picture file.

Now the picture is being shown in the image viewer Xviewer. Then, in the panel of that application: click Image - Set as Desktop background. You're done.

However, the important difference with Windows is this: Mint only creates a link to the picture that you've set as wallpaper. When you move or delete the picture afterwards, then your wallpaper disappears also, because the link is dead!

So don't throw away the picture, but put it permanently in your home folder. For example in the folder Images. And only then set it as wallpaper.

Tip: I've made copies of wallpapers from older Mint versions available on my Google Drive (only the ones I liked best, due to space constraints on my Google Drive).

Migrate your e-mail from Outlook (Express) in Windows, to Linux Mint

3.3. It's easy to migrate your e-mails and e-mail settings from Outlook (Express) in Windows, to Thunderbird in Linux Mint Mate. Simply apply this how-to.

Install a good DVD burning application

3.4. The best DVD burning application is currently Xfburn, because the other commonly used burning app Brasero, is rather unreliable and regularly spoils your DVD's. Xfburn on the other hand, is reliable, simple and easy.

It has just one disadvantage: Xfburn can't burn multisession DVD's. So it can't add to a DVD that already has content.


Install Xfburn like this:

Menu - Terminal

Type (use copy/paste to transport this magical incantation to the terminal):
sudo apt-get install xfburn

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

Now you can launch Xfburn like this:

Menu button - Sound & Video - Xfburn

Install some simple games

3.5. Always fun: install some simple games.

Menu - Terminal

Copy/paste the following terminal command (this is one line!):

sudo apt-get install aisleriot gnome-cards-data gnome-mines quadrapassel gnome-sudoku

Press Enter. Type your password when prompted. In Ubuntu this remains entirely invisible, not even dots will show when you type it, that's normal. In Mint this has changed: you'll see asterisks when you type. Press Enter again.

After the installation you can find them like this: Menu - Games.

Turn Num Lock on automatically

3.6. Does your keyboard (laptop?) have a separate numeric keypad on the right? Then it's useful for Num Lock to be switched on automatically, when you start Linux Mint.

Note: This instruction is only meant for desktops and laptops that have a separate numeric keypad! It's definitely not desirable to have the Num Lock on by default on a laptop that has no such separate keypad.

You can achieve that as follows:

a. Menu - Terminal
Copy/paste the following command into the terminal:

sudo apt-get install numlockx

Press Enter.

Now do this: Menu - Administration - Login Window.
Tab Settings: enable Activate numlock.

Reboot your computer. The numeric keypad should turn on automatically after you log into your user account.

Note: It's possible that during login, Mint will turn Num Lock off again (sigh). If that happens, you can counteract that irritating behaviour as follows:

Menu - Preferences - Startup Applications

Click Add

Give the new addition the name Numlockx and the command:
sh -c "sleep 20 && numlockx on"

Click Add.

This will turn Num Lock on, 20 seconds after login. This delay is necessary, because you have to make sure it happens after Mint has turned Num Lock off.

Note: User preference: repeat this in each user account.

Make available updates more prominent

3.7. Some people have difficulty noticing the dotted icon in the system tray, that signifies that new updates are available.... In that case you can make available updates more prominent like this:

First download this shell script. Note: You'll probably get to see a warning before downloading it; that's normal for shell scripts. The contents of the script are just a few lines; you can see for yourself that they're safe.

Then move it from the folder Downloads to the folder Documents, for example like this:

Menu - Terminal

Copy/paste the following terminal command:

mv -v ~/Downloads/check_for_updates-2.sh ~/Documents

Press Enter.

Then make it executable with this terminal command:

chmod 755 ~/Documents/check_for_updates-2.sh

Press Enter.

Then: Menu button - Control Center - Personal - Startup Applications

Click Add

Name: Update check
Command: press the Browse button near that entry field and click your way through to the file check_for_updates-2.sh in your Documents folder.

Click Add

From now on you should be presented with a reminder to update, 99 seconds after you log in. Clicking the reminder launches Update Manager. You can't overlook it: it's "in your face".

The disadvantage is, that you also get to see it when there are no updates at all. But that's better than overlooking updates that need to be installed....

Improve a terminal setting

3.8. You're probably going to use the terminal from time to time, because it's the mighty "Swiss Army knife" of Linux. But the default appearance of the terminal window can be made more practical. You can do that as follows.

The terminal window might be semi-transparent (dependent on theme selection). Beautiful, but impractical. Improve it like this:

Menu bar of the terminal: Edit - Profile Preferences (or: right-click with the mouse in the black space of the terminal - Profile Preferences).

Tab Background: select: Solid color.

Create a manual snapshot with Timeshift to backup your modifications and tweaks

3.9. You've modified and tweaked your system quite a lot, by applying this list. That has cost you a lot of time, so it's useful to create a manual snapshot of your neatly tuned system. Including all of the settings changes which reside in your personal folder only (more about that later).

You can do that as follows:

a. Launch Timeshift:
Menu button - Administration - Timeshift

b. Click the button Settings - Users

By default all user folders, including the hidden settings files they contain, aren't part of the snapshot. For a good reason, because you don't want that recently modified important document of yours, to be reverted to its version of three weeks ago.... Or that your Thunderbird email boxes suddenly are being reverted to their past content.

But you're still at the beginning now, and there are no documents or e-mails in your personal folder yet (at least when you've done a clean installation). So temporarily include the hidden items (settings files) of each user account (with the exception of the root user account), for this snapshot only.

c. Create the one-time snapshot.

d. Click the button Settings - Users again, and fully exclude all user accounts again for future snapshots. This is very important!

Want more tips?

4. Do you want more tips and tweaks for Linux Mint? There's a lot more of them on this website! Like these:

Security in Linux Mint

Four popular myths and 12 tips about wireless security (for wifi)

How to clean Linux Mint

How to create a strong password that's easy to remember (the answer might surprise you!)

Get help

5. You can get quick and friendly help on the official Linux Mint forum.


To the content of this website applies a Creative Commons license.

Back to the home page

Disclaimer