Files
oam/knowledge base/microos.md

52 lines
1.0 KiB
Markdown

# OpenSUSE MicroOS
## Table of contents <!-- omit in toc -->
1. [TL;DR](#tldr)
1. [Setting up MicroOS as a desktop OS](#setting-up-microos-as-a-desktop-os)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL;DR
Every set of changes to the underlying system is executed on a new inactive snapshot, which will be the one the system will boot into on the next reboot.
```sh
# Upgrade the system.
sudo transactional-update dup
pkcon update
# Install a package.
sudo transactional-update pkg install 'tlp' 'ntfs-3g' 'fuse-exfat' 'nano'
pkcon install gnu_parallel
# Get a shell on the next snapshot.
# Lets you use zypper.
sudo transactional-update shell
sudo tukit execute bash
```
## Setting up MicroOS as a desktop OS
See [MicroOS Desktop] for more and updated information.
## Further readings
- [Flatpak]
- [Toolbox]
## Sources
- [MicroOS Portal]
<!--
References
-->
<!-- Upstream -->
[microos portal]: https://en.opensuse.org/Portal:MicroOS
<!-- Knowledge base -->
[flatpak]: flatpak.md
[toolbox]: toolbox.md