SLES

Fehlerquellen

keine Verbindung zum Repository möglich
Proxy in shell setzen:

rug set-prefs proxy-url http://meinproxy:8080
rug set-prefs proxy-username doedel
rug set-prefs proxy-password geheim


keine Updates nach Installation mit Autoyast wegen https
Einstellungen in autoyastdatei:

<proxy>
  <ftp_proxy>http://proxy:3128</ftp_proxy>
  <http_proxy>http://proxy:3128</http_proxy>
  <!-- <https_proxy>http://proxy:3128</https_proxy>  GEHT NICHT! WIRD  aber gebraucht deshalb in sysconfig separat nochmal konfigurieren-->
  <no_proxy>server1.my.dom.ain server2.my.dom.ain</no_proxy>
  <proxy_password>geheim</proxy_password>
  <proxy_user>benutzername</proxy_user>
</proxy>
...
<sysconfig_entry>
      <sysconfig_key>HTTPS_PROXY</sysconfig_key>
      <sysconfig_path>/etc/sysconfig/proxy</sysconfig_path>
      <sysconfig_value>http://proxy:3128</sysconfig_value>
</sysconfig_entry>
 ...  

SLES und SLED Registrierung in Autoyast
Einstellungen in autoyastdatei:

<suse_register>
  <do_registration config:type="boolean">true</do_registration>
  <email>ich@irgendwo.de</email>
  <reg_code>A1B2C3D4E5F6G7</reg_code>
  <install_updates config:type="boolean">true</install_updates>
  <slp_discovery config:type="boolean">true</slp_discovery>
</suse_register>

Soundkartenerkennung in Autoyast
Einstellungen in autoyastdatei:

<sound>
  <autoinstall config:type="boolean">true</autoinstall>
  <configure_detected config:type="boolean">true</configure_detected>
</sound>

NTP-Konfiguration in Autoyast
Einstellungen in autoyastdatei:

<ntp-client>
  <configure_dhcp config:type="boolean">true</configure_dhcp>
      <peers config:type="list">
          <peer>
           <address>mytime.my.dom.ain</address>
  	     <initial_sync config:type="boolean">true</initial_sync>
           <type>server</type>
    </peer>
      </peers>
  <start_at_boot config:type="boolean">true</start_at_boot>
  <start_in_chroot config:type="boolean">true</start_in_chroot>
</ntp-client>

Displaymanager konfigurieren und root-anmeldung erlauben in Autoyast
Einstellungen in autoyastdatei:

<sysconfig config:type="list">
  <sysconfig_entry>
<sysconfig_key>DISPLAYMANAGER</sysconfig_key>
<sysconfig_path>/etc/sysconfig/displaymanager</sysconfig_path>
<sysconfig_value>gdm</sysconfig_value>
  </sysconfig_entry>
  <sysconfig_entry>
<sysconfig_path>/etc/sysconfig/displaymanager</sysconfig_path>
<sysconfig_key>DISPLAYMANAGER_ROOT_LOGIN_LOCAL</sysconfig_key>
<sysconfig_value>yes</sysconfig_value>
  </sysconfig_entry>
</sysconfig>