Currently what’s the best way to create your “spin” or remix of a Linux distribution? It doesn’t matter which distribution it uses as a base. I just want to be able to 1.add and remove packages 2.be able to change deault settings easily.

  • hinterlufer@lemmy.world
    link
    fedilink
    English
    arrow-up
    9
    ·
    11 months ago

    I don’t know what you’re trying to do but the easiest thing would be a bash script you would run after installation which does everything you want to change if it’s just some setting and packages

    • mFat@lemdro.idOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      11 months ago

      I want to make a custom distribution for a specific audience group with a custom selection of packages, themes and bookmarks.

  • nyan@lemmy.cafe
    link
    fedilink
    English
    arrow-up
    5
    ·
    11 months ago

    The big boys often start with Gentoo. Note that the Gentoo package manager can install precompiled binaries, even if the distro itself only uses it that way for a small number of packages. You just have to set it up appropriately. Might be more work than you want to do if your creation isn’t as “original” as ChromeOS, though.

  • chi-chan~@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    11 months ago

    I can’t say if it’s the easiest, but looks like using the archiso tool you can create pretty easily Arch-based system.

    The harder part is using the Calamares installer.

  • cow@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    11 months ago

    You might not need to, If you just want a distro you can install with your dotfiles and programs maybe a setup script which you can run after installing a distro is a better idea.

  • lordnikon@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    11 months ago

    the best way i find is do a minimal install then if you are using deb bases system you just create a package.txt file with a list of all the packages you want to install then you just run sudo apt install < package.txt

    Then create a config directory tree for all the home directory configs in the correct paths then you can gnu stow to create links to the correct path in the home directory.

    Then you can commit it to a git Repo or copy it to a file share. so that on your next system install you just do a git clone to your stow directory then run stow to create the links. note you can also manage your package.txt in git as well.

  • gq8kyeQW4f4
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 months ago

    For Ubuntu base check out Cubic. I had good results with it.

    • mFat@lemdro.idOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      11 months ago

      Thanks. Seems to be similar to remastersys which was what i used years ago.

  • al177@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 months ago

    It’s easy to make a Debian or Ubuntu preseed ISO with whatever customization you like.

  • GustavoM@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 months ago

    Just search for “(your favorite distro name here)minimal install”, download whatever pops up first, install it and customize it to your hearts content.

    But if you are talking about (entirely) making a zero, brand-new distro… then Linux From Scratch is your best bet.