Create custom ISO for Alpine Linux

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I have created a custom ISO with the steps mentioned in the Alpine wiki page.
https://wiki.alpinelinux.org/wiki/How_to_make_a_custom_ISO_image_with_mkimage



I have included couple of apks that are required in the ISO. During the ISO creation i see the APKs getting downloded, when i install the Alpine ISO i do not find the APKs installed. Below is the mkimg.standard file entry.



profile_standard() 

title="Standard"
desc="Alpine as it was intended.
Just enough to get you started.
Network connection is required."
profile_base
image_ext="iso"
arch="x86 x86_64"
output_format="iso"
kernel_cmdline="nomodeset"
kernel_addons="xtables-addons"
apks="$apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo"
local _k _a
for _k in $kernel_flavors; do
apks="$apks linux-$_k"
for _a in $kernel_addons; do
apks="$apks $_a-$_k"
done
done
apks="$apks linux-firmware"


Post installation if i check for installed APK i get the list as below



alpine-test:~# apk info


musl
acct
busybox
alpine-baselayout
openrc
alpine-conf
libressl2.6-libcrypto
libressl2.6-libssl
libressl2.6-libtls
ssl_client
zlib
apk-tools
busybox-suid
busybox-initscripts
scanelf
musl-utils
libc-utils
alpine-keys
alpine-base
libcap
chrony
libuuid
libblkid
libcom_err
e2fsprogs-libs
e2fsprogs
lddtree
device-mapper-libs
cryptsetup-libs
xz-libs
kmod
mkinitfs
linux-firmware
linux-hardened
openssh-keygen
openssh-client
openssh-sftp-server
openssh-server-common
openssh-server
openssh
mtools
blkid
syslinux



I do not find any of the following apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo







share|improve this question

























    up vote
    0
    down vote

    favorite












    I have created a custom ISO with the steps mentioned in the Alpine wiki page.
    https://wiki.alpinelinux.org/wiki/How_to_make_a_custom_ISO_image_with_mkimage



    I have included couple of apks that are required in the ISO. During the ISO creation i see the APKs getting downloded, when i install the Alpine ISO i do not find the APKs installed. Below is the mkimg.standard file entry.



    profile_standard() 

    title="Standard"
    desc="Alpine as it was intended.
    Just enough to get you started.
    Network connection is required."
    profile_base
    image_ext="iso"
    arch="x86 x86_64"
    output_format="iso"
    kernel_cmdline="nomodeset"
    kernel_addons="xtables-addons"
    apks="$apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo"
    local _k _a
    for _k in $kernel_flavors; do
    apks="$apks linux-$_k"
    for _a in $kernel_addons; do
    apks="$apks $_a-$_k"
    done
    done
    apks="$apks linux-firmware"


    Post installation if i check for installed APK i get the list as below



    alpine-test:~# apk info


    musl
    acct
    busybox
    alpine-baselayout
    openrc
    alpine-conf
    libressl2.6-libcrypto
    libressl2.6-libssl
    libressl2.6-libtls
    ssl_client
    zlib
    apk-tools
    busybox-suid
    busybox-initscripts
    scanelf
    musl-utils
    libc-utils
    alpine-keys
    alpine-base
    libcap
    chrony
    libuuid
    libblkid
    libcom_err
    e2fsprogs-libs
    e2fsprogs
    lddtree
    device-mapper-libs
    cryptsetup-libs
    xz-libs
    kmod
    mkinitfs
    linux-firmware
    linux-hardened
    openssh-keygen
    openssh-client
    openssh-sftp-server
    openssh-server-common
    openssh-server
    openssh
    mtools
    blkid
    syslinux



    I do not find any of the following apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo







    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have created a custom ISO with the steps mentioned in the Alpine wiki page.
      https://wiki.alpinelinux.org/wiki/How_to_make_a_custom_ISO_image_with_mkimage



      I have included couple of apks that are required in the ISO. During the ISO creation i see the APKs getting downloded, when i install the Alpine ISO i do not find the APKs installed. Below is the mkimg.standard file entry.



      profile_standard() 

      title="Standard"
      desc="Alpine as it was intended.
      Just enough to get you started.
      Network connection is required."
      profile_base
      image_ext="iso"
      arch="x86 x86_64"
      output_format="iso"
      kernel_cmdline="nomodeset"
      kernel_addons="xtables-addons"
      apks="$apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo"
      local _k _a
      for _k in $kernel_flavors; do
      apks="$apks linux-$_k"
      for _a in $kernel_addons; do
      apks="$apks $_a-$_k"
      done
      done
      apks="$apks linux-firmware"


      Post installation if i check for installed APK i get the list as below



      alpine-test:~# apk info


      musl
      acct
      busybox
      alpine-baselayout
      openrc
      alpine-conf
      libressl2.6-libcrypto
      libressl2.6-libssl
      libressl2.6-libtls
      ssl_client
      zlib
      apk-tools
      busybox-suid
      busybox-initscripts
      scanelf
      musl-utils
      libc-utils
      alpine-keys
      alpine-base
      libcap
      chrony
      libuuid
      libblkid
      libcom_err
      e2fsprogs-libs
      e2fsprogs
      lddtree
      device-mapper-libs
      cryptsetup-libs
      xz-libs
      kmod
      mkinitfs
      linux-firmware
      linux-hardened
      openssh-keygen
      openssh-client
      openssh-sftp-server
      openssh-server-common
      openssh-server
      openssh
      mtools
      blkid
      syslinux



      I do not find any of the following apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo







      share|improve this question













      I have created a custom ISO with the steps mentioned in the Alpine wiki page.
      https://wiki.alpinelinux.org/wiki/How_to_make_a_custom_ISO_image_with_mkimage



      I have included couple of apks that are required in the ISO. During the ISO creation i see the APKs getting downloded, when i install the Alpine ISO i do not find the APKs installed. Below is the mkimg.standard file entry.



      profile_standard() 

      title="Standard"
      desc="Alpine as it was intended.
      Just enough to get you started.
      Network connection is required."
      profile_base
      image_ext="iso"
      arch="x86 x86_64"
      output_format="iso"
      kernel_cmdline="nomodeset"
      kernel_addons="xtables-addons"
      apks="$apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo"
      local _k _a
      for _k in $kernel_flavors; do
      apks="$apks linux-$_k"
      for _a in $kernel_addons; do
      apks="$apks $_a-$_k"
      done
      done
      apks="$apks linux-firmware"


      Post installation if i check for installed APK i get the list as below



      alpine-test:~# apk info


      musl
      acct
      busybox
      alpine-baselayout
      openrc
      alpine-conf
      libressl2.6-libcrypto
      libressl2.6-libssl
      libressl2.6-libtls
      ssl_client
      zlib
      apk-tools
      busybox-suid
      busybox-initscripts
      scanelf
      musl-utils
      libc-utils
      alpine-keys
      alpine-base
      libcap
      chrony
      libuuid
      libblkid
      libcom_err
      e2fsprogs-libs
      e2fsprogs
      lddtree
      device-mapper-libs
      cryptsetup-libs
      xz-libs
      kmod
      mkinitfs
      linux-firmware
      linux-hardened
      openssh-keygen
      openssh-client
      openssh-sftp-server
      openssh-server-common
      openssh-server
      openssh
      mtools
      blkid
      syslinux



      I do not find any of the following apks libintl alpine-sdk python python3 icu-libs libssl1.0 sudo









      share|improve this question












      share|improve this question




      share|improve this question








      edited Jun 6 at 9:51
























      asked Jun 6 at 9:05









      Vinay

      12




      12

























          active

          oldest

          votes











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );








           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f448133%2fcreate-custom-iso-for-alpine-linux%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes










           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f448133%2fcreate-custom-iso-for-alpine-linux%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay