search for: isq

Displaying 20 results from an estimated 35 matches for "isq".

Did you mean: is
2005 Jun 06
20
2 ISQs
...s from the office to my mails and local network (IMAP, Remote Destop, ...) + Be able to send and receive mail without being blocked! So the configuration in Linux and Shorewall would be: + Default gateway to cable modem + "masq" from local network to both ISQs + Define rules to manage the access to my local computers and services + Use the "opened ISP" to send and receive email on port 25... The last one is not working with the default route to the "blocked" ISP. I tried many configurations in "na...
2019 Apr 08
0
[PATCH 01/11] v2v: Move have_selinux to utils.
...rsed_uri (* Compute the LD_LIBRARY_PATH that we may have to pass to nbdkit. *) let library_path = Option.map (fun libdir -> libdir // libNN) libdir in - (* Is SELinux enabled and enforcing on the host? *) - let have_selinux = - 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" in - (* Check that the VDDK path looks reasonable. *) let error_unless_vddk_libdir () = (match libdir with diff --git a/v2v/output_rhv_upload.ml b/v2v/output_rhv_upload.ml index 77c39107e..0709c8152 100644 --- a/v2v/output_rhv_upload.ml +++ b/v2v/output_rhv_upload.ml @@ -...
2014 May 02
5
[PATCH 1/3] build: fix srcdir!=builddir builds
...AGS = \ -I$(shell $(OCAMLC) -where) \ $(EXT2FS_CFLAGS) $(COM_ERR_CFLAGS) \ - -I$(srcdir)/lib -I../lib + -I$(top_srcdir)/lib -I../lib BOBJECTS = $(SOURCES_ML:.ml=.cmo) XOBJECTS = $(SOURCES_ML:.ml=.cmx) @@ -148,16 +148,16 @@ ext2init-bin.S: init strip --strip-all $< @file $< | grep -isq static || \ (echo "*** error: init is not staticly linked"; exit 1) - ./bin2s.pl $< $@ + $(srcdir)/bin2s.pl $< $@ depend: .depend -.depend: $(SOURCES) +.depend: $(wildcard $(abs_srcdir)/*.mli) $(wildcard $(abs_srcdir)/*.ml) config.ml rm -f $@ $@-t - $(OCAMLFIND) ocamldep...
2011 Aug 24
1
[PATCH] febootstrap-supermin-helper: Replace objcopy call for embedding init binary
...cdir)/elf-default-arch | gawk '{ print $$1 }') DEFAULT_ARCH = $(shell $(srcdir)/elf-default-arch | gawk '{ print $$2 }') -ext2init.o: init + +CLEANFILES = ext2init.S + +ext2init.o: ext2init.S + $(CC) -o $@ -c $< + +ext2init.S: init strip --strip-all $< @file $< | grep -isq static || \ (echo "*** error: init is not staticly linked"; exit 1) - objcopy -I binary -B $(DEFAULT_ARCH) -O $(ELF_DEFAULT_ARCH) $< $@ + ./bin2s.pl $< $@ man_MANS = \ febootstrap-supermin-helper.8 diff --git a/helper/bin2s.pl b/helper/bin2s.pl new file mode 100755 index 00...
2018 May 12
0
Centos 7.5 and Courier 10 Pitch fonts in Libreoffice
...to CC me.*** Playing the game for the games sake. Web: https://kathenas.org GitLab: https://gitlab.com/kathenas Twitter: kathenasorg GPG: A0C3 4C6A AC2B B8F4 F1E5?EDF4 333F 60DC B0B9 BB77 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQIcBAEBAgAGBQJa9yloAAoJEDM/YNywubt3b4cP/iSQ+XCsO7aUH80WpRjKaz6X 0Eb6iRbLXQSUAYEu0PzZFwXV2sDBZQRzyt4o7NgOxRkfO8kGybqmWXPi2PxbC4NA NjBxvy+4741nJ3vL3kUSnju9eEJdHnGBKCPHP8o6sf3lVdttzWkcnlT80YU0QElS TKqTWBBKeTaNGZGf84v6qEWa5UZV3R5ehufSvL4uA//6CWSID7W/glMoztFw7tCt UuVxZTOMfO9+DYFCoAaG0vRxaUThG4Xu9tJC1IL7uSNM3C4cl4KdMcMTHf0EZrfc b/CZy+JQELzLxrc2ud3...
2018 May 12
4
Centos 7.5 and Courier 10 Pitch fonts in Libreoffice
Everyone, With the update to Centos 7.5 it is apparent that we lost the Courier 10 Pitch fonts that were in "xorg-x11-fonts-Type1". Does anyone know how to get this back. Greg Ennis
2017 Aug 23
0
[PATCH v2 supermin 1/1] Switch binary embedding to a C source
...it-bin.h +BUILT_SOURCES = format-ext2-init-bin.h -format-ext2-init-bin.o: format-ext2-init-bin.S - $(CC) -o $@ -c $< - -format-ext2-init-bin.S: ../init/init $(srcdir)/bin2s.pl +format-ext2-init-bin.h: ../init/init $(srcdir)/bin2c.pl strip --strip-all $< ls -l $< @file $< | grep -isq static || \ (echo "*** error: init is not statically linked"; exit 1) - $(srcdir)/bin2s.pl $< $@ + $(srcdir)/bin2c.pl $< $@ depend: .depend diff --git a/src/bin2s.pl b/src/bin2c.pl similarity index 69% rename from src/bin2s.pl rename to src/bin2c.pl index 6c70446..b3f94ec 1...
2017 Aug 23
2
[PATCH v2 supermin 0/1] Fix embedding of init
Hi, this patch replaces the first simpler version: https://www.redhat.com/archives/libguestfs/2017-August/msg00117.html The approach now is to use a C snippet, which should pose way less compatibility issues. Thanks, Pino Toscano (1): Switch binary embedding to a C source .gitignore | 2 +- src/Makefile.am | 18 +++++++++--------- src/{bin2s.pl => bin2c.pl} |
2020 Apr 06
0
[v2v PATCH 2/2] Consolidate handling of temporary files/dirs
..._dir "virt-v2v." in + rmdir_on_exit cachedir; + cachedir + ) + +let tmpdir = + Lazy.force lazy_tmpdir + +let cachedir = + Lazy.force lazy_cachedir + (* Is SELinux enabled and enforcing on the host? *) let have_selinux = 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" @@ -112,7 +134,7 @@ let qemu_img_supports_offset_and_size () = (* We actually attempt to create a qcow2 file with a raw backing * file that has an offset and size. *) - let tmp = Filename.temp_file "v2vqemuimgtst" ".img" in + let tmp = Filename.temp_...
2020 Apr 06
0
[PATCH virt-v2v v2 2/2] v2v: Allow large temporary directory to be set on a global basis.
...ools_utils open Common_gettext.Gettext +let large_tmpdir = + try Sys.getenv "VIRT_V2V_TMPDIR" + with Not_found -> (open_guestfs ())#get_cachedir () + (* Is SELinux enabled and enforcing on the host? *) let have_selinux = 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" @@ -113,6 +117,7 @@ let qemu_img_supports_offset_and_size () = * file that has an offset and size. *) let tmp = Filename.temp_file "v2vqemuimgtst" ".img" in + unlink_on_exit tmp; Unix.truncate tmp 1024; let json = [ @@ -132,7 +137,6 @@ let qem...
2019 Jan 08
2
[PATCH] v2v: -o rhv-upload: Allow configure commands to set the Python version.
...name:"rhv-upload-createvm.py" + ~python:python_intepreter Output_rhv_upload_createvm_source.code in (* Is SELinux enabled and enforcing on the host? *) let have_selinux = 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" in + (* Check Python interpreter found. *) + let error_unless_python_interpreter_found () = + try ignore (which python_intepreter) + with Executable_not_found _ -> + error (f_"no python binary called ‘%s’ can be found on the $PATH") + python_in...
2019 Apr 08
12
[PATCH 00/11] v2v: Change virt-v2v to use nbdkit for input in several modes.
This series (except the last one) changes virt-v2v to use nbdkit for several input modes: -i vmx -it vddk: No change in functionality, as this already uses nbdkit-vddk-plugin, but the code is refactored for the other modes to use. -i libvirtxml: Use nbdkit-curl-plugin instead of qemu curl. vCenter: Use nbdkit-curl-plugin instead of qemu curl. xen: Use nbdkit-ssh-plugin instead of qemu
2020 Apr 06
4
[v2v PATCH 1/2] v2v: nbdkit: change base dir for nbdkit sockets/pidfiles
Since this new temporary directory will contain UNIX sockets for communicating with nbdkit, then its path must not be too long. Use the existing directory that libguestfs exposes for this, i.e. sockdir. --- v2v/nbdkit.ml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/v2v/nbdkit.ml b/v2v/nbdkit.ml index 65317f9b..46b20c9d 100644 --- a/v2v/nbdkit.ml +++ b/v2v/nbdkit.ml
2020 Apr 06
6
[PATCH virt-v2v v2 0/2] v2v: Large temporary directory handling.
v1 was here: https://www.redhat.com/archives/libguestfs/2020-April/msg00007.html There's a BZ for this now which I forgot to add to the commit message: https://bugzilla.redhat.com/show_bug.cgi?id=1814611 For v2: - Fix incorrect reference to $TMPDIR in existing manual. - Separate handling for small temporary files and large temporary files. Small temporary files go into $TMPDIR
2020 Apr 02
6
[PATCH virt-v2v] v2v: Allow temporary directory to be set on a global basis.
...open Tools_utils open Common_gettext.Gettext +let tmpdir = + try Sys.getenv "VIRT_V2V_TMPDIR" + with Not_found -> (open_guestfs ())#get_cachedir () + (* Is SELinux enabled and enforcing on the host? *) let have_selinux = 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" @@ -112,7 +116,8 @@ let qemu_img_supports_offset_and_size () = (* We actually attempt to create a qcow2 file with a raw backing * file that has an offset and size. *) - let tmp = Filename.temp_file "v2vqemuimgtst" ".img" in + let tmp = Filename.temp_...
2016 Dec 07
5
[PATCH 0/3] Miscellaneous improvements to supermin.
Document what each module does, using *.mli files. Remove the --dtb option, it's obsolete. Rename modules according to their purpose. Rich.
1999 May 03
0
compilation of R-0.63.3 on alpha (PR#183)
...eee_with_inexact -g -I../include -I../../src/include -c pt.c -o pt= =2Eo gcc -ieee_with_inexact -g -I../include -I../../src/include -c qt.c -o qt= =2Eo gcc -ieee_with_inexact -g -I../include -I../../src/include -c rt.c -o rt= =2Eo gcc -ieee_with_inexact -g -I../include -I../../src/include -c dchisq.c -= o = dchisq.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c pchisq.c -= o = pchisq.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c qchisq.c -= o = qchisq.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c rchisq.c -= o = rchisq.o gcc -ieee_wit...
2018 Mar 08
6
[PATCH v5 0/4] v2v: Add -o rhv-upload output mode.
Mainly minor fixes and code cleanups over the v4 patch. There are still several problems with this patch, but it is in a reviewable state, especially the Python code. Rich.
2018 Mar 08
0
[PATCH v5 4/4] v2v: Add -o rhv-upload output mode.
...oad-createvm.py" in + with_open_out + createvm + (fun chan -> output_string chan Output_rhv_upload_createvm_source.code); + createvm in + + (* Is SELinux enabled and enforcing on the host? *) + let have_selinux = + 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" in + + (* Check that nbdkit is available and new enough. *) + let error_unless_nbdkit_working () = + if 0 <> Sys.command "nbdkit --version >/dev/null" then + error (f_"nbdkit is not installed or not working. It is required to use ‘-o rhv-upload’....
2018 Mar 08
2
Re: [PATCH v5 4/4] v2v: Add -o rhv-upload output mode.
...out > + createvm > + (fun chan -> output_string chan > Output_rhv_upload_createvm_source.code); > + createvm in > + > + (* Is SELinux enabled and enforcing on the host? *) > + let have_selinux = > + 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing" in > + > + (* Check that nbdkit is available and new enough. *) > + let error_unless_nbdkit_working () = > + if 0 <> Sys.command "nbdkit --version >/dev/null" then > + error (f_"nbdkit is not installed or not working. It is required...