Ubuntu (debian)

4 views
Skip to first unread message

J.Wit...@mindef.nl

unread,
Sep 29, 2025, 4:32:26 AMSep 29
to kiwi-...@googlegroups.com

Hi all,

 

Finally i got some spare moments to have a go at kIWI again.

Firstly, my congratulations with the huge amount of progress that has been made.

Regrettably I feel like a fresh newbie again,

 

As suggested in the docu, I started rebuilding using some of the configs used for the test-images.

Like:

sudo /usr/local/bin/kiwi-ng system build     --description kiwi/build-tests/x86/leap/test-image-disk     --set-repo https://download.opensuse.org/distribution/leap/15.6/repo/oss     --target-dir /tmp/myimage

And: sudo /usr/local/bin/kiwi-ng system prepare --description kiwi/build-tests/x86/tumbleweed/test-image-disk --set-repo https://download.opensuse.org/tumbleweed/repo/oss/  --root=/dev/shm/tmp_root

 

So far so good, but when trying likewise on a Ubuntu machine, less success:

 

On other machine, fresh installed, kiwi obtained via git

cat /etc/os-release

PRETTY_NAME="Ubuntu 22.04.5 LTS"

NAME="Ubuntu"

VERSION_ID="22.04"

VERSION="22.04.5 LTS (Jammy Jellyfish)"

 

sudo kiwi-ng --version

KIWI (next generation) version 10.2.32

 

sudo kiwi-ng system build  --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/  --target-dir /data/myimage/

[ INFO    ]: 14:07:26 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi

[ INFO    ]: 14:07:26 | Support for XML markup available

[ ERROR   ]: 14:07:26 | KiwiTypeNotFound: No build type defined with applied profiles: []

 

 

sudo kiwi-ng system prepare --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --root /data/root

[ INFO    ]: 14:06:20 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi

[ INFO    ]: 14:06:20 | Support for XML markup available

[ ERROR   ]: 14:06:20 | KiwiTypeNotFound: No build type defined with applied profiles: []

 

As far as I could see, type was set in the file appliance.kiwi

 

Did I forgot to install something essential?

 

Regards, hans

 

Met vriendelijke groet,

Hans Witvliet, J, Ing., DMO/OPS/I&S/APH, Kennis Team Opensource
Coldenhovelaan 1 Maasland 3531RC Coldehovelaan 1, kamer B213

 


Dit bericht kan informatie bevatten die niet voor u is bestemd. Indien u niet de geadresseerde bent of dit bericht abusievelijk aan u is toegezonden, wordt u verzocht dat aan de afzender te melden en het bericht te verwijderen. De Staat aanvaardt geen aansprakelijkheid voor schade, van welke aard ook, die verband houdt met risico's verbonden aan het elektronisch verzenden van berichten.

This message may contain information that is not intended for you. If you are not the addressee or if this message was sent to you by mistake, you are requested to inform the sender and delete the message. The State accepts no liability for damage of any kind resulting from the risks inherent in the electronic transmission of messages.

Marcus Schäfer

unread,
Sep 29, 2025, 5:17:46 AMSep 29
to J.Witvliet via kiwi
Hi,

> Firstly, my congratulations with the huge amount of progress that has
> been made.

Thank you very much

> Regrettably I feel like a fresh newbie again,

LOL, that's going to change quickly again :)

> sudo kiwi-ng system build --description
> /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --target-dir
> /data/myimage/
>
> [ INFO ]: 14:07:26 | Loading XML description:
> /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
>
> [ INFO ]: 14:07:26 | Support for XML markup available
>
> [ ERROR ]: 14:07:26 | KiwiTypeNotFound: No build type defined with
> applied profiles: []
>
> As far as I could see, type was set in the file appliance.kiwi

So if you take a look to the description you will find:

