Lorsque j'ai essayé d'installer la police Tahoma avec ces commandes, deux erreurs se sont produites (autorisations refusées):
$ cabextract -F 'tahoma*ttf' IELPKTH.CAB
IELPKTH.CAB: WARNING; possible 5592 extra bytes at end of file.
Extracting cabinet: IELPKTH.CAB
extracting tahoma.ttf
tahoma.ttf: Permission denied
extracting tahomabd.ttf
tahomabd.ttf: Permission denied
$ wget http://download.Microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/IELPKTH.CAB
cabextract -F 'tahoma*ttf' IELPKTH.CAB
mkdir -p /usr/share/fonts/truetype/msttcorefonts/
mv -f tahoma*ttf /usr/share/fonts/truetype/msttcorefonts/
chmod 644 /usr/share/fonts/truetype/msttcorefonts/tahoma*
fc-cache -v
rm -f IELPKTH.CAB
ce que vous pouvez faire est une méthode simple.
télécharger tahoma font.
Copiez ensuite la police téléchargée et tout ce que vous avez à faire est de la coller dans ce dossier:
/usr/share/fonts/truetype
Mais puisque ce dossier est protégé, vous devrez l’ouvrir en tant que root. c'est-à-dire un clic droit et OUVRE COMME RACINE . fournissez votre mot de passe et collez-le là. C'EST TOUT...!!!
Vous pouvez essayer avec le script:
#!/bin/bash
[ ! -f /usr/share/fonts/truetype/msttcorefonts/tahoma.ttf -o ! -f /usr/share/fonts/truetype/msttcorefonts/tahomabd.ttf ] &&
wget https://sourceforge.net/projects/corefonts/files/OldFiles/IELPKTH.CAB &&
cabextract -F 'tahoma*ttf' IELPKTH.CAB &&
mkdir -p /usr/share/fonts/truetype/msttcorefonts/ &&
mv -f tahoma*ttf /usr/share/fonts/truetype/msttcorefonts/ &&
chmod 644 /usr/share/fonts/truetype/msttcorefonts/tahoma* &&
fc-cache -v &&
rm -f IELPKTH.CAB &&
echo "Installed Tahoma"
Faites un clic droit et "Ouvrir avec les polices".
Quand il s'ouvre, cliquez sur Installer.
Terminé.
J'ai eu la même erreur. Vous devez faire un "Sudo" et lancer la commande une par une:
$ wget http://download.Microsoft.com/download/ie6sp1/finrel/
$ cabextract -F 'tahoma*ttf' IELPKTH.CAB
$ Sudo mv -f tahoma*ttf /usr/share/fonts/truetype/msttcorefonts/
$ chmod 644 /usr/share/fonts/truetype/msttcorefonts/tahoma*
$ fc-cache -v
$ rm -f IELPKTH.CAB