search for: unxz

Displaying 13 results from an estimated 13 matches for "unxz".

Did you mean: unx
2016 Feb 17
0
[PATCH supermin v2 1/4] init: Uncompress modules before adding them to the mini initrd.
...-- a/README +++ b/README @@ -97,9 +97,9 @@ are building: qemu >= 0.13 kernel >= 2.6.36 - zlib (statically linked) - if your kernel uses gzipped modules + gunzip (command) - if your kernel uses gzipped modules - xz (statically linked) - if your kernel uses xz-compressed modules + unxz (command) - if your kernel uses xz-compressed modules Building and installing ----------------------- diff --git a/configure.ac b/configure.ac index 126366b..0fe88c7 100644 --- a/configure.ac +++ b/configure.ac @@ -127,77 +127,11 @@ dnl Check for fakeroot, only used a few drivers where the host...
2016 Feb 17
2
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
Allow an alternate libc, such as dietlibc, to be used for the init binary in the supermin appliance. Rich.
2016 Feb 17
8
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
v1 -> v2: - If we split out the init program into a separate init/ directory, that makes it much easier to build against an alternate libc. I tried to build against uClibc, but uClibc requires an entire build chain, which looked like it was going to be a massive ballache. Rich.
2014 Aug 25
2
[LLVMdev] [cfe-dev] [3.5 Release] Release Candidate 3 Now Available
The ARM binaries seem to be corrupt. Although correctly signed, the xz file seems to be truncated arm7% unxz < clang+llvm-3.5.0-rc3-armv7a-linux-gnueabihf.tar.xz | wc -c unxz: (stdin): Unexpected end of input 133214381 M.E.O. On Aug 21, 2014, at 10:56 AM, Bill Wendling <isanbard at gmail.com> wrote: > Ahem. And now for the correct URL: > > http://llvm.org/pre-releases/3.5/ >...
2014 Aug 21
6
[LLVMdev] [3.5 Release] Release Candidate 3 Now Available
The third 3.5 release candidate is now available. Please pick up sources and binaries here: https://llvm.org/pre-release/3.5 Run it through its phases and report any bugs you find! Share and enjoy! -bw
2012 Nov 27
6
How to clean up /
...dhclient 5M /rescue/head 5M /rescue/mt 5M /rescue/sed 5M /rescue/tail 5M /rescue/tee 5M /rescue/gzip 5M /rescue/gunzip 5M /rescue/gzcat 5M /rescue/zcat 5M /rescue/bzip2 5M /rescue/bunzip2 5M /rescue/bzcat 5M /rescue/xz 5M /rescue/unxz 5M /rescue/lzma 5M /rescue/unlzma 5M /rescue/xzcat 5M /rescue/lzcat 5M /rescue/tar 5M /rescue/vi 5M /rescue/ex 5M /rescue/id 5M /rescue/groups 5M /rescue/whoami 5M /rescue/chroot 5M /rescue/chown 5M /rescue/chgrp 5M /rescue/nc 76...
2019 Jun 28
2
lpxelinux.0 problems with CentOS 7.6
...ges/pxeboot/initrd.img APPEND ip=dhcp inst.ks=http://filer/repo/kickstart/centos7-ks.cfg inst.gpt In the older thread, there was some talk of the increasing size of the initrd.img file possibly being an issue, but in my testing, the 7.5 initrd.img is larger than 7.6's but still boots fine # unxz -l /pool2/repo/centos/7.?.????/os/x86_64/images/pxeboot/initrd.img Strms Blocks Compressed Uncompressed Ratio Check Filename 1 1 46.2 MiB 130.1 MiB 0.355 CRC32 /pool2/repo/centos/7.4.1708/os/x86_64/images/pxeboot/initrd.img 1 1 50.4 MiB 133.6 MiB 0.377 C...
2019 Jan 21
0
Cannot start a secondary Xserver with resolution 6480x3840
...60 2163 2168 2222 +hsync -vsync (133.3 kHz eP) > > > So evidently nouveau cannot allocate another framebuffer with size 6480x3840 > > > I am using devuan ascii with latest linux kernel 4.20.3, which I have just compiled using these commands: > > cd /home/deb/linux-image > unxz -c linux-4.20.3.tar.xz | gpg --verify linux-4.20.3.tar.sign - > unp ./linux-4.20.3.tar.xz > cd linux-4.20.3 > cp /boot/config-`uname -r` ./.config > make menuconfig > time fakeroot make-kpkg --initrd --append-to-version=-absurd.2 kernel_image kernel_headers -j40 > > > I will...
2019 Jan 21
3
Cannot start a secondary Xserver with resolution 6480x3840
...t;x0.0 533.25 3840 3888 3920 4000 2160 2163 2168 2222 +hsync -vsync (133.3 kHz eP) So evidently nouveau cannot allocate another framebuffer with size 6480x3840 I am using devuan ascii with latest linux kernel 4.20.3, which I have just compiled using these commands: cd /home/deb/linux-image unxz -c linux-4.20.3.tar.xz | gpg --verify linux-4.20.3.tar.sign - unp ./linux-4.20.3.tar.xz cd linux-4.20.3 cp /boot/config-`uname -r` ./.config make menuconfig time fakeroot make-kpkg --initrd --append-to-version=-absurd.2 kernel_image kernel_headers -j40 I will be happy to provide more information,...
2013 Sep 23
28
[PATCH 0/2] add LZ4 kernel decompression support
Linux 3.11 added respective support, so I think we should follow suit. 1: xen: add LZ4 decompression support 2: libxc: add LZ4 decompression support Signed-off-by: Jan Beulich <jbeulich@suse.com>
2015 Mar 10
0
[PATCH] v2v: Add the test-harness used by external tests.
...input, if it doesn't exist already. *) + let input_disk = + if Filename.check_suffix input_disk ".xz" then ( + let input_disk_uncomp = Filename.chop_suffix input_disk ".xz" in + if not (Sys.file_exists input_disk_uncomp) then ( + let cmd = sprintf "unxz --keep %s" (quote input_disk) in + printf "%s\n%!" cmd; + if Sys.command cmd <> 0 then + failwith "unxz command failed" + ); + input_disk_uncomp + ) + else input_disk in + ignore input_disk; + + (* Run virt-v2v. *) + let cmd =...
2015 Mar 10
2
[PATCH 0/1] v2v: Add the test-harness used by external tests.
As I'm now working through the enormous virt-v2v/virt-p2v bug list, we need a high quality set of tests to ensure that we don't accidentally regress some old OS/hypervisor combination while making changes. The test cases are going to be huge, so we cannot possibly distribute them in libguestfs. Furthermore many of them have licensing problems which means we cannot redistribute them at
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am