How to find the location of a command in Linux

You can find where the command lives with either the whereis or which commands. The whereis command gives you the location of the command as well as the manual page, whereas which just gives you the location of the command. which: [root@hostname ~]# which plesk /sbin/plesk [root@hostname ~]# whereis: [root@hostname ~]# whereis plesk plesk: /sbin/plesk […]

How to find the location of a command in Linux Read More »

Install a network printer and scanner on Linux

Linux support for printers straight after an install is excellent, even on a FOSS-only distro like Fedora. To add your network connected printer, I’d recommend finding instructions from the printer manufacturer but failing that (or if you don’t want to download their driver package), you can probably get it working without downloading a single driver.

Install a network printer and scanner on Linux Read More »

Microsoft Edge for Linux is now available

After a couple of years of rumours, Microsoft Edge for Linux is finally available for Ubuntu, Debian, Fedora, and openSUSE in Dev Channel form from Microsoft’s website). This version of Edge will be updated on a weekly basis, with future Beta and Canary versions hopefully available soon. Bringing Edge to Linux is an important step

Microsoft Edge for Linux is now available Read More »

How to mimic Dolby Audio Premium on Linux with PulseEffects

[box type=”info” align=”” class=”” width=””]Update for Fedora 34: The switch to PipeWire (instead of PulseAudio) brings the latency on this down massively 🥳. The guide hasn’t changed though, steps are still the same – PipeWire is a back-end change with no user interaction required. [/box] My ThinkPad X390 uses Dolby Audio Premium on Windows to

How to mimic Dolby Audio Premium on Linux with PulseEffects Read More »

Plesk How-To: Export List of all Mail Aliases

Plesk stores most of its information in the psa database, so getting information out can usually be done via an SQL query. To export a list of all mail aliases sorted alphabetically grouped by domain, run the SQL query below: select concat(mail_aliases.alias,’@’,domains.name) as aliases from mail,mail_aliases,domains where mail.dom_id=domains.id and mail_aliases.mn_id=mail.id order by domains.name; If you

Plesk How-To: Export List of all Mail Aliases Read More »

Plesk How-To: Export List of Mail-enabled Domains

Plesk stores most of its information in the psa database, so getting information out can usually be done via an SQL query. To export a list of all domains with emails enabled, run the SQL query below: select distinct domains.name from mail,domains where mail.dom_id=domains.id order by name; If you want to store the output in

Plesk How-To: Export List of Mail-enabled Domains Read More »