<profiles>
<profile name="Live" description="Live image of Ubuntu"/>
<profile name="Virtual" description="Virtual image of Ubuntu"/>
<profile name="Disk" description="OEM image of Ubuntu"/>
</profiles>

and further down things like

<preferences profiles="Virtual">
<type image="oem" ...

So the way this image description was designed is based on profiles
and the type definition is specific to one of them. None of the
profiles in the <profiles> section is configured to be auto selected.

This means if you run "kiwi-ng ..." and you don't select a profile
the result image description passed along doesn't have a type and
other preferences settings. The first error condition is hit when
kiwi doesn't know anything about the build type and that's where
this error message comes from:

No build type defined with applied profiles: []

The solution is to select a profile:

kiwi-ng --profile Virtual system build ...

That should solve your issue

Regards,
Marcus
--
Public Key available via: https://keybase.io/marcus_schaefer/key.asc
keybase search marcus_schaefer
signature.asc

J.Wit...@mindef.nl

unread,
Oct 10, 2025, 7:50:48 AM (10 days ago) Oct 10
to kiwi-...@googlegroups.com
See below...

-----Oorspronkelijk bericht-----
<snip>

The solution is to select a profile:

kiwi-ng --profile Virtual system build ...

That should solve your issue

Regards,
Marcus

======================================================================================
Originally:
sudo kiwi-ng system build --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --target-dir /data/myimage/
[ INFO ]: 14:07:26 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 14:07:26 | Support for XML markup available
[ ERROR ]: 14:07:26 | KiwiTypeNotFound: No build type defined with applied profiles: []

As you indicated:
grep profile appliance.kiwi
<profiles>
<profile name="Live" description="Live image of Ubuntu"/>
<profile name="Virtual" description="Virtual image of Ubuntu"/>
<profile name="Disk" description="OEM image of Ubuntu"/>
</profiles>

So, I tried:
sudo kiwi-ng --profile Live system build --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --target-dir /data/myimage/
[ INFO ]: 17:09:44 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 17:09:44 | Support for XML markup available
[ INFO ]: 17:09:44 | --> loaded /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 17:09:44 | --> Selected build type: iso
[ INFO ]: 17:09:44 | --> Selected profiles: Live
[ INFO ]: 17:09:44 | Preparing new root system
[ INFO ]: 17:09:44 | Setup root directory: /data/myimage/build/image-root
[ INFO ]: 17:09:44 | Setting up repository obs://Virtualization:Appliances:Staging/xUbuntu_24.04_x86_64
[ INFO ]: 17:09:44 | --> Type: apt-deb
[ INFO ]: 17:09:44 | --> Priority: 1
[ INFO ]: 17:09:44 | --> Translated: http://download.opensuse.org/repositories/Virtualization:/Appliances:/Staging/xUbuntu_24.04_x86_64/
[ INFO ]: 17:09:44 | --> Alias: kiwi-next-generation
[ INFO ]: 17:09:44 | Setting up repository obs://Ubuntu:24.04/universe
[ INFO ]: 17:09:44 | --> Type: apt-deb
[ ERROR ]: 17:09:44 | KiwiUriOpenError: http://download.opensuse.org/repositories/Ubuntu:/24.04/universe: 404 Client Error: Not Found for url: http://download.opensuse.org/repositories/Ubuntu:/24.04/universe
--------------------------
MISSING:http://download.opensuse.org/repositories/Ubuntu:/24.04/universe: 404 Client Error: Not Found
Existing:http://download.opensuse.org/repositories/Ubuntu:/debbuild/Ubuntu_22.04/

