I would like to use my MetaTrader4 app with Windows-based fonts which requires Wingdings (arrow, thumbs-up, etc.) on my Ubuntu 22.04. I tried to install it from terminal first and it gave me a 'no installation candidate error'.
I saw in another old (Ubuntu 14.04) Ask Ubuntu question how to solve it with these codes, so I tried these codes too:
echo "deb http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse" | sudo tee /etc/apt/sources.list.d/multiverse.list
sudo apt-get update
sudo apt-get install ttf-mscorefonts-installer
As you can see from my screenshot with these deb codes, it's giving me an error message.
Emote
serve this purpose for you? Download from Ubuntu Software and use Ctrl+Alt+e to invoke and search. – graham Aug 23 '22 at 09:50ubuntu-restricted-extras
(alongside with useful codecs). I don't know where you got those instructions from but they're patently wrong, "trusty" refers to an aold and unsupported Ubuntu release, 14.04 (that means April 2014!). So, the first thing to do is remove those additional and wrong repos you added. Then learn the lesson NOT to use command you don't understand blindly. – ChanganAuto Aug 23 '22 at 09:52sudo apt update
and check the error messages. – ChanganAuto Aug 23 '22 at 14:14