Install Tahoma font in Ubuntu Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Ubuntu restricted extras after install ubuntu 12.04Install MS Truetype Fonts system-wide for all usersStrange font rendering when using TahomaInstall TTF fonts in XorgWhy can't I install fonts system-wide?Tahoma persian yea problemSegeo UI Font ProblemHelp with AMD Catalyst installationCan't install clamav dependencies?How do I install latest font-manager?Unmet dependencies issue
RM anova or Factorial Anova?
How to get a flat-head nail out of a piece of wood?
Is honorific speech ever used in the first person?
Reflections in a Square
How to ask rejected full-time candidates to apply to teach individual courses?
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
Fit odd number of triplets in a measure?
Magento 2 - Add additional attributes in register
Is the Mordenkainen's Sword spell underpowered?
Restricting the Object Type for the get method in java HashMap
What should one know about term logic before studying propositional and predicate logic?
How to achieve cat-like agility?
Proving that any solution to the differential equation of an oscillator can be written as a sum of sinusoids.
Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?
No invitation for tourist visa but I want to visit
Distribution of prime numbers modulo 4
Why not use the yoke to control yaw, as well as pitch and roll?
Why does BitLocker not use RSA?
How can I introduce the names of fantasy creatures to the reader?
Noise in Eigenvalues plot
Centre cell vertically in tabularx across multiple multiline rows
If something is halfway in a bag of holding... what happens to it?
Bash script to execute command with file from directory and condition
Question on Gÿongy' lemma proof
Install Tahoma font in Ubuntu
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Ubuntu restricted extras after install ubuntu 12.04Install MS Truetype Fonts system-wide for all usersStrange font rendering when using TahomaInstall TTF fonts in XorgWhy can't I install fonts system-wide?Tahoma persian yea problemSegeo UI Font ProblemHelp with AMD Catalyst installationCan't install clamav dependencies?How do I install latest font-manager?Unmet dependencies issue
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
When I tried to install the font Tahoma with these commands, I got two errors (permissions denied):
$ 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
package-management software-installation permissions fonts
add a comment |
When I tried to install the font Tahoma with these commands, I got two errors (permissions denied):
$ 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
package-management software-installation permissions fonts
4
You would probably be better off installing theubuntu-restricted-extras
which includes the core MS .ttf fonts which includes Tahoma. See this post for info.
– douggro
Mar 24 '14 at 18:26
sorry, have you tried as root?
– RobotMan
Mar 24 '14 at 19:57
1
@douggro you are wrong, tahoma ist not inside thettf-mscorefonts-installer
package, its only Times New Roman and some other fonts.
– redanimalwar
Jan 14 '15 at 11:15
add a comment |
When I tried to install the font Tahoma with these commands, I got two errors (permissions denied):
$ 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
package-management software-installation permissions fonts
When I tried to install the font Tahoma with these commands, I got two errors (permissions denied):
$ 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
package-management software-installation permissions fonts
package-management software-installation permissions fonts
edited Oct 15 '17 at 14:47
Zanna
51.5k13141244
51.5k13141244
asked Mar 24 '14 at 18:10
user261645user261645
16112
16112
4
You would probably be better off installing theubuntu-restricted-extras
which includes the core MS .ttf fonts which includes Tahoma. See this post for info.
– douggro
Mar 24 '14 at 18:26
sorry, have you tried as root?
– RobotMan
Mar 24 '14 at 19:57
1
@douggro you are wrong, tahoma ist not inside thettf-mscorefonts-installer
package, its only Times New Roman and some other fonts.
– redanimalwar
Jan 14 '15 at 11:15
add a comment |
4
You would probably be better off installing theubuntu-restricted-extras
which includes the core MS .ttf fonts which includes Tahoma. See this post for info.
– douggro
Mar 24 '14 at 18:26
sorry, have you tried as root?
– RobotMan
Mar 24 '14 at 19:57
1
@douggro you are wrong, tahoma ist not inside thettf-mscorefonts-installer
package, its only Times New Roman and some other fonts.
– redanimalwar
Jan 14 '15 at 11:15
4
4
You would probably be better off installing the
ubuntu-restricted-extras
which includes the core MS .ttf fonts which includes Tahoma. See this post for info.– douggro
Mar 24 '14 at 18:26
You would probably be better off installing the
ubuntu-restricted-extras
which includes the core MS .ttf fonts which includes Tahoma. See this post for info.– douggro
Mar 24 '14 at 18:26
sorry, have you tried as root?
– RobotMan
Mar 24 '14 at 19:57
sorry, have you tried as root?
– RobotMan
Mar 24 '14 at 19:57
1
1
@douggro you are wrong, tahoma ist not inside the
ttf-mscorefonts-installer
package, its only Times New Roman and some other fonts.– redanimalwar
Jan 14 '15 at 11:15
@douggro you are wrong, tahoma ist not inside the
ttf-mscorefonts-installer
package, its only Times New Roman and some other fonts.– redanimalwar
Jan 14 '15 at 11:15
add a comment |
4 Answers
4
active
oldest
votes
what you can do is a simple method.
download tahoma font.
Then copy that downloaded font and all you have to do is paste it in this folder:
/usr/share/fonts/truetype
But since this folder is protected, you will have to open this folder as root. i.e right click and OPEN AS ROOT. provide your password and paste it there. THATS ALL...!!!
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
add a comment |
You can give try with 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"
add a comment |
I had the same error. You have to do a "sudo" and issue the command one by one :
$ 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
-1 That won't work because thecabextract
command fails. Nothing related tosudo
.
– David Foerster
Jul 8 '16 at 10:33
add a comment |
Download Tahoma.
Right click and "Open With Fonts".
When it opens click on Install.
Done.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f438670%2finstall-tahoma-font-in-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
what you can do is a simple method.
download tahoma font.
Then copy that downloaded font and all you have to do is paste it in this folder:
/usr/share/fonts/truetype
But since this folder is protected, you will have to open this folder as root. i.e right click and OPEN AS ROOT. provide your password and paste it there. THATS ALL...!!!
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
add a comment |
what you can do is a simple method.
download tahoma font.
Then copy that downloaded font and all you have to do is paste it in this folder:
/usr/share/fonts/truetype
But since this folder is protected, you will have to open this folder as root. i.e right click and OPEN AS ROOT. provide your password and paste it there. THATS ALL...!!!
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
add a comment |
what you can do is a simple method.
download tahoma font.
Then copy that downloaded font and all you have to do is paste it in this folder:
/usr/share/fonts/truetype
But since this folder is protected, you will have to open this folder as root. i.e right click and OPEN AS ROOT. provide your password and paste it there. THATS ALL...!!!
what you can do is a simple method.
download tahoma font.
Then copy that downloaded font and all you have to do is paste it in this folder:
/usr/share/fonts/truetype
But since this folder is protected, you will have to open this folder as root. i.e right click and OPEN AS ROOT. provide your password and paste it there. THATS ALL...!!!
edited Jul 8 '16 at 13:21
David Foerster
28.7k1367113
28.7k1367113
answered Jul 8 '16 at 10:05
Sanjeev KuttanSanjeev Kuttan
412
412
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
add a comment |
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@DavidFoerster i) we're not lawyers, if Microsoft has an issue with a very well know page, I'm sure they have the legal muscle to deal with it. ii) Since the Microsoft page for the Tahoma font actually links directly to the fonts.com page in this answer, I think it's safe to assume that no copyright is being violated and Microsoft is fine with this redistribution.
– terdon♦
Jul 8 '16 at 12:45
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
@terdon: I agree that Microsoft seems to be fine with distribution in general. However Fontpalace.com is not Fonts.com and distributes the font without a license notice (the page says “License: Unknown”); I doubt that the distribution is still legal under that circumstance.
– David Foerster
Jul 8 '16 at 13:20
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
I circumvented the issue by editing the answer to link to the Font.com page instead. That should resolve it.
– David Foerster
Jul 8 '16 at 13:22
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
@DavidFoerster I stand corrected, I thought the link was already pointing to fonts.com. Sorry. However, it really isn't our job to deal with copyright issues. And downvoting for that reason seems strange to say the least.
– terdon♦
Jul 8 '16 at 13:40
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
From $49 ? You have to be kidding.... I used the script, in the other answer, for free!
– kavadias
Feb 14 '18 at 14:12
add a comment |
You can give try with 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"
add a comment |
You can give try with 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"
add a comment |
You can give try with 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"
You can give try with 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"
edited Jun 30 '17 at 22:40
Maxwel Leite
1,56411325
1,56411325
answered Feb 14 '16 at 4:27
Ramesh ChandRamesh Chand
3,74141931
3,74141931
add a comment |
add a comment |
I had the same error. You have to do a "sudo" and issue the command one by one :
$ 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
-1 That won't work because thecabextract
command fails. Nothing related tosudo
.
– David Foerster
Jul 8 '16 at 10:33
add a comment |
I had the same error. You have to do a "sudo" and issue the command one by one :
$ 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
-1 That won't work because thecabextract
command fails. Nothing related tosudo
.
– David Foerster
Jul 8 '16 at 10:33
add a comment |
I had the same error. You have to do a "sudo" and issue the command one by one :
$ 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
I had the same error. You have to do a "sudo" and issue the command one by one :
$ 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
answered Jan 14 '15 at 11:02
user368646user368646
91
91
-1 That won't work because thecabextract
command fails. Nothing related tosudo
.
– David Foerster
Jul 8 '16 at 10:33
add a comment |
-1 That won't work because thecabextract
command fails. Nothing related tosudo
.
– David Foerster
Jul 8 '16 at 10:33
-1 That won't work because the
cabextract
command fails. Nothing related to sudo
.– David Foerster
Jul 8 '16 at 10:33
-1 That won't work because the
cabextract
command fails. Nothing related to sudo
.– David Foerster
Jul 8 '16 at 10:33
add a comment |
Download Tahoma.
Right click and "Open With Fonts".
When it opens click on Install.
Done.
add a comment |
Download Tahoma.
Right click and "Open With Fonts".
When it opens click on Install.
Done.
add a comment |
Download Tahoma.
Right click and "Open With Fonts".
When it opens click on Install.
Done.
Download Tahoma.
Right click and "Open With Fonts".
When it opens click on Install.
Done.
answered 27 mins ago
VijayVijay
2,2142823
2,2142823
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f438670%2finstall-tahoma-font-in-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
You would probably be better off installing the
ubuntu-restricted-extras
which includes the core MS .ttf fonts which includes Tahoma. See this post for info.– douggro
Mar 24 '14 at 18:26
sorry, have you tried as root?
– RobotMan
Mar 24 '14 at 19:57
1
@douggro you are wrong, tahoma ist not inside the
ttf-mscorefonts-installer
package, its only Times New Roman and some other fonts.– redanimalwar
Jan 14 '15 at 11:15