Probably a typo or so... hence I copied from the OBS.
rsync -av .... /data/obs/Ubuntu\
ll /data/obs/Ubuntu\:/debbuild/Ubuntu_24.04/
drwxr-xr-x 4 root root 4096 sep 29 16:39 ./
drwxr-xr-x 4 root root 4096 sep 29 16:37 ../
drwxr-xr-x 2 root root 4096 sep 29 16:41 all/
drwxr-xr-x 2 root root 4096 sep 29 16:40 amd64/
-rw-r--r-- 1 root root 1210 sep 27 14:32 InRelease
-rw-r--r-- 1 root root 9645 sep 27 14:32 Packages
-rw-r--r-- 1 root root 2310 sep 27 14:32 Packages.gz
-rw-r--r-- 1 root root 680 sep 27 14:32 Release
-rw-r--r-- 1 root root 481 sep 27 14:32 Release.gpg
-rw-r--r-- 1 root root 1105 sep 27 14:32 Release.key

And I changed the kiwi file from online toward local directory
cat -n appliance.kiwi|grep path |grep -i Ubuntu
52 <source path="obs://Virtualization:Appliances:Staging/xUbuntu_24.04_x86_64"/>
55 <source path="obs://Ubuntu:24.04/universe"/>
58 <source path="obs://Ubuntu:24.04/standard"/>

cat -n appliance.kiwi|grep path |grep -i Ubuntu
52 <source path="dir:///data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64"/>
55 <source path="obs://Ubuntu:24.04/universe"/>
58 <source path="obs://Ubuntu:24.04/standard"/>

Tried again:
sudo kiwi-ng --profile Live system build --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --target-dir /data/myimage/
[ INFO ]: 19:07:29 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 19:07:29 | Support for XML markup available
[ INFO ]: 19:07:29 | --> loaded /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 19:07:29 | --> Selected build type: iso
[ INFO ]: 19:07:29 | --> Selected profiles: Live
[ INFO ]: 19:07:29 | Preparing new root system
[ INFO ]: 19:07:29 | Setup root directory: /data/myimage/build/image-root
[ INFO ]: 19:07:29 | Setting up repository dir:///data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64
[ INFO ]: 19:07:29 | --> Type: apt-deb
[ INFO ]: 19:07:29 | --> Priority: 1
[ INFO ]: 19:07:29 | --> Translated: /data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64
[ INFO ]: 19:07:29 | --> Alias: kiwi-next-generation
[ INFO ]: 19:07:29 | Setting up repository obs://Ubuntu:24.04/universe
[ INFO ]: 19:07:29 | --> Type: apt-deb
[ ERROR ]: 19:07:29 | KiwiUriOpenError: http://download.opensuse.org/repositories/Ubuntu:/24.04/universe: 404 Client Error: Not Found for url: http://download.opensuse.org/repositories/Ubuntu:/24.04/universe

------------------------------------------------------------------------
Not found:http://download.opensuse.org/repositories/Ubuntu:/24.04/universe
existing:https://download.opensuse.org/repositories/Ubuntu:/debbuild/Ubuntu_22.04/
ll /data/obs/Ubuntu:/debbuild/Ubuntu_22.04/
drwxr-xr-x 4 root root 4096 sep 29 15:53 ./
drwxr-xr-x 4 root root 4096 sep 29 16:37 ../
drwxr-xr-x 2 root root 4096 sep 29 15:55 all/
drwxr-xr-x 2 root root 4096 sep 29 15:54 amd64/
-rw-r--r-- 1 root root 1210 sep 27 14:33 InRelease
-rw-r--r-- 1 root root 8621 sep 27 14:33 Packages
-rw-r--r-- 1 root root 2189 sep 27 14:33 Packages.gz
-rw-r--r-- 1 root root 680 sep 27 14:33 Release
-rw-r--r-- 1 root root 481 sep 27 14:33 Release.gpg
-rw-r--r-- 1 root root 1105 sep 27 14:33 Release.key

That seems a modified directory name...
Hence I modified the line in the kiwi file again:
cat -n appliance.kiwi|grep path |grep -i universe
55 <source path="obs://Ubuntu:24.04/universe"/>

cat -n appliance.kiwi|grep path |grep -i debbuild
55 <source path="dir://data/obs/Ubuntu:/debbuild/Ubuntu_22.04/"/>

sudo kiwi-ng --profile Live system build --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --target-dir /data/myimage/
[ INFO ]: 19:17:55 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 19:17:55 | Support for XML markup available
[ INFO ]: 19:17:55 | --> loaded /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 19:17:55 | --> Selected build type: iso
[ INFO ]: 19:17:55 | --> Selected profiles: Live
[ INFO ]: 19:17:55 | Preparing new root system
[ INFO ]: 19:17:55 | Setup root directory: /data/myimage/build/image-root
[ INFO ]: 19:17:55 | Setting up repository dir:///data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64
[ INFO ]: 19:17:55 | --> Type: apt-deb
[ INFO ]: 19:17:55 | --> Priority: 1
[ INFO ]: 19:17:55 | --> Translated: /data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64
[ INFO ]: 19:17:55 | --> Alias: kiwi-next-generation
[ INFO ]: 19:17:55 | Setting up repository dir://data/obs/Ubuntu:/debbuild/Ubuntu_22.04/
[ INFO ]: 19:17:55 | --> Type: apt-deb
[ INFO ]: 19:17:55 | --> Translated: /obs/Ubuntu:/debbuild/Ubuntu_22.04
[ INFO ]: 19:17:55 | --> Alias: Ubuntu-Noble-Universe
[ WARNING ]: 19:17:55 | repository dir://data/obs/Ubuntu:/debbuild/Ubuntu_22.04/ does not exist and will be skipped
[ INFO ]: 19:17:55 | Setting up repository obs://Ubuntu:24.04/standard
[ INFO ]: 19:17:55 | --> Type: apt-deb
[ ERROR ]: 19:17:55 | KiwiUriOpenError: http://download.opensuse.org/repositories/Ubuntu:/24.04/standard: 404 Client Error: Not Found for url: http://download.opensuse.org/repositories/Ubuntu:/24.04/standard

Complaining about: dir://data/obs/Ubuntu:/debbuild/Ubuntu_22.04/
However: ll /data/obs/Ubuntu:/debbuild/Ubuntu_22.04/
drwxr-xr-x 4 root root 4096 sep 29 15:53 ./
drwxr-xr-x 4 root root 4096 sep 29 16:37 ../
drwxr-xr-x 2 root root 4096 sep 29 15:55 all/
drwxr-xr-x 2 root root 4096 sep 29 15:54 amd64/
-rw-r--r-- 1 root root 1210 sep 27 14:33 InRelease
-rw-r--r-- 1 root root 8621 sep 27 14:33 Packages
-rw-r--r-- 1 root root 2189 sep 27 14:33 Packages.gz
-rw-r--r-- 1 root root 680 sep 27 14:33 Release
-rw-r--r-- 1 root root 481 sep 27 14:33 Release.gpg
-rw-r--r-- 1 root root 1105 sep 27 14:33 Release.key

Rynced all of Ubuntu locally (hence the delay :-)
sudo kiwi-ng --profile Live system build --description /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/ --target-dir /data/myimage/
[ INFO ]: 19:30:20 | Loading XML description: /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 19:30:20 | Support for XML markup available
[ INFO ]: 19:30:21 | --> loaded /data/kiwi/build-tests/x86/ubuntu/test-image-live-disk/appliance.kiwi
[ INFO ]: 19:30:21 | --> Selected build type: iso
[ INFO ]: 19:30:21 | --> Selected profiles: Live
[ INFO ]: 19:30:21 | Preparing new root system
[ INFO ]: 19:30:21 | Setup root directory: /data/myimage/build/image-root
[ INFO ]: 19:30:21 | Setting up repository dir://data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64
[ INFO ]: 19:30:21 | --> Type: apt-deb
[ INFO ]: 19:30:21 | --> Priority: 1
[ INFO ]: 19:30:21 | --> Translated: /obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64
[ INFO ]: 19:30:21 | --> Alias: kiwi-next-generation
[ WARNING ]: 19:30:21 | repository dir://data/obs/Virtualization:Appliances:/Staging/xUbuntu_24.04_x86_64 does not exist and will be skipped
[ INFO ]: 19:30:21 | Setting up repository https://ftp.gwdg.de/pub/debian/ubuntu/pool/
[ INFO ]: 19:30:21 | --> Type: apt-deb
[ INFO ]: 19:30:21 | --> Translated: https://ftp.gwdg.de/pub/debian/ubuntu/pool/
[ INFO ]: 19:30:21 | --> Alias: Ubuntu
[ INFO ]: 19:30:21 | Setting up repository dir://data/obs/Ubuntu:/debbuild/Ubuntu_24.04/standard
[ INFO ]: 19:30:21 | --> Type: apt-deb
[ INFO ]: 19:30:21 | --> Translated: /obs/Ubuntu:/debbuild/Ubuntu_24.04/standard
[ INFO ]: 19:30:21 | --> Alias: Ubuntu-Noble
[ WARNING ]: 19:30:21 | repository dir://data/obs/Ubuntu:/debbuild/Ubuntu_24.04/standard does not exist and will be skipped
[ INFO ]: 19:30:21 | Using package manager backend: apt
[ INFO ]: 19:30:21 | Installing bootstrap packages
[ INFO ]: 19:30:21 | --> collection type: onlyRequired
[ INFO ]: 19:30:21 | --> package: apt
[ INFO ]: 19:30:21 | --> package: ca-certificates
[ ERROR ]: 19:30:35 | KiwiDebianBootstrapError: KiwiCommandError: apt-get: stderr: E: Failed to fetch https://ftp.gwdg.de/pub/debian/ubuntu/pool/dists/Ubuntu/main/binary-amd64/Packages 404 Not Found [IP: 2a06:93c7:f0::f79 443]
E: Some index files failed to download. They have been ignored, or old ones used instead.
, stdout: Ign:1 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu InRelease
Ign:2 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu Release
Ign:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Ign:14 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse i386 Packages
Ign:15 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 Packages
Ign:16 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all Packages
Ign:17 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse Translation-en
Ign:18 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 DEP-11 Metadata
Ign:19 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all DEP-11 Metadata
Ign:20 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 48x48 Icons
Ign:21 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64 Icons
Ign:22 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64@2 Icons
Ign:23 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all c-n-f Metadata
Ign:24 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 c-n-f Metadata
Ign:25 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 Packages
Ign:26 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted i386 Packages
Ign:27 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all Packages
Ign:28 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted Translation-en
Ign:29 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 DEP-11 Metadata
Ign:30 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all DEP-11 Metadata
Ign:31 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 48x48 Icons
Ign:32 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64 Icons
Ign:33 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64@2 Icons
Ign:34 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all c-n-f Metadata
Ign:35 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 c-n-f Metadata
Ign:36 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all Packages
Ign:37 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 Packages
Ign:38 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe i386 Packages
Ign:39 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe Translation-en
Ign:40 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 DEP-11 Metadata
Ign:41 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all DEP-11 Metadata
Ign:42 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 48x48 Icons
Ign:43 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64 Icons
Ign:44 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64@2 Icons
Ign:45 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all c-n-f Metadata
Ign:46 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 c-n-f Metadata
Ign:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Ign:14 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse i386 Packages
Ign:15 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 Packages
Ign:16 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all Packages
Ign:17 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse Translation-en
Ign:18 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 DEP-11 Metadata
Ign:19 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all DEP-11 Metadata
Ign:20 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 48x48 Icons
Ign:21 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64 Icons
Ign:22 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64@2 Icons
Ign:23 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all c-n-f Metadata
Ign:24 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 c-n-f Metadata
Ign:25 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 Packages
Ign:26 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted i386 Packages
Ign:27 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all Packages
Ign:28 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted Translation-en
Ign:29 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 DEP-11 Metadata
Ign:30 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all DEP-11 Metadata
Ign:31 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 48x48 Icons
Ign:32 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64 Icons
Ign:33 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64@2 Icons
Ign:34 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all c-n-f Metadata
Ign:35 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 c-n-f Metadata
Ign:36 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all Packages
Ign:37 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 Packages
Ign:38 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe i386 Packages
Ign:39 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe Translation-en
Ign:40 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 DEP-11 Metadata
Ign:41 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all DEP-11 Metadata
Ign:42 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 48x48 Icons
Ign:43 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64 Icons
Ign:44 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64@2 Icons
Ign:45 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all c-n-f Metadata
Ign:46 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 c-n-f Metadata
Ign:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Ign:14 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse i386 Packages
Ign:15 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 Packages
Ign:16 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all Packages
Ign:17 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse Translation-en
Ign:18 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 DEP-11 Metadata
Ign:19 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all DEP-11 Metadata
Ign:20 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 48x48 Icons
Ign:21 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64 Icons
Ign:22 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64@2 Icons
Ign:23 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all c-n-f Metadata
Ign:24 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 c-n-f Metadata
Ign:25 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 Packages
Ign:26 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted i386 Packages
Ign:27 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all Packages
Ign:28 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted Translation-en
Ign:29 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 DEP-11 Metadata
Ign:30 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all DEP-11 Metadata
Ign:31 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 48x48 Icons
Ign:32 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64 Icons
Ign:33 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64@2 Icons
Ign:34 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all c-n-f Metadata
Ign:35 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 c-n-f Metadata
Ign:36 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all Packages
Ign:37 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 Packages
Ign:38 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe i386 Packages
Ign:39 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe Translation-en
Ign:40 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 DEP-11 Metadata
Ign:41 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all DEP-11 Metadata
Ign:42 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 48x48 Icons
Ign:43 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64 Icons
Ign:44 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64@2 Icons
Ign:45 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all c-n-f Metadata
Ign:46 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 c-n-f Metadata
Ign:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Ign:14 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse i386 Packages
Ign:15 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 Packages
Ign:16 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all Packages
Ign:17 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse Translation-en
Ign:18 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 DEP-11 Metadata
Ign:19 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all DEP-11 Metadata
Ign:20 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 48x48 Icons
Ign:21 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64 Icons
Ign:22 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64@2 Icons
Ign:23 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all c-n-f Metadata
Ign:24 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 c-n-f Metadata
Ign:25 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 Packages
Ign:26 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted i386 Packages
Ign:27 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all Packages
Ign:28 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted Translation-en
Ign:29 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 DEP-11 Metadata
Ign:30 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all DEP-11 Metadata
Ign:31 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 48x48 Icons
Ign:32 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64 Icons
Ign:33 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64@2 Icons
Ign:34 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all c-n-f Metadata
Ign:35 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 c-n-f Metadata
Ign:36 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all Packages
Ign:37 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 Packages
Ign:38 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe i386 Packages
Ign:39 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe Translation-en
Ign:40 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 DEP-11 Metadata
Ign:41 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all DEP-11 Metadata
Ign:42 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 48x48 Icons
Ign:43 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64 Icons
Ign:44 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64@2 Icons
Ign:45 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all c-n-f Metadata
Ign:46 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 c-n-f Metadata
Ign:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Ign:14 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse i386 Packages
Ign:15 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 Packages
Ign:16 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all Packages
Ign:17 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse Translation-en
Ign:18 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 DEP-11 Metadata
Ign:19 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all DEP-11 Metadata
Ign:20 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 48x48 Icons
Ign:21 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64 Icons
Ign:22 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64@2 Icons
Ign:23 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all c-n-f Metadata
Ign:24 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 c-n-f Metadata
Ign:25 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 Packages
Ign:26 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted i386 Packages
Ign:27 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all Packages
Ign:28 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted Translation-en
Ign:29 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 DEP-11 Metadata
Ign:30 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all DEP-11 Metadata
Ign:31 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 48x48 Icons
Ign:32 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64 Icons
Ign:33 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64@2 Icons
Ign:34 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all c-n-f Metadata
Ign:35 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 c-n-f Metadata
Ign:36 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all Packages
Ign:37 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 Packages
Ign:38 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe i386 Packages
Ign:39 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe Translation-en
Ign:40 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 DEP-11 Metadata
Ign:41 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all DEP-11 Metadata
Ign:42 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 48x48 Icons
Ign:43 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64 Icons
Ign:44 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64@2 Icons
Ign:45 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all c-n-f Metadata
Ign:46 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 c-n-f Metadata
Ign:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Ign:14 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse i386 Packages
Ign:15 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 Packages
Ign:16 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all Packages
Ign:17 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse Translation-en
Ign:18 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 DEP-11 Metadata
Ign:19 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all DEP-11 Metadata
Ign:20 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 48x48 Icons
Ign:21 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64 Icons
Ign:22 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse DEP-11 64x64@2 Icons
Ign:23 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse all c-n-f Metadata
Ign:24 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/multiverse amd64 c-n-f Metadata
Ign:25 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 Packages
Ign:26 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted i386 Packages
Ign:27 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all Packages
Ign:28 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted Translation-en
Ign:29 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 DEP-11 Metadata
Ign:30 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all DEP-11 Metadata
Ign:31 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 48x48 Icons
Ign:32 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64 Icons
Ign:33 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted DEP-11 64x64@2 Icons
Ign:34 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted all c-n-f Metadata
Ign:35 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/restricted amd64 c-n-f Metadata
Ign:36 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all Packages
Ign:37 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 Packages
Ign:38 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe i386 Packages
Ign:39 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe Translation-en
Ign:40 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 DEP-11 Metadata
Ign:41 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all DEP-11 Metadata
Ign:42 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 48x48 Icons
Ign:43 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64 Icons
Ign:44 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe DEP-11 64x64@2 Icons
Ign:45 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe all c-n-f Metadata
Ign:46 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/universe amd64 c-n-f Metadata
Err:3 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 Packages
404 Not Found [IP: 2a06:93c7:f0::f79 443]
Ign:4 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all Packages
Ign:5 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main i386 Packages
Ign:6 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main Translation-en
Ign:7 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 DEP-11 Metadata
Ign:8 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all DEP-11 Metadata
Ign:9 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 48x48 Icons
Ign:10 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64 Icons
Ign:11 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main DEP-11 64x64@2 Icons
Ign:12 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main amd64 c-n-f Metadata
Ign:13 https://ftp.gwdg.de/pub/debian/ubuntu/pool Ubuntu/main all c-n-f Metadata
Reading package lists...

error: [ ERROR ]: 19:30:35 | KiwiDebianBootstrapError: KiwiCommandError: apt-get: stderr: E: Failed to fetch https://ftp.gwdg.de/pub/debian/ubuntu/pool/dists/Ubuntu/main/binary-amd64/Packages 404 Not Found [IP: 2a06:93c7:f0::f79 443]
existing:https://ftp.gwdg.de/pub/debian/ubuntu/dists/jammy/main/binary-amd64/

It looks like somewhere in the kiwi file, there is a wrong pointer to the "dists" and/or "pool"

Should I rsync the virtialisation parts from the OBS instead of the GIT-one?

Kind regards, Hans




--
Public Key available via: https://keybase.io/marcus_schaefer/key.asc
keybase search marcus_schaefer

--
You received this message because you are subscribed to the Google Groups "kiwi" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kiwi-images...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/kiwi-images/aNpOm89xymBsPwIL%40asterix.
Reply all
Reply to author
Forward
0 new messages