https://youtu.be/ttG2NFkKPRM?si=SuAC-XRueX6k_p9g
https://youtu.be/MnlRpH9sPBM?si=HXrk69GGOfiqbQz4
https://youtu.be/KW7hzWehuDo?si=dDaPA0haS8pimA7D
zram vs suspend to disk?
Optimize mirrors:
systemctl enable --now mirrorsorcerer
Edit zypp.conf:
Install Pycharm:
sudo opi micro
Rstudio-desktop:
sudo opi rjava (after installing java-21-openjdk-devel pcre2-devel lzma-sdk-devel libbz2-devel)
Install Insync:
sudo rpm --import https://d2t3ff60b2tol4.cloudfront.net/repomd.xml.keyEnable dnf:
sudo zypper in dnf rpm-repos-openSUSE-Tumbleweedmax_parallel_downloads=10
defaultyes=True
Install Flatpak:
sudo dnf in fastfetch eza dropbox flatpak fishflatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
Right way to update:
Nvidia:
inxi -G to see what driver is loaded
https://en.opensuse.org/SDB:NVIDIA_drivers
zypper addrepo --refresh https://download.nvidia.com/opensuse/tumbleweed NVIDIA
sudo zypper install-new-recommends --repo NVIDIA or....
sudo zypper in nvidia-video-G06
Security Audit System:
sudo dnf in lynis && sudo lynis audit system
Virt Manager:
https://samanpavel.medium.com/kvm-vms-with-virt-manager-on-opensuse-f4370165c03d
sudo usermod -aG libvirt hugh
sudo dnf in libvirt
sudo systemctl start libvirtd.service
NO NEED TO CHOOSE SECURE BOOT....just use default UEFI
Some Interesting Set up scripts including fix for Gigabyte motherboard sleep issue
https://github.com/DAK404/OpenSUSE-Setup-ScriptsOpenRGB:
To install OpenRGB with hardware access on openSUSE Tumbleweed, follow these steps:
1. Install OpenRGB from the official repositories:
```bash
sudo zypper install OpenRGB
```
2. Install the i2c-tools package, which is needed for accessing certain RGB devices:
```bash
sudo zypper install i2c-tools
```
3. Load the necessary kernel modules:
```bash
sudo modprobe i2c-dev
sudo modprobe i2c-piix4 # For AMD systems
# OR
sudo modprobe i2c-i801 # For Intel systems
```
4. To make these modules load automatically on boot, create a new file:
```bash
sudo nano /etc/modules-load.d/openrgb.conf
```
Add the following lines to the file:
```
i2c-dev
i2c-piix4 # For AMD systems
# OR
i2c-i801 # For Intel systems
```
5. Install the OpenRGB kernel patches:
```bash
sudo zypper install i2c-openrgb-kmp-default
```
6. Reboot your system to apply the changes.
7. Run OpenRGB with sudo privileges:
```bash
sudo openrgb
```
If you want to run OpenRGB without sudo, you can add your user to the i2c group:
```bash
sudo usermod -aG i2c $USER
```
Then log out and log back in for the changes to take effect.
sudo zypper ref
sudo zypper install OpenRGB
sudo zypper in i2c-tools
sudo usermod -aG i2c hugh
sudo modprobe i2c-dev
sudo modprobe i2c-piix4
cd /etc/modules-load.d/
sudo touch /etc/modules-load.d/i2c.conf
sudo sh -c 'echo "i2c-dev" >> /etc/modules-load.d/i2c.conf'
sudo sh -c 'echo "i2c-piix4" >> /etc/modules-load.d/i2c.conf'