Skip to content
Discussion options

You must be logged in to vote

You should use the sb2iso utility, which is already built into MiniOS. It allows you to rebuild the ISO image of the current system while excluding unnecessary modules.

To create a clean, text-mode only version without a graphical environment (like XFCE/Xorg), use the --exclude parameter.

Execute the following command in the terminal of a running MiniOS session:

sudo sb2iso --exclude 'gui|xfce|firefox' --name minios_server.iso

Command Breakdown:

  • --exclude 'gui|xfce|firefox': This pattern excludes the graphical shell (xfce), the graphics server (gui), and standard graphical applications (firefox).
  • --name minios_server.iso: This sets the name for the output ISO file.

If you only want to r…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by crim50n
Comment options

You must be logged in to vote
1 reply
@crim50n
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #120 on December 24, 2025 12:39.