System font issue

Hello.
I'm running a Xfce4 DE, and I seem to be having an issue with my system font. It started after installing vlc, and the accompanying ttf-freefont package.
Here is an example of what is happening.
http://imgur.com/a/4FwKB
The top pic is with the messed up font, and the bottom is what it loked like after a fresh install of Arch with Xfce4.
As you can see several of the letters in the text overlap. The thing is that I never changed the system font, and only the size, after the inital Arch install.
http://imgur.com/GfWME
This problem affects all sorts of programs... Terminal, Firefox, wxHexEditor, etc.
In the case of my hex editor, it renders it useless.
Last edited by *nixer (2012-03-26 02:04:20)

*nixer wrote:
Hello.
I'm running a Xfce4 DE, and I seem to be having an issue with my system font. It started after installing vlc, and the accompanying ttf-freefont package.
Here is an example of what is happening.
http://imgur.com/a/4FwKB
The top pic is with the messed up font, and the bottom is what it loked like after a fresh install of Arch with Xfce4.
As you can see several of the letters in the text overlap. The thing is that I never changed the system font, and only the size, after the inital Arch install.
http://imgur.com/GfWME
This problem affects all sorts of programs... Terminal, Firefox, wxHexEditor, etc.
In the case of my hex editor, it renders it useless.
Your first image has overlapping fonts because your default fonts has been changed when you installed VLC. You can try removing  the ttf-freefont like here
Your second image looks fine(you will need fonts settings as per the wiki, which is why i linked the page), it doesnt have overlapping fonts. what exactly are you asking here?
Last edited by hadrons123 (2012-03-30 18:27:16)

Similar Messages

  • [Forum FAQ]Solution for Windows PowerShell console font issue when changing system locale

    Issue description
    After changing Windows System Locale to another country, users cannot modify Windows PowerShell console font to Lucida after modifying the font settings. There is also a potential bug report in Microsoft connect:
    https://connect.microsoft.com/PowerShell/feedback/details/806286/powershell-4-console-font-issue
    Reason
    In most situations, this problem is caused by system locale is changed to other countries from United States, such as Chinese, French, etc. Because of this change, the code page and font of Windows PowerShell console might be changed with system locale.
    For Example, if change system locale to Chinese (Simplified China), Windows PowerShell console
    (%systemdrive%\ProgramData\Microsoft\Windows\Start Menu\Programs\System Tools) properties would be changed like this:
    Solution
    To resolve this problem, please follow the steps below:
    Access to the path below to find the shortcut of Windows PowerShell:
    %systemdrive%\ProgramData\Microsoft\Windows\Start Menu\Programs\System Tools.
    Right click Windows PowerShell and choose Properties.
    Switch to Options, check if Current code page list there, if that it is, choose
    437 (OEM-United States) and click Apply. Maybe you will encounter an
    Access Deniedpop-up as the following picture.  Then you need take ownership of current PowerShell File, switch to
    Security Tab and obtain full control permission for current User Account.
    Note: if Current code page was not list there, just leave alone
    Options settings and switch to Font Tab.
    Switch to Font Tab, choose the font you wished to use, click
    Apply.
    After the above settings, current Windows PowerShell console font should works as you wished.
    Applies to
    Windows PowerShell 3.0
    Windows PowerShell 4.0
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Cause
    This issue is due to the bootmgr file, we cannot use the bootmgr file of Windows 7 to find the Windows 8 Operating System files.
    The Windows 7 bootmgr can indeed boot Windows 8.
    This is on a BIOS system 
    https://www.youtube.com/watch?v=AVO5aeaKeeE
    This is on a UEFI system 
    https://www.youtube.com/watch?v=g3-K6Fyobz0
    The Windows 8 bootmgr partially loads Windows 8 before offering the boot menu.  By choosing Windows 7, the system must do a reboot.  Using the Windows 7 bootmgr, no reboot is required.
    "Let them that don't want it have memories of not gettin' any." "Gratitude is riches and complaint is poverty and the worst I ever had was wonderful." Brother Dave Gardner. "Experience is what you get when you're looking for something
    else." Sir Thomas Robert Deware

  • Setting for "Rely on system fonts" does not work

    Hello,
    Some time ago I wrote a VBA function that would print a worksheet to pdf. It worked great. I reformatted my system, and now the code no longer works. When I run the routine, I receive the error message, "When you create a PostScript file, you must reply on system fonts and use document fonts. Please go to the printer properties, 'Adobe PDF Settings' page and turn OFF the option 'Rely on system fonts only; do not use document fonts."
    I have changed this setting within the Adobe printer setting in Excel, I have changed it in both the 'Printing Preferences" and "Printer Properties" with the Devices and Printers Windows dialog, and I have confirmed that it is turned off in the binary registry key "HKEY_CURRENT_USER\Printers\DevModePerUser\Adobe PDF". Also, I have applied the Acrobat 9.4.2 patch. Yet still I get the message when my code is executed....
    There were a few changes between my system from before my reformatting. The common items were Windows7 64-bit, Adobe Acrobat 9. The changes were that I went from Microsoft Office 2010 64-bit to Office 2010 32-bit. Windows 7 SP1 is now installed. Also, both Acrobat and Office are installed on my internal "Data" drive, rather than the "C" drive where my operating system is installed.
    Although I do not see an issue with code, since it worked for months, I have included it below (the printing code is at the end). Any help would be GREATLY appreciated!
    Public Sub EnumOrder(ByVal lngLine As Long)
    'lngLine is the line number to start enumeration at
    Dim strStore As String
    Dim strFileName As String
    Dim strTmpPath As String
    Dim strPDFPath As String
    Dim c As Long
    Dim x As Long
    Dim lngErr As Long
    Dim wsPicklist As Worksheet
    Dim wsTemplate As Worksheet
    Dim oPDF As PdfDistiller
    Set oPDF = New PdfDistiller
    Set wsPicklist = Worksheets("Phase II Picklist")
    Set wsTemplate = Worksheets("Template")
    strStore = wsPicklist.Cells(lngLine, 1).Value
    ' Clear formatted border on order template
    wsTemplate.Activate
    wsTemplate.Range("A7:L56").Select
    Selection.ClearContents
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    Selection.Borders(xlEdgeLeft).LineStyle = xlNone
    Selection.Borders(xlEdgeTop).LineStyle = xlNone
    Selection.Borders(xlEdgeBottom).LineStyle = xlNone
    Selection.Borders(xlEdgeRight).LineStyle = xlNone
    Selection.Borders(xlInsideVertical).LineStyle = xlNone
    Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
    wsPicklist.Activate
    ' Initialize variables
    strFileName = wsPicklist.Cells(lngLine, 1) & "-" & wsPicklist.Cells(lngLine, 2) & " " & Format(wsPicklist.Cells(lngLine, 4), "mm-dd-yy") & " Team" & Format(wsPicklist.Cells(lngLine, 3), "00")
    c = 7
    x = lngLine
    ' Add store order data to the template
    With wsTemplate
        ' Add header data to the order template
        .Cells(1, 2) = wsPicklist.Cells(lngLine, 1)  ' Store #
        .Cells(2, 2) = wsPicklist.Cells(lngLine, 3)  ' Team #
        .Cells(4, 2) = wsPicklist.Cells(lngLine, 4)  ' Deliver By
        .Cells(1, 5) = wsPicklist.Cells(lngLine, 13) ' Ship To Name
        .Cells(2, 5) = wsPicklist.Cells(lngLine, 14) ' Ship To Address
        .Cells(3, 5) = wsPicklist.Cells(lngLine, 15) ' Ship To City/State/Zip
        .Cells(4, 5) = wsPicklist.Cells(lngLine, 16) ' Comment
        ' Add line items to the order template
        Do
            .Cells(c, 1) = wsPicklist.Cells(lngLine, 6) ' Part #
            .Cells(c, 2) = wsPicklist.Cells(lngLine, 7) ' Part Name
            .Cells(c, 7) = wsPicklist.Cells(lngLine, 8) ' Qty Ordered
            wsPicklist.Cells(lngLine, 10) = Now         ' Date Printed
            wsPicklist.Cells(lngLine, 11) = strFileName ' File Name
            lngLine = lngLine + 1
            c = c + 1
        Loop While strStore = wsPicklist.Cells(lngLine, 1)
    End With
    'Create formatted borders on store order template
    x = lngLine - x + 6
    wsTemplate.Activate
    wsTemplate.Range("A7:L" & x).Select
    With Selection.Borders(xlEdgeLeft)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    ' Print the store order to PDF
    strTmpPath = "D:\Eric\Desktop\WIS-Speedway\Phase II\Picklists\New\Tmp\"
    strPDFPath = "D:\Eric\Desktop\WIS-Speedway\Phase II\Picklists\New\"
    wsTemplate.PrintOut copies:=1, preview:=False, _
    ActivePrinter:="Acrobat Distiller", printtofile:=True, _
    collate:=True, PrToFileName:=strTmpPath & strFileName & ".ps"
    oPDF.FileToPDF strTmpPath & strFileName & ".ps", strPDFPath & strFileName & ".pdf", ""
    ' Set active cell to next store order
    wsPicklist.Activate
    wsPicklist.Cells(lngLine, 10).Select
    End Sub

    Ok, I have given up the ghost on this problem. I found a MUCH better solution to the problem that I was having, that also has the side benift of processing far faster. See http://msdn.microsoft.com/en-us/library/ee834871(office.11).aspx for details. Basically, I am now using the VBA ExportAsFixedFormat method, rather than Distiller. Hope this helps.

  • System Fonts not showing in the font list

    After I upgraded Adobe CC 2014.3.1.44, CL78964 on my Windows 8 (64-bit) computer, none of the system fonts are listed within Muse.
    Understand two things, one. This used to work fine.  I was able to see all of the system fonts, now only the ones on this list show up.  Two, and fonts that I add via the web kit doesn't show up either.
    I have uninstalled, then reinstalled.  Nothing.  I have also looked for the elusive fonts.db, which cannot be found on my system.  Ideas?
    Thanks,
    Aaron

    Hi Aaron,
    Thanks for the prompt response. We are wondering if you could try a few other things that will help isolate the issue. Our theory is the issue might be related to OS user permissions.
    Run Adobe Muse CC as an Administrator
    Locate the "Adobe Muse CC 2014" shortcut icon in Windows Explorer
    Right-click the "Adobe Muse CC 2014" icon and then click "Run as administrator"
    When the "User Account Control" is displayed, do one of the following:
    If you are logged on as a standard user, or if the user account control is configured to always require credentials, enter the appropriate administrative credentials, and then click "OK"
    If you are logged on as an administrator and user account control is not configured to always require credentials, click "Yes" to start the application
    After Muse finishes launching, create a new site and inspect the font drop-down
    Verify "Local Store" folder permissions
    Open a Windows Explorer dialog
    In the address field enter "%appdata% and open the folder named "com.adobe.AdobeMuseCC.2014.3".The folder path should be similar to the following with <username> being the current OS user's nameC:\Users\ <username> \AppData\Roaming\com.adobe.AdobeMuseCC.2014.3
    Right-click on the folder "Local Store" and select "Properties"
    In the "Local Store Properties" tab, select "Security"
    Select the current user name from the "Group or user names" list
    Observe the section "Permissions for ...." in the "Local Store Properties" dialog. Does the user have full permissions (full control, modify, read & execute, list folder contents, read, write)?
    Do you know if the Windows OS user account you are using is an administrator or standard user on your machine? You can find out by navigating to the following in Windows Explorer and selecting "Manage User Accounts":
    Control Panel\User Accounts\User Accounts
    Please let me know if you need any clarification on what we are asking for.
    Thank you for your time in advance.
    Regards,
    Marc

  • Font issue in Acrobat 8

    We have been having problems with .eps files placed in Quark and exported to a pdf. In Acrobat 7 standard the fonts from the .eps file gets garbled when read on the PC. Use local fonts seems to cure this problem, but I took the pdf file and opened it in Acrobat 8 and got this message. "Cannot extract the embedded font 'XYSNP+Trajan-Regular'. Some characters may not display or print correctly." Now all the surrounding text in Trajan that was input from Quark 6.5 changes to a different font when printed. Would switching to an Opentype version of the font solve this problem?
    Thanks

    I have been having the same sort of problem but with Illustrator CS3, Photoshop CS3, InDesign CS2, and Acrobat 8 Professional. I am the only Mac in the building (brand new system), everyone else is on PC. I am only getting the font issue with the Optima family. The school I work for purchased the font as a PostScript Type 1 outline font. We were guessing that I might be having issues because I am on a Mac.
    When working in InDesign, I have to print off most of my pieces on an inkjet printer, if I try to print to a xerox laser, Indesign crashes or pops up with an error "There is a problem with the font Optima." I have been using both methods for creating a pdf in indesign:exporting to and printing as.
    If I use the optima font in Illustrator I get a "can't print the illustration. There's a bad font used in the system" error.
    When I create PDF's through Indesign, the PDF turns out fine on-screen, but the error message pops up "Cannot extract the embedded font 'XQFZSM+Optima'. Some characters may not display or print correctly."
    When I try to print the PDF out on either a laser or inkjet printer, the optima font has a lot of missing letters or is replaced by a different font.
    This has been very frustrating. The weird thing is that it doesnt happen with all projects that use the optima font. I have done some very small projects (envelopes, postcards) and have either had an issue or no issue at all with optima; and Ive worked on larger projects (magazines, newsletters) and have almost always-from what I can remember-had a problem.
    Is this something that I can fix with program settings? Or would a Mac compatible font be the solution?
    Thanks

  • System font ZOCRB10 120 Bold does not exist

    Hi all expert,
    Our basis has been uploaded  the Font file with the Font name 'ZOCRB10', and replaced the Font name 'OCRB1' with
    'ZOCRB10'  in the SAP script, but when I update the form 'Z9INVOICEFR' with the new font 'ZOCRB10', it still does't have
    the bold font.
    It appears the error 'System font ZOCRB10 120 Bold does not exist' ,
    How to resolve the issue ?
    Thanks & Best Regards,
    Michael
    Edited by: Michael Hong on Aug 25, 2010 2:51 PM

    Hi, did you read Note 606923 - FAQ: SAPscript/Smart Form: Fonts?
    Maybe the note could help you
    Regards,
    Fabrizio

  • PDF Font Issues

    I recently added some new fonts to my directory.  Since then, I have had font issues with my pdf's and previews where the characters are illegible.  I have tried using disabling fonts on Font Book for pdfs, and tried using Font Finagler and FontNuke to clear all font caches.  The problem only seems to effect pdf's.  I am operating on OSX 10.6.7.  Does anyone have any suggestions that might fix this problem. 

    I was getting a "Missing Font" message and the explanation on the forum is that a bug in 10.6.7 caused the OS to UNEMBED fonts in PDF files!
    Don't know who said that, but it's incorrect.
    I built a simple text document with three lines of text. Opened three fonts not on the system, applied one each to a line of text and saved a PDF using Apple's built in PDF generator.
    I then disabled the fonts and deleted them. With no fonts to find and the comment being true that fonts are not embedded, the PDF should display incorrectly. It didn't. I looked exactly as it should, meaning the fonts had to be embedded in the file.

  • Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times.  No prob w/ other CS4 programs.

    Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times to no avail.  There are no other problems with w/ other CS4 programs, they all have the normal system font.  I can't figure it out.  Thanks!

    Funny fonts issue in PI etc.,
    http://kb2.adobe.com/cps/405/kb405153.html
    Fonts in Dreamweaver panels display incorrectly
    http://kb2.adobe.com/cps/138/tn_13862.html
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Terminus 9pt font issue in Konsole after upgrade

    I have a slightly weird font issue in Konsole following a bunch of upgrades today. Basically, at the beginning of the command line and the beginning of subsequent words on that line, the very first character sort of flashes and gets truncated if it is one of several letters. Very narrow characters are not affected (e.g. i) but most are (e.g. n, g, m, r etc.). Once I press enter, the characters look perfectly normal - the issue only occurs on the line being edited and while I am entering or within words as opposed to spaces. Moreover, it only occurs for the first letters of words. Subsequent letters look fine. Once a space is typed following the first word, the character looks normal unless and until I type another letter or return to edit the first word. If I type "cat" it will be a truncated c; at "cat " all looks fine; then "cat c" and the first c is truncated; "cat cat " all is well; "cat c" with the cursor moved back over the second c and the second c rather than the first is truncated.
    Any thoughts as to what I should check? I'm using the infinality stuff from AUR. I updated that last night. However, I don't _think_ I saw the issue today until after upgrading the kernel. Here are the last entries from pacman.log:
    [2012-04-06 00:46] Running 'pacman -U gcc-gcj-4.7.0-1-x86_64.pkg.tar.xz'
    [2012-04-06 00:46] upgraded gcc-gcj (4.6.3-1 -> 4.7.0-1)
    [2012-04-06 00:46] Exited with code 0
    [2012-04-06 00:46] Running 'pacman -U pdftk-1.44-6-x86_64.pkg.tar.xz'
    [2012-04-06 00:46] upgraded pdftk (1.44-5 -> 1.44-6)
    [2012-04-06 00:46] Exited with code 0
    [2012-04-06 00:58] Running 'pacman -U freetype2-infinality-2.4.9-1-x86_64.pkg.tar.xz'
    [2012-04-06 00:58] ==> Infinality environment variables are located in the file /etc/profile.d/infinality-settings.sh. Change it according to your taste.
    [2012-04-06 00:58] ==> Fontconfig files have moved to fontconfig-infinality package which should be installed and configured separately.
    [2012-04-06 00:58] ==> For best experience, install either Windows, Apple or Google fonts. More information is available at http://www.infinality.net.
    [2012-04-06 00:58] upgraded freetype2-infinality (2.4.8-5 -> 2.4.9-1)
    [2012-04-06 00:58] Exited with code 0
    [2012-04-06 00:58] Exited with code 0
    [2012-04-06 01:01] Running 'pacman -U lib32-freetype2-infinality-2.4.9-1-x86_64.pkg.tar.xz'
    [2012-04-06 01:01] upgraded lib32-freetype2-infinality (2.4.8-5 -> 2.4.9-1)
    [2012-04-06 01:01] Exited with code 0
    [2012-04-06 01:06] Running 'pacman -U dpkg-1.16.2-1-x86_64.pkg.tar.xz'
    [2012-04-06 01:06] upgraded dpkg (1.16.1.2-2 -> 1.16.2-1)
    [2012-04-06 01:06] Exited with code 0
    [2012-04-06 01:06] Exited with code 0
    [2012-04-06 03:15] Running 'pacman -Syu'
    [2012-04-06 03:15] synchronizing package lists
    [2012-04-06 03:15] starting full system upgrade
    [2012-04-06 03:16] upgraded util-linux (2.21-6 -> 2.21.1-2)
    [2012-04-06 03:16] upgraded kmod (7-1 -> 7-2)
    [2012-04-06 03:16] upgraded udev (181-5 -> 181-9)
    [2012-04-06 03:16] upgraded bluez (4.99-1 -> 4.99-2)
    [2012-04-06 03:16] upgraded filesystem (2012.2-2 -> 2012.2-4)
    [2012-04-06 03:16] upgraded laptop-mode-tools (1.60-1 -> 1.60-2)
    [2012-04-06 03:16] upgraded libgpod (0.8.2-3 -> 0.8.2-4)
    [2012-04-06 03:16] upgraded libmtp (1.1.2-1 -> 1.1.2-2)
    [2012-04-06 03:16] upgraded lm_sensors (3.3.2-1 -> 3.3.2-2)
    [2012-04-06 03:16] upgraded mkinitcpio (0.8.5-1 -> 0.8.6-2)
    [2012-04-06 03:16] upgraded pcmciautils (018-2 -> 018-4)
    [2012-04-06 03:16] upgraded syslog-ng (3.3.4-4 -> 3.3.4-5)
    [2012-04-06 03:16] upgraded system-config-printer-common (1.3.9-1 -> 1.3.9-2)
    [2012-04-06 03:16] upgraded tzdata (2012b-3 -> 2012c-1)
    [2012-04-06 03:16] upgraded udisks (1.0.4-2 -> 1.0.4-3)
    [2012-04-06 03:16] Exited with code 0
    [2012-04-06 20:23] Running 'pacman -Syu'
    [2012-04-06 20:23] synchronizing package lists
    [2012-04-06 20:23] starting full system upgrade
    [2012-04-06 20:27] upgraded chromium (18.0.1025.142-1 -> 18.0.1025.151-1)
    [2012-04-06 20:27] upgraded foomatic-db (1:4.0.7_20110707-1 -> 1:4.0.15_20120406-1)
    [2012-04-06 20:27] upgraded foomatic-filters (1:4.0.7_20110707-1 -> 1:4.0.15_20120406-1)
    [2012-04-06 20:27] upgraded foomatic-db-engine (1:4.0.7_20110707-1 -> 1:4.0.15_20120406-1)
    [2012-04-06 20:27] upgraded foomatic-db-nonfree (1:4.0.7_20110707-1 -> 1:4.0.15_20120406-1)
    [2012-04-06 20:27] upgraded gnutls (3.0.17-1 -> 3.0.18-1)
    [2012-04-06 20:27] >>> Updating module dependencies. Please wait ...
    [2012-04-06 20:27] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-04-06 20:27] ==> Building image from preset: 'default'
    [2012-04-06 20:27] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-04-06 20:27] ==> Starting build: 3.2.14-1-ARCH
    [2012-04-06 20:27] -> Parsing hook: [base]
    [2012-04-06 20:27] -> Parsing hook: [udev]
    [2012-04-06 20:27] -> Parsing hook: [autodetect]
    [2012-04-06 20:27] -> Parsing hook: [pata]
    [2012-04-06 20:27] -> Parsing hook: [scsi]
    [2012-04-06 20:27] -> Parsing hook: [sata]
    [2012-04-06 20:27] -> Parsing hook: [resume]
    [2012-04-06 20:27] -> Parsing hook: [filesystems]
    [2012-04-06 20:27] -> Parsing hook: [usbinput]
    [2012-04-06 20:27] -> Parsing hook: [fsck]
    [2012-04-06 20:27] ==> Generating module dependencies
    [2012-04-06 20:27] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-04-06 20:27] ==> Image generation successful
    [2012-04-06 20:27] ==> Building image from preset: 'fallback'
    [2012-04-06 20:27] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-04-06 20:27] ==> Starting build: 3.2.14-1-ARCH
    [2012-04-06 20:27] -> Parsing hook: [base]
    [2012-04-06 20:27] -> Parsing hook: [udev]
    [2012-04-06 20:27] -> Parsing hook: [pata]
    [2012-04-06 20:27] -> Parsing hook: [scsi]
    [2012-04-06 20:27] -> Parsing hook: [sata]
    [2012-04-06 20:27] -> Parsing hook: [resume]
    [2012-04-06 20:27] -> Parsing hook: [filesystems]
    [2012-04-06 20:27] -> Parsing hook: [usbinput]
    [2012-04-06 20:27] -> Parsing hook: [fsck]
    [2012-04-06 20:28] ==> Generating module dependencies
    [2012-04-06 20:28] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-04-06 20:28] ==> Image generation successful
    [2012-04-06 20:28] upgraded linux (3.2.13-1 -> 3.2.14-1)
    [2012-04-06 20:28] upgraded linux-docs (3.2.13-1 -> 3.2.14-1)
    [2012-04-06 20:28] upgraded linux-headers (3.2.13-1 -> 3.2.14-1)
    [2012-04-06 20:28] >>> Updating module dependencies. Please wait ...
    [2012-04-06 20:28] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-04-06 20:28] ==> Building image from preset: 'default'
    [2012-04-06 20:28] -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts.img
    [2012-04-06 20:28] ==> Starting build: 3.0.27-1-lts
    [2012-04-06 20:28] -> Parsing hook: [base]
    [2012-04-06 20:28] -> Parsing hook: [udev]
    [2012-04-06 20:28] -> Parsing hook: [autodetect]
    [2012-04-06 20:28] -> Parsing hook: [pata]
    [2012-04-06 20:28] -> Parsing hook: [scsi]
    [2012-04-06 20:28] -> Parsing hook: [sata]
    [2012-04-06 20:28] -> Parsing hook: [resume]
    [2012-04-06 20:28] -> Parsing hook: [filesystems]
    [2012-04-06 20:28] -> Parsing hook: [usbinput]
    [2012-04-06 20:28] -> Parsing hook: [fsck]
    [2012-04-06 20:28] ==> Generating module dependencies
    [2012-04-06 20:28] ==> Creating gzip initcpio image: /boot/initramfs-linux-lts.img
    [2012-04-06 20:28] ==> Image generation successful
    [2012-04-06 20:28] ==> Building image from preset: 'fallback'
    [2012-04-06 20:28] -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts-fallback.img -S autodetect
    [2012-04-06 20:28] ==> Starting build: 3.0.27-1-lts
    [2012-04-06 20:28] -> Parsing hook: [base]
    [2012-04-06 20:28] -> Parsing hook: [udev]
    [2012-04-06 20:28] -> Parsing hook: [pata]
    [2012-04-06 20:28] -> Parsing hook: [scsi]
    [2012-04-06 20:28] -> Parsing hook: [sata]
    [2012-04-06 20:28] -> Parsing hook: [resume]
    [2012-04-06 20:28] -> Parsing hook: [filesystems]
    [2012-04-06 20:28] -> Parsing hook: [usbinput]
    [2012-04-06 20:28] -> Parsing hook: [fsck]
    [2012-04-06 20:28] ==> Generating module dependencies
    [2012-04-06 20:28] ==> Creating gzip initcpio image: /boot/initramfs-linux-lts-fallback.img
    [2012-04-06 20:28] ==> Image generation successful
    [2012-04-06 20:28] upgraded linux-lts (3.0.26-1 -> 3.0.27-1)
    [2012-04-06 20:28] Exited with code 0
    [2012-04-06 20:29] Exited with code 0
    I'm using Terminus (TTF) in size 9 in Konsole. This hasn't been changed for quite a while.
    Any suggestions on how best to troubleshoot this? Is it possible that I need to rebuild some other AUR packages associated with the infinality ones but which haven't actually been updated? Or is it likely to be to do with something else in the list?
    EDIT: It only seems to be some fonts at some sizes e.g. Monaco 8pt is OK but Terminus 9pt isn't; Terminus 10pt is OK; etc.
    Last edited by cfr (2012-04-07 00:18:15)

    Applications/Font Book and validate your fonts.

  • No System Font in Acrobat X

    I want to make a small edit (2 words) to a document in Acrobat X but I have the no system font available error? How can I edit without converting to word first?

    They need to be installed in your system.
    There is a sound technical reason for this (as well as the licensing issues which Adobe, as a font seller, takes very seriously)...
    Most embedded fonts are subset, which means that they only contain the characters actually used. For example if you were editing text where the only words were THE TOP you could change this (in theory) to THE HOP because there is an H but not to THE TON since there would be no N anywhere. Rather than try to sort this out, Acrobat doesn't use the embedded font at all for editing.

  • Why am I seeing a different system font panel in iMovie 11?

    Hi! This is my first question here so let me know what other information I should provide.
    I've been editing casual projects on iMovie '11 on OSX 10.8.5 and when I go to edit text, I can click back and forth between the iMovie font panel and the system font panel. But a few months ago I must've pressed some keyboard shortcut (not sure what I did) and now I'm only seeing a smaller version of the system font panel. I can change text size but only to preset numbers, not on a sliding scale. And there is no color wheel or anything for changing color options. Any advice to get it back to normal?

    Hey TerryS53,
    Thanks for the question. If I understand correctly, the update is taking a long time to download. I would recommend that you read this article, it may be able to help the issue.
    Resolve issues with an over-the-air iOS update - Apple Support
    Download takes a long time, or you can't reach update server
    iOS updates require a persistent Internet connection, and the time it takes to download the update will vary according to the size of the update and your Internet speed. You can use your device normally while downloading the iOS update, and iOS will notify you when you can install the update. To improve the speed of the download, avoid downloading other content.
    If you get a message that "an error occurred downloading iOS," try again later. If the issue persists, try updating your device in another network or use iTunes to update your device. Learn more about iOS updates.
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • What are the system fonts needed for Lion to run?

    I work in a Prepress Department and the only way to properly work with fonts in this enviroment is to have the bare minimum fonts necessary for an OS to run correctly which is usually around 30 or less fonts. Then we use suitcase to load fonts provided by customers and we know for sure we are using the exact fonts used to build the job say in Quark or Indesign. Before moving system fonts from Lion into a disabled folder I was hoping for a list of sysytem fonts that are absolutely needed to run Lion without issues.

    Font list from System>Library>Fonts in the Install Lion .dmg:
    Fonts
    ------Apple Braille Outline 6 Dot.ttf
    ------Apple Braille Outline 8 Dot.ttf
    ------Apple Braille Pinpoint 6 Dot.ttf
    ------Apple Braille Pinpoint 8 Dot.ttf
    ------Apple Braille.ttf
    ------Apple Color Emoji.ttf
    ------Apple Symbols.ttf
    ------AppleGothic.ttf
    ------AquaKana.ttc
    ------Courier.dfont
    ------Geeza Pro Bold.ttf
    ------Geeza Pro.ttf
    ------Geneva.dfont
    ------HelveLTMM
    ------Helvetica LT MM
    ------Helvetica.dfont
    ------HelveticaNeue.dfont
    ------HelveticaNeueDeskUI.ttc
    ------Keyboard.ttf
    ------LastResort.ttf
    ------LucidaGrande.ttc
    ------MarkerFelt.ttc
    ------Menlo.ttc
    ------Monaco.dfont
    ------STHeiti Light.ttc
    ------STHeiti Medium.ttc
    ------Symbol.ttf
    ------Thonburi.ttf
    ------ThonburiBold.ttf
    ------Times LT MM
    ------Times.dfont
    ------TimesLTMM
    ------ZapfDingbats.ttf
    ------ヒラギノ明朝 ProN W3.otf
    ------ヒラギノ明朝 ProN W6.otf
    ------ヒラギノ角ゴ ProN W3.otf
    ------ヒラギノ角ゴ ProN W6.otf

  • IPhoto calendar and book font issue

    On or near Nov. 30th, 2009, I launched iPhoto 8.1 to produce a calendar. The upgrade option came up and I proceeded to do the installation.
    I attempted to upgrade to iPhoto 8.1.1 on a new 2.66 GHz Quad Mac Pro running OS 10.6.2. Install did not work the first time.
    I then launched iPhoto to produce a new calendar. Prior attempts have not had any font issue.
    When selecting my favourite font, Kon Tiki, a different font appears. When selecting that new font, yet another font appears. This continues indefinitely.
    This issue also occurs when creating new books. Existing books and calendars in my Keepsakes retain their original font but I do not want to test if they change until this is resolved.
    I tried reinstalling original application from Time Machine but error continues. I then tried a second successful time to install the upgrade to iPhoto 8.1.1
    I have since tested this on my 3.06 GHz iMac running OS 10.6.2. This system had already been upgraded to iPhoto 8.1.1 but no calendars or books had been produced since the upgrade.
    The same issues occur.
    2.0 GHz MacBook running iPhoto 8.1 does not have this issue.

    I ran Font Book and Validated all fonts. Cleaned up quite a bit but did not resolve the issue. Fonts are no longer as randomly selected (Kozuka Gothic Pro now selects Kon Tiki Kona consistently) but does show the secondary font choice of the font above it. Current version on Mac Pro seems to corrupt the iPhoto Library. Accessing those iPhoto Libraries from different computer (2.0 GHz iMac running iPhoto 8.1 resolves the issue and reinstates selected fonts).
    Second issue now occurring where previously created Calendars are becoming Books on Mac Pro system. I have tried removing all iPhoto files and reinstalling from iLife '09 disc then upgrading to 8.1 but error still occurs.
    How do you remove all iPhoto files and where are they. I can either reinstall them from iLife '09 disc (again) or copy them from MacBook system where they appear to be working.
    I'm not completely able to locate all iPhoto files it seems.

  • Chinese font issue on SAPGUI 6.40

    Hi All,
    We have a problem here with SapGUI 6.40 runing on a Citrix Presentation Server on Windows Server 2003.
    Chinese language pack is installed for the Operation System.
    For some users, after opening more than 3 SAPGUI Windows, the chinese fonts become too small.
    Has anyone saw that ?
    I am a Microsoft/Citrix person, not a SAP specialist. Need to know how SAPGUI handle the fonts. Does it use tha Operation System fonts , has it's own fonts for non ocidental languages ???
    Any information about this will be fine !
    Thanks !!!
    Fernando

    I've done some research, and maybe it's an operation system issue.
    I don't know the patch level, or if the problem happens with 6.20, but in other servers (SAP DEV Servers), in the same condition, the problem does not happen.
    Anyway, any help is welcome !
    Thanks !
    Fernando

  • Dr. Damien's Developmen​t - The Xylophone Project X - Font Issues and Front Panel Layout

    The Show Raw Data button was made active in this installment. Doing this in a robust fashion was more involved than one might think, due to font and platform issues (remember I want to port this to a Windows Mobile device eventually). The following changes were made.
    The A frequency indicator was made active. This was an oversight from the last update.
    A front panel object, XylophoneFP.lvclass, was created to hold the front panel references and methods.
    The front panel object was used to implement the Show Raw Data button.
    The front panel object was used to compensate for font issues.
    When testing this application on Windows Vista, I noticed that the font differences between Vista and XP were annoying enough that I wanted to fix them. This will also lay the groundwork for any layout issues when porting to Windows Mobile. Usually, I create a cluster containing all my front panel references, but this time I put them into an object. Besides the usual object boilerplate, there are two methods, one to rearrange the front panel and one to show/hide the data graphs.
    Once the controls and indicators are properly arranged, showing and hiding the data graphs is simple. VI server methods are used to find the edges of the outer controls, some whitespace is added, then the front panel size is reset. Arranging the controls in the first place is much more complex. Dialog controls are used, and these controls change size based on the default font size. Font sizes can change due to user preference or when using the application in a different operating system than it was developed in. Button sizes can also change due to localization.
    This problem is difficult to solve cleanly, and the VI which does this, XylFP.lvlib:XylophoneFP.lvclass:ArrangeControls.vi, shows the problem. It relies on the actual sizes of the controls/indicators to rearrange the front panel in a hopefully pleasing fashion. Even though this is a relatively simple UI, the VI is fairly complex. It uses VI server calls to determine the current sizes of controls and then rearrange them. If you choose to do something similar, consider the following hints:
    The Bounds property of all controls is not writable. To change the size of controls, you need to find the property or properties which change the size. There may be more than one (which is why Bounds is not writable). For example, to change the size of a boolean, use the Button Size property.
    In many cases, the property you use to change the size of the control will not be the same value as the Bounds property. Using the boolean again, the Bounds of a 3D LED include the 3D effect around the LED, but the Button Size only includes the LED itself. Comparing the Bounds property to the result of a query to the property you will be setting will give you the necessary offset to convert between the two.
    Make sure you label your wires if you attempt to do things like this. Long wires are very common in this type of programming. It is difficult enough to keep track of things without the added aggravation of having the trace wires back to their source to identify them.
    A few judiciously placed type converters can eliminate many type conversion dots. This is not usually a real problem in this context, but you should get into the habit of efficient programming.
    I will be hiking through the mountains of New Mexico with the Boy Scouts for the next couple of weeks, so do not be dismayed if I do not reply to comments very quickly. However, comments and suggestions are still welcome and encouraged. I will reply when I return.
    Previous Installments
    Data Acquisition Concept
    GUI Concepts
    Specifications
    Core Architecture
    Data Acquisition and Note Analysis
    Sound Acquisition Revisited
    Sound Analysis
    Configuration Dialog
    Calibration Dialog
    Message Edited by DFGray on 06-05-2009 03:09 PM
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    XylophoneX.zip ‏1259 KB

    DFGray wrote:
    I put the event structure in the command loop so that events are processed synchronously.  In the past, I have run into a variety of race condition/synchronization issues when separating the event and command loops and prefer to keep them together to make the program structure simpler.
    It is simpler but you give up any multi CPU performance.  That LV is inherently parallel is one (the only) real advantage over a text based development system.  I can write good structured text that is almost as visually easy to parse as LV.  With modern syntax coloring engines, the difference in icons vs. structured text is not that great.
    But the challenge I give the traditional text coders is to keep track of many mulitple threads.  This is why dataflow is a powerful concept.  Yes it does lead to asynchronous execution but if you impose synchronicity on your code you are working against LV.  I get most first time programs where everything is in a sequence structure.  "Just to be safe".  
    Of course this is much better but  my first design goal is that any application should take advantage of a much hardware as possible, degrade gracefully on slower hardware and play nice with other running applications.  This simpler structure severely handicaps that first goal.
    In this case it is simple enough to "get away" with it since as you point out that there should not be anything that takes significant CPU time.   But that may not be true on the PDA?
    If you are going to run it on the PDA will we be discussing techniques to seamlessly use both NIDAQmx Base and NIDAQmx in the same system?  That is a real challenge.  I look forward to more of this!
    Cheers! 

Maybe you are looking for

  • How to implement the Transfer Function in Real Time VIs?

    Hi all, I'm relatively new to Labview Real Time modoule and want to implement one Controller(not PID one) in Deterministic Loop! I have already designed discrete Transfer Function and searching for the way to build one Controller with it! Is it right

  • HELP with Presto Poll

    Ok, I have been trying to add a poll on my site for two days and the frustration is overcoming me! :-( I have no, let me repeat again, no experience with SQL databases, so after some surfing I came across a little PHP program called Presto Polls. See

  • Zen Micro Installation Prob

    I just bought my green micro today and I tried to install it, but it didn't work. Everything went well until the actual installation part where I got numerous popups saying that _____ could not be registered. The only option I had was to press okay.

  • Oracledbconsoleorcl service is not running ?

    i installed oracle database and developer suite 10g and the service mentioned was working properly at the first time , but when i restarted the computer it did not work , and when i try to start it , this message appears windows couldn't start the or

  • 4.1 Flipbook Bug?

    When rendering with the Flipbook and turning on the videoOutput with a decklink SP card? I keep getting an unexpectedly quit. It all worked fine with the shake 4 demo. help please thanks PS.................. is it working 100% on your system G5 + DEC