Build error with lubuntu-16.04 i386 desktop iso.
Bug #1581497 reported by
dvrein
This bug report is a duplicate of:
Bug #1463583: cannot download "gfxboot-theme-ubuntu" on Ubuntu 15.04 (vivid ).
Edit
Remove
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Ubuntu Customization Kit |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
https:/
tar (child): *.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
Unable to extract gfxboot-
I tried to make a customized lubuntu iso, however I got the above error.
I also tried to install gfxboot-
tags: | added: 16.04 |
tags: | added: build-error lubuntu |
Changed in uck: | |
status: | New → Confirmed |
tags: |
added: 170build-error removed: build-error |
tags: |
added: 17.04 build-error removed: 170build-error |
To post a comment you must log in.
I started digging into the source, and I seem to have spotted the problem. The source package of gfxboot- theme-ubuntu seems nowadays to be packed as xz, and no more as gz tarball.
Try the following:
Edit /usr/lib/ uck/customizati on-profiles/ localized_ cd/customize_ iso
and change in line ~84 (the longest line in the whole file) the part
... $(zgrep gz ...
into
... $(zgrep xz ...
and three lines later
change
tar xfz *.tar.gz ||
into
tar xfJ *.tar.xz ||
(This is just a workaround, for an official patch a solution has to be found to work with both gz and xz packed files.)