Hello,
mostly beginner here. Please bear with me, I might be completely wrong about this. I am trying to install openSUSE Leap 15.6 offline ISO in a VirtualBox, however our company network blocks port 80 and therefore I am not able to download the online repositories and the installer completely gets stuck on it. Sure, I could just install it at home in my private network, but I want to figure this out.
Now, my idea was to create my own .xml file with the included repos but changed to https. I could create a working file and load it with autoyast, but obviously that skips through all the interactive menus like keyboard/timezone/user setup and so on.
What could I do now? Is there anything for me to include in the xml file to tell yast2 to use the included repo urls, but still let me interactively set up all the various things?
This is my custom XML:
<?xml version="1.0"?>
<profile xmlns="http://www.suse.com/1.0/yast2ns">
<!-- Repositories -->
<repositories>
<repository>
<name>Main Repository</name>
<url>https://download.opensuse.org/distribution/leap/$releasever/repo/oss/</url>
<enabled>1</enabled>
</repository>
<repository>
<name>Non-OSS Repository</name>
<url>https://download.opensuse.org/distribution/leap/$releasever/repo/non-oss/</url>
<enabled>1</enabled>
</repository>
<repository>
<name>Source Repository</name>
<url>https://download.opensuse.org/source/distribution/leap/$releasever/repo/oss/</url>
<enabled>0</enabled>
</repository>
<repository>
<name>Debug Repository</name>
<url>https://download.opensuse.org/debug/distribution/leap/$releasever/repo/oss/</url>
<enabled>0</enabled>
</repository>
<repository>
<name>Main Update Repository</name>
<url>https://download.opensuse.org/update/leap/$releasever/oss</url>
<enabled>1</enabled>
</repository>
<repository>
<name>Update Repository (Non-Oss)</name>
<url>https://download.opensuse.org/update/leap/$releasever/non-oss/</url>
<enabled>1</enabled>
</repository>
<repository>
<name>Update Repository (Debug)</name>
<url>https://download.opensuse.org/debug/update/leap/$releasever/oss</url>
<enabled>0</enabled>
</repository>
<repository>
<name>Update repository with updates from SUSE Linux Enterprise 15</name>
<url>https://download.opensuse.org/update/leap/$releasever/sle/</url>
<enabled>1</enabled>
</repository>
<repository>
<name>Update repository of openSUSE Backports</name>
<url>https://download.opensuse.org/update/leap/$releasever/backports/</url>
<enabled>1</enabled>
</repository>
<repository>
<name>Update repository with Backports debuginfo package updates for openSUSE Leap</name>
<url>https://download.opensuse.org/update/leap/$releasever/backports_debug/</url>
<enabled>0</enabled>
</repository>
<repository>
<name>Untested Updates</name>
<url>https://download.opensuse.org/update/leap/$releasever-test/</url>
<enabled>0</enabled>
</repository>
</repositories>
</profile>
My head is burning from this, lol.
Hope someone has an idea. Sorry if this is really stupid!