How do I build an ISO without the XFCE desktop environment? #121
-
|
I want to use MiniOS on my server, but I don't want an XFCE desktop environment; I want a pure command-line interface. How do I build an ISO? Looking forward to your reply |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
You should use the To create a clean, text-mode only version without a graphical environment (like XFCE/Xorg), use the Execute the following command in the terminal of a running MiniOS session: sudo sb2iso --exclude 'gui|xfce|firefox' --name minios_server.isoCommand Breakdown:
If you only want to remove XFCE but keep Xorg (which is rarely needed for a pure server), you can adjust the regular expression, but the example above is the recommended way to get a minimal server build.
|
Beta Was this translation helpful? Give feedback.
-
|
CLi mode for me I just using isomaster and delete this files in "minios" dir to reduce iso size XD : 03-gui-base-amd64.sb |
Beta Was this translation helpful? Give feedback.
You should use the
sb2isoutility, 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
--excludeparameter.Execute the following command in the terminal of a running MiniOS session:
sudo sb2iso --exclude 'gui|xfce|firefox' --name minios_server.isoCommand 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…