LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-29-2015, 11:25 AM   #1
ArtKautz
Member
 
Registered: Sep 2015
Location: Westminster, CO
Distribution: Mint 18.1 - Cinnamon
Posts: 116

Rep: Reputation: Disabled
Windows fonts from a PC (Windows 7) to another PC (Linux Mint (17.2)) - not dual boot


One PC is running Windows 7. The other is running Linux Mint 17.2. This is NOT a dual boot setup. Is it possible to put either a folder or files from the Windows PC onto a flash drive and then add it somehow (I have no idea where the Linux machine stores the fonts it uses) to the Linux machine?
 
Old 09-29-2015, 12:46 PM   #2
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,229

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Have a look in /usr/share/fonts. You should see several other directories; such as TTF and 100DPI. Those are just examples. You can copy a font file to the appropriate directory; ture type fonts to TTF for example.

As for the copying, yes copy them to a USB thumb drive, and put that drive on your linux system. I don't run Mint, so I don't know if the user can mount the thumb drive or not. The linux way is for the root user to mount the drive, to a mount point ( that is an empty directory ) with the mount command.

Some systems have 'automount' set up, so all the user does is click on the drive when it shows up on the desktop.

Possibly a Mint user can chime in and tell you how to mount a thumb drive. You could also look at Mint doc to find out how, or just google it.

Hope this helps.
 
Old 09-29-2015, 05:39 PM   #3
ArtKautz
Member
 
Registered: Sep 2015
Location: Westminster, CO
Distribution: Mint 18.1 - Cinnamon
Posts: 116

Original Poster
Rep: Reputation: Disabled
Unfortunately doing that requires using the terminal and I'm not that good at the command line yet. I guess it will have to wait.

Thanks.
Art
 
Old 09-29-2015, 06:40 PM   #4
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,537

Rep: Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495
Open the file manager when booted into Mint. Go to the /media/user directory (replace user with whatever your user name is). Plug in the flash drive and you should see a new mount point, referred to as a directory. That would be the standard method to access a flash drive in Mint.
 
Old 09-29-2015, 08:23 PM   #5
ArtKautz
Member
 
Registered: Sep 2015
Location: Westminster, CO
Distribution: Mint 18.1 - Cinnamon
Posts: 116

Original Poster
Rep: Reputation: Disabled
Getting to the files on the flash drive isn't the problem. I drill down to /usr/share/fonts/truetype via the file manager and then try to copy the contents of the flash drive into Fonts and paste is not an option.

So I tried terminal, just to get there;
su root
entered the password.
cd //
ls
got a list of the directories, usr is there.
cd /usr
ls
the directories are listed, including one called share.
cd /share
bash: cd: /share: No such file or directory

Yup, that worked well, it won't even let root in there! I musta missed sumthin'.


Update:

I did the only reasonable thing - went to YouTube and watched a three-minute video and got a one liner command that downloaded and installed the Microsoft core fonts from what appeared to be Source Forge. It worked.
The line of text is:
sudo apt-get install ttf-mscorefonts-installer

Also see Astrogeek's quick guide to gettin' around below - very nice!

Last edited by ArtKautz; 09-30-2015 at 08:32 AM.
 
Old 09-29-2015, 10:46 PM   #6
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,537

Rep: Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495
Quote:
cd /share
You don't want the forward slash before share if you are already in the /usr directory. From the /usr directory, try cd share/ or just do: cd /usr/share/fonts

Last edited by yancek; 09-29-2015 at 10:48 PM.
 
1 members found this post helpful.
Old 09-29-2015, 10:49 PM   #7
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by ArtKautz View Post
One PC is running Windows 7. The other is running Linux Mint 17.2. This is NOT a dual boot setup. Is it possible to put either a folder or files from the Windows PC onto a flash drive and then add it somehow (I have no idea where the Linux machine stores the fonts it uses) to the Linux machine?
Hi...

Unless the fonts are free of any copyright, EULA or licensing issues, I wouldn't try to copy them over.

Regards...
 
Old 09-29-2015, 11:10 PM   #8
astrogeek
Moderator
 
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,269
Blog Entries: 24

Rep: Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196Reputation: 4196
As yancek says, do not add the leading slash for cd share.

Learn one rule and one shortcut for shell (terminal) navigation and it becomes easy:

First, there are two ways to specify paths: Absolute and relative.

Absolute paths always begin with the forward slash, '/' and that means they begin at the system root directory. So ls -1 / (ell-ess dash-one) gives you something like this...

Code:
ls -1 /
bin/
boot/
dev/
etc/
home/
...
tmp/
usr/
var/
Relative paths always start at the current working directory and never include the leading slash. You can see the current working directory by using the pwd command (print working directory). So...

Code:
cd /usr

pwd
/usr

ls -1
... (shows directories)

cd share/
pwd
/usr/share
Next, the shortcut. Assuming you are using the bash shell (probably are), you don't have to type the full path. The shell auto-completion will do that for you. This is easier and much less error prone when typing long paths.

This works by typing the first couple of characters of the path and hitting the tab key. When you hit the tab key the shell will complete as much of the path as is possible without being ambiguous. On most systems, if there is more than one match to what you typed it will show you a short list of all that match (some configurations require you to hit tab a second time to see the list).

So, you might try something like this...

Code:
cd /u <TAB>
(auto-completes to /usr/)
sh <TAB>
(auto-completes to /usr/share/)
fo <TAB>
(auto-completes to /usr/share/fonts/)
tr <TAB>
/usr/share/fonts/truetype/
<ENTER>

pwd
/usr/share/fonts/truetype
Very simple - just remember absolute and relative addressing, and use auto-completion to make it fast and error free!

And personally, I wouldn't worry about any licensing if you own both computers. You are taking nothing from anyone and only using what you already have - it is yours and you need no permission from anyone.

Last edited by astrogeek; 09-30-2015 at 12:01 AM. Reason: typos, hilighting, personally...
 
1 members found this post helpful.
Old 09-29-2015, 11:48 PM   #9
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by astrogeek View Post
And I wouldn't worry about any licensing if you own both computers. You are taking nothing from anyone and only using what you already have - it is yours and you need no permission from anyone.
Not necessarily. I think it really depends how a particular font is licensed. See here as an example.

Regards...
 
Old 09-30-2015, 08:42 AM   #10
ArtKautz
Member
 
Registered: Sep 2015
Location: Westminster, CO
Distribution: Mint 18.1 - Cinnamon
Posts: 116

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by yancek View Post
You don't want the forward slash before share if you are already in the /usr directory. From the /usr directory, try cd share/ or just do: cd /usr/share/fonts
Yea, I gotta work on my command line disability! Thanks.
 
  


Reply

Tags
copy, fonts, windows



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows XP Not Appearing At Bootup On Mint 17 / Windows XP Dual Boot GasmanPO2 Linux - Newbie 3 10-07-2014 01:55 AM
how do I dual boot linux mint and windows 8? stewart858 Linux - Newbie 3 05-26-2014 02:00 AM
Dual boot linux Mint - Windows 8 vixa Linux - Newbie 4 09-14-2013 05:42 AM
[SOLVED] Dual Boot Windows 7 and Linux Mint 13, Windows failed jasperbuckens Linux - Software 6 12-21-2012 01:37 PM
Dual Boot Linux Mint 10 and Windows 7 Problems Pogo947 Linux - Newbie 4 06-02-2011 03:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:28 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration