S390x/Known Issues: Difference between revisions

From Alpine Linux
(Created page with "= 1 = <code> Which NTP client to run? ('busybox', 'openntpd', 'chrony' or 'none') [chrony] busybox * service ntpd added to runlevel default * Starting busybox ntpd ......")
 
m (+ category:IBM +draft)
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= 1 =
{{draft}}
<code>
 
When running the 3.9 netboot installer, you might face this problem mostly '''z/VM hypervisor''' (common among architectures without a RTC clock like armhf, aarch64, s390x) :
<pre>
Which NTP client to run? ('busybox', 'openntpd', 'chrony' or 'none') [chrony] busybox
Which NTP client to run? ('busybox', 'openntpd', 'chrony' or 'none') [chrony] busybox
  * service ntpd added to runlevel default
  \* service ntpd added to runlevel default
  * Starting busybox ntpd ...                                              [ ok ]
  \* Starting busybox ntpd ...                                              [ ok ]
ssl_client: mirrors.alpinelinux.org: ocsp verify failed: ocsp response not current
ssl_client: mirrors.alpinelinux.org: ocsp verify failed: ocsp response not current
wget: error getting response: Connection reset by peer
wget: error getting response: Connection reset by peer
Line 11: Line 13:


Enter mirror number (1-0) or URL to add (or r/f/e/done) [f]:  
Enter mirror number (1-0) or URL to add (or r/f/e/done) [f]:  
</code>
</pre>


This is because the clocksource on s390x was not yet detected. There is a pull request to make it work
This is because the clocksource on s390x was not yet detected. There is a pull request to make this work (would be available on 3.9.1 release):
<code>
<pre>
https://github.com/alpinelinux/aports/pull/6183
https://github.com/alpinelinux/aports/pull/6184
https://github.com/alpinelinux/aports/pull/6184
https://github.com/alpinelinux/aports/pull/6184
</pre>
</code>
 
In the mean time, to overcome this problem, you need to update the system time, either manullay using <code> date </code> command or using NTP then start the installer as bellow:


In the mean time, please run below command before running <code> # setup-alpine </code> for the installer:
<pre>
<code>
# setup-interfaces
# setup-dns
# service networking start
# ntpd -qn -p pool.ntp.org
# ntpd -qn -p pool.ntp.org
# setup-alpine
# setup-alpine
</code>
</pre>
 
 
[[category:IBM]]

Revision as of 06:53, 14 September 2019

This material is work-in-progress ...

Do not follow instructions here until this notice is removed.
(Last edited by Innsill on 14 Sep 2019.)

When running the 3.9 netboot installer, you might face this problem mostly z/VM hypervisor (common among architectures without a RTC clock like armhf, aarch64, s390x) :

Which NTP client to run? ('busybox', 'openntpd', 'chrony' or 'none') [chrony] busybox
 \* service ntpd added to runlevel default
 \* Starting busybox ntpd ...                                              [ ok ]
ssl_client: mirrors.alpinelinux.org: ocsp verify failed: ocsp response not current
wget: error getting response: Connection reset by peer
r) Add random from the above list
f) Detect and add fastest mirror from above list
e) Edit /etc/apk/repositories with text editor

Enter mirror number (1-0) or URL to add (or r/f/e/done) [f]: 

This is because the clocksource on s390x was not yet detected. There is a pull request to make this work (would be available on 3.9.1 release):

https://github.com/alpinelinux/aports/pull/6183
https://github.com/alpinelinux/aports/pull/6184

In the mean time, to overcome this problem, you need to update the system time, either manullay using date command or using NTP then start the installer as bellow:

# setup-interfaces
# setup-dns
# service networking start
# ntpd -qn -p pool.ntp.org
# setup-alpine