2.8Kпросмотров
4 декабря 2025 г.
statsScore: 3.0K
📦 apt2sb: Making Programs "Immortal" Many people install software via apt install out of habit. It works, but there is a huge downside: programs settle in the save file (changes). The file bloats, the system might start lagging, and if you ever want a "clean slate," you have to configure everything from scratch. The Jedi way in MiniOS is creating modules (.sb). Why is it cool? 🔹 Cleanliness: The system remains pristine. All software is packed into neat archives.
🔹 Mobility: Created a module? Send the file to a friend or move it to another flash drive — it works instantly.
🔹 Safety: Program broke or got boring? Just delete one file from the flash drive. No "leftovers" or junk in the system. How to create a module with one command? There is a tool for this called apt2sb. It doesn't just download programs — it pulls all necessary dependencies (libraries) and packs them into a single file. Example 1: Simple (for a single program)
Want to install the VLC player? Just type:
sudo apt2sb install vlc Example 2: Advanced (multiple programs + custom name)
Let's say you want to compile an "Office Pack" containing a text editor, spreadsheets, and a calculator, and give the file a nice name.
Use the -n flag to set the name: sudo apt2sb install libreoffice-writer libreoffice-calc galculator -n my-office-pack What's next?
1. The script will create a file (e.g., vlc.sb or my-office-pack.sb) right in the current folder.
2. Move this file to the minios/modules/ folder on your flash drive.
3. Be sure to reboot your computer. The system picks up modules only during the boot stage. After the restart, the programs will appear in the menu automatically, ready to work. Do you pack software into modules or install everything "live"? 👇