deb https://buaya.klas.or.id/ubuntu/ focal main restricted universe multiverse
deb https://buaya.klas.or.id/ubuntu/ focal-updates main restricted universe multiverse
deb https://buaya.klas.or.id/ubuntu/ focal-security main restricted universe multiverse
deb https://buaya.klas.or.id/ubuntu/ focal-backports main restricted universe multiverse
deb https://buaya.klas.or.id/ubuntu/ focal-proposed main restricted universe multiverse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt install gnome-software gnome-software-plugin-flatpak | |
| flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
| snap remove snap-store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gsettings set org.gnome.desktop.interface show-battery-percentage true |
-
Diagnostics
sudo find /var/lib/docker/ -maxdepth 1 -mindepth 1 | xargs sudo du -sch -
Resolution
- To clean up images, try removing all images that aren't currently in use:
- To clean up images, try removing all images that aren't currently in use:
$ docker images -aq -f 'dangling=true' | xargs docker rmi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # dnf upgrade | |
| # dnf install dnf-plugins-core fedora-repos-rawhide | |
| # dnf config-manager --set-disabled fedora updates updates-testing | |
| # dnf config-manager --set-enabled rawhide | |
| # dnf clean -q dbcache packages metadata | |
| # Go to https://getfedora.org/en/security/ and find the key for the current rawhide version, download and 'rpm --import key.asc' | |
| # dnf --releasever=rawhide --setopt=deltarpm=false distro-sync | |
| ## Optional: it is generally advised to do a selinux autorelabel and reboot | |
| # touch /.autorelabel |
Install openSUSE Tumbleweed in a VM
- Download latest openSUSE Tumbleweed ISO
openSUSE-Tumbleweed-DVD-x86_64-Snapshotyyyymmdd-Media.iso - Give it plenty of disk: at least 28 GB.
Install dependencies
sudo zypper ar https://download.opensuse.org/source/tumbleweed/repo/oss/ openSUSE-Tumbleweed-Source
sudo zypper ref
-
First boot the system into Rescue Mode from the media. For best results use media that matches the version and service pack of the system.
-
Once it's finished loading, log in as root.
-
Mount the root partition or logical volume to /mnt
# mount /dev/<device name> /mntIf it's not known where the root file system is, it needs to be guessed until found by mounting each possibility and checking its contents. Run the following command to list all available partitions:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git branch | grep -v "master" | xargs git branch -D |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| virt-install \ | |
| --name gnomeos \ | |
| --memory 2048 \ | |
| --metadata title="GNOME OS" \ | |
| --boot uefi \ | |
| --import \ | |
| --disk ./image/disk.qcow2 \ | |
| --network bridge=virbr0 \ | |
| --graphics spice,listen=none \ | |
| --input tablet \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| qemu-img convert -O vdi gnome.qcow2 gnome.vdi | |
| #if its a raw image then: | |
| VBoxManage convertdd opnstk.raw VBox.vdi --format VDI |