Displaying 18 results from an estimated 18 matches for "loadfont".
2013 Jan 17
0
How do I get Garamond font in R?
...n to no avail. I played with this for a couple of hours at least and I have gotten nowhere.
Here is a bit of one of my sessions (note that I used file.choose to get down to the Font level)
> require(extrafont)
Loading required package: extrafont
Registering fonts with R
Warning messages:
1: In loadfonts("pdf", quiet = TRUE) :
More than one version of regular/bold/italic found for Apple Braille. Skipping setup for this font.
2: In loadfonts("pdf", quiet = TRUE) :
No regular (non-bold, non-italic) version of Brush Script MT. Skipping setup for this font.
3: In loadfonts(&quo...
2013 Sep 29
2
Bug#603391: Workaround PyGrub issue
...ry="${chosen}"
save_env saved_entry
fi
}
function load_video {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
}
insmod part_msdos
insmod ext2
set root='(/dev/xvda,msdos1)'
search --no-floppy --fs-uuid --set=root f395d5a0-4612-4872-806c-33cd37c152f0
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
insmod part_msdos
insmod ext2
set root='(/dev/xvda,msdos1)'
search --no-floppy --fs-uuid --set=root f395d5a0-4612-4872-806c-33cd37c152f0
set locale_dir=($root)/boot/grub/locale
set lang=en_US...
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi,
These patches contain support for some features that are already in
Syslinux 4 but weren't working properly on the elflink branch. It's
another step closer to feature parity with Syslinux 4.
Having to jump through the comboot API for localboot support is less
than ideal and I'll eventually fix that, probably when we move a big
chunk of code from asm to C.
Also, there's a
2019 Apr 25
0
UEFI and PXE
...el/initrd lines take HTTP URLs just
fine, so that's much faster.
Here's what the output of my grub2.pl CGI looks like (I use gfxterm so I
can load a larger font that I set up locally in the TFTP root - you
should be able to just skip that line):
********************
terminal_input console
loadfont /12x26.pf2
insmod gfxterm
set gfxmode=auto
terminal_output gfxterm
set timeout=-1
set timeout=-1
menuentry 'Install Fedora release 29 x86_64' {
set root=(http,pxesrv.cmadams.net)
linuxefi /pub/fedora/linux/releases/29/Server/x86_64/os/images/pxeboot/vmlinuz inst.root=http:...
2016 Jul 20
2
Fuente (Tahoma)
Hola.
Estoy logrando sacar un gráfico para una presentación en ggloot2 y me está
quedando bastante bonito! Pero, tengo es problema con las fuentes:
Warning messages:
?>?
1: In grid.Call(L_textBounds, as.graphicsAnnot(x$label), ... :
?>?
font family not found in Windows font database
?etc.?
?que proviene de
> theme_minimal(base_size = 14, base_family = "Tahoma") +
?La verdad
2010 Jul 13
9
Xen 4 Ubuntu Lucid panics
I have tried 4 time unsuccessfully to install Xen 4 on Ubuntu Lucid (10.4) 64
bit version using the tutorial at
http://bderzhavets.wordpress.com/2010/04/24/set-up-ubuntu-10-04-server-pv-domu-at-xen-4-0-dom0-pvops-2-6-32-10-kernel-dom0-on-top-of-ubuntu-10-04-server/
on a Lenovo thinkcentre workstation.
When I boot I get a kernel panic. If I boot the Linux kernel that I compiled
using the
2013 Sep 22
0
UEFI boot - no console will be available to OS
...]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 0b8cebb6-e937-402c-b9e1-16d4e422b590
else
search --no-floppy --fs-uuid --set=root 0b8cebb6-e937-402c-b9e1-16d4e422b590
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/09_xen ###
menuentry ''Xen 4.2.2 / Arch GNU/Linux, with Linux linux'' --class xen --class arch --cla...
2013 Oct 10
1
[PATCH] pygrub: Support (/dev/xvda) style disk specifications
...save_env saved_entry
+ fi
+}
+
+function load_video {
+ insmod vbe
+ insmod vga
+ insmod video_bochs
+ insmod video_cirrus
+}
+
+insmod part_msdos
+insmod ext2
+set root=''(/dev/xvda,msdos1)''
+search --no-floppy --fs-uuid --set=root f395d5a0-4612-4872-806c-33cd37c152f0
+if loadfont /usr/share/grub/unicode.pf2 ; then
+ set gfxmode=640x480
+ load_video
+ insmod gfxterm
+ insmod part_msdos
+ insmod ext2
+ set root=''(/dev/xvda,msdos1)''
+ search --no-floppy --fs-uuid --set=root f395d5a0-4612-4872-806c-33cd37c152f0
+ set locale_dir=($root)/boot/grub/locale...
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
...nux-3.31/keywords.inc 2007-01-03 14:02:38.000000000 -0500
@@ -46,6 +46,7 @@
keyword menu, pc_comment
keyword append, pc_append
keyword default, pc_default
+ keyword default64, pc_default64
keyword display, pc_filecmd, get_msg_file
keyword font, pc_filecmd, loadfont
keyword implicit, pc_setint16, AllowImplicit
diff -ur syslinux-3.31.orig/kwdhash.gen syslinux-3.31/kwdhash.gen
--- syslinux-3.31.orig/kwdhash.gen 2006-09-26 00:52:27.000000000 -0400
+++ syslinux-3.31/kwdhash.gen 2007-01-03 15:17:26.000000000 -0500
@@ -1,6 +1,7 @@
hash_menu eq...
2019 Apr 24
3
UEFI and PXE
We have a working PXE setup. I've tried to adapt it to UEFI as per
RHEL6 manual, but the client won't boot.
Strangely, tcpdump shows that the client tries to download all files via
tftp from the dhcp server rather than the tftp server (they are
different). next-server is pointing to the tftp server.
Any clues?
2011 Oct 09
3
GRUB2 configuration for Xen 4 on Ubuntu Linux 10.04
Hello,
I have installed the Xen 4.1.1 and a working kernel 2.6.32.43 which supports
Xen on a Ubuntu Linux 10.04 LTS. However, I have never successfully booted
the Hypervisor and Dom0. The screen is always black after some kernel
messages rapidly go by. I think that I may pass the wrong parameters to the
kernel or Hypervisor with GRUB2.
Can any one share his/her working grub.cfg for GRUB2 with
2013 Oct 01
0
Bug#603391: Bug#603391: Workaround PyGrub issue
...n}"
+ save_env saved_entry
+ fi
+}
+
+function load_video {
+ insmod vbe
+ insmod vga
+ insmod video_bochs
+ insmod video_cirrus
+}
+
+insmod part_msdos
+insmod ext2
+set root='(/dev/xvda,msdos1)'
+search --no-floppy --fs-uuid --set=root f395d5a0-4612-4872-806c-33cd37c152f0
+if loadfont /usr/share/grub/unicode.pf2 ; then
+ set gfxmode=640x480
+ load_video
+ insmod gfxterm
+ insmod part_msdos
+ insmod ext2
+ set root='(/dev/xvda,msdos1)'
+ search --no-floppy --fs-uuid --set=root f395d5a0-4612-4872-806c-33cd37c152f0
+ set locale_dir=($root)/boot/grub/locale
+ set la...
2013 Apr 30
0
Extrafont package: Fonts are not successfully installed
...g.
C:\WINDOWS\Fonts\webdings.ttf : Webdings already registered in fonts
database. Skipping.
C:\WINDOWS\Fonts\wingding.ttf : Wingdings-Regular already registered in
fonts database. Skipping.
Found FontName for 0 fonts.
Scanning afm files in C:/Program Files/RStudio/R/library/extrafontdb/metrics
> loadfonts()
Registering font with R using pdfFonts(): Arial Black
Registering font with R using pdfFonts(): Arial
Registering font with R using pdfFonts(): Braille
Registering font with R using pdfFonts(): Comic Sans MS
Registering font with R using pdfFonts(): Courier New
Registering font with R using pdfF...
2013 Apr 12
7
Xen not seeing all the memory in the box
I''m running Xen 4.1 (4.1.3-3ubuntu1.3) on an Ubuntu 12.10 server with
an AMD FX-8150 processor (8 cores) and 16 GB of RAM.
When I boot the server, Xen sees only 3 GB of RAM (instead of 16 GB).
If I try to create a domU with more than about 1.5 GB of RAM, the create
fails with messages saying it "could not allocate memory for HVM guest".
Here''s the output when I do
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...sg_file(KernelName);
refstr_put(filename);
} else if (looking_at(p, "font")) {
- char *filename, *dst = KernelName;
+ const char *filename;
+ char *dst = KernelName;
size_t len = FILENAME_MAX - 1;
filename = refstrdup(skipspace(p + 4));
@@ -1145,8 +1147,8 @@ do_include:
loadfont(KernelName);
refstr_put(filename);
} else if (looking_at(p, "kbdmap")) {
- com32sys_t reg;
- char *filename, *dst = KernelName;
+ const char *filename;
+ char *dst = KernelName;
size_t len = FILENAME_MAX - 1;
filename = refstrdup(skipspace(p + 4));
@@ -1189,7 +1191,6 @@ d...
2012 Apr 22
12
Xen doesn't boot on grub2 or xend doesn't start
hi guys,
It''s my first time here and in a mailing lists, I only participated in
forums before. Please, If I make a mistake you should advise me. Let''s go!
I was reading "xencommons not start" in a Remus Forum in order to install
Remus.
Well… I followed the tutorial <
http://remusha.wikidot.com/configuring-and-installing-remus>, I reboot in
xen_unstable and I had
2012 Apr 22
12
Xen doesn't boot on grub2 or xend doesn't start
hi guys,
It''s my first time here and in a mailing lists, I only participated in
forums before. Please, If I make a mistake you should advise me. Let''s go!
I was reading "xencommons not start" in a Remus Forum in order to install
Remus.
Well… I followed the tutorial <
http://remusha.wikidot.com/configuring-and-installing-remus>, I reboot in
xen_unstable and I had
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com>
The following patch series is available at,
git://git.zytor.com/users/mfleming/syslinux.git elflink
All patches are against the 'elflink' branch.
This series fixes a few serious bugs and some behavioural
incompatibilities with the 4.x series.
Matt Fleming (19):
ldlinux: Initialise 'p' before using it.
ldlinux: Parse