Both sides previous revisionPrevious revisionNext revision | Previous revision |
linux:distros:opensuse_tumbleweed_gnome [2025/04/27 01:49] – [Wine] Sean Rhone | linux:distros:opensuse_tumbleweed_gnome [2025/07/13 22:14] (current) – Sean Rhone |
---|
- ext4 ''/'' | - ext4 ''/'' |
- No separate ''/home'' | - No separate ''/home'' |
- Separate ''swap'' without suspend resize | - Separate ''swap'' with suspend resize |
| |
<code> | <code> |
**** | **** |
| |
sudo zypper install filezilla foliate gimp google-noto-*-fonts gnome-extensions keepassxc nautilus-file-roller gstreamer-plugin-openh264 libreoffice mpv rhythmbox MozillaThunderbird transmission-gtk vlc 7zip android-tools aria2 binutils htop icoutils nano secret-tool sensors unar yt-dlp | sudo zypper install filezilla foliate gimp google-noto-*-fonts gnome-extensions keepassxc nautilus-file-roller libreoffice mpv rhythmbox MozillaThunderbird transmission-gtk vlc 7zip android-tools aria2 binutils htop icoutils nano secret-tool sensors unar yt-dlp |
| |
===== Intel ===== | ===== Intel ===== |
| |
* 2025/04/22: ''ucode-intel'' is beneficial on Coffee Lake ((''ucode-intel'' updated i5-8400H with [[https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=1d93c&oscode=biosa&productcode=latitude-15-5591-laptop|Latitude 5591 1.38]] BIOS (2025/04/17) from ''0x000000f8'' to ''0x000000fa'' and matches [[https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20250211|CFL-H/S/E3]])) | * 2025/04/22: ''ucode-intel'' was beneficial on Coffee Lake ((''ucode-intel'' updated i5-8400H with [[https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=1d93c&oscode=biosa&productcode=latitude-15-5591-laptop|Latitude 5591 1.38]] BIOS (2025/04/17) from ''0x000000f8'' to ''0x000000fa'' and matches [[https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20250211|CFL-H/S/E3]])) |
| |
ucode-intel intel-media-driver intel-gpu-tools | ucode-intel intel-media-driver intel-gpu-tools |
* [[servers:upstream_dns_servers|More DNS Servers]] | * [[servers:upstream_dns_servers|More DNS Servers]] |
| |
<code>1.1.1.2,1.0.0.2</code> | <code>9.9.9.9,149.112.112.112</code> |
| |
<code>2606:4700:4700::1112,2606:4700:4700::1002</code> | <code>2620:fe::fe,2620:fe::9</code> |
| |
===== Rhythmbox ===== | ===== Rhythmbox ===== |
* ''dev.i915.perf_stream_paranoid = 0'' | * ''dev.i915.perf_stream_paranoid = 0'' |
| |
echo 'dev.i915.perf_stream_paranoid=0' | sudo tee '/etc/sysctl.d/99-i915-perf.conf' > '/dev/null' && sudo restorecon -F -I '/etc/sysctl.d/99-i915-perf.conf' && cat '/etc/sysctl.d/99-i915-perf.conf' | echo 'dev.i915.perf_stream_paranoid=0' | sudo tee '/etc/sysctl.d/99-i915-perf.conf' > '/dev/null' && cat '/etc/sysctl.d/99-i915-perf.conf' |
| |
sudo sysctl 'dev.i915.perf_stream_paranoid' | sudo sysctl 'dev.i915.perf_stream_paranoid' |
* ''kernel.sysrq = 1'' | * ''kernel.sysrq = 1'' |
| |
echo 'kernel.sysrq = 1' | sudo tee '/etc/sysctl.d/99-sysrq.conf' > '/dev/null' && sudo restorecon -F -I '/etc/sysctl.d/99-sysrq.conf' && cat '/etc/sysctl.d/99-sysrq.conf' | echo 'kernel.sysrq = 1' | sudo tee '/etc/sysctl.d/99-sysrq.conf' > '/dev/null' && cat '/etc/sysctl.d/99-sysrq.conf' |
| |
sudo sysctl 'kernel.sysrq' | sudo sysctl 'kernel.sysrq' |
* ''vm.swappiness = 0'' | * ''vm.swappiness = 0'' |
| |
echo 'vm.swappiness = 0' | sudo tee '/etc/sysctl.d/99-swappiness.conf' > '/dev/null' && sudo restorecon -F -I '/etc/sysctl.d/99-swappiness.conf' && cat '/etc/sysctl.d/99-swappiness.conf' | echo 'vm.swappiness = 0' | sudo tee '/etc/sysctl.d/99-swappiness.conf' > '/dev/null' && cat '/etc/sysctl.d/99-swappiness.conf' |
| |
sudo sysctl 'vm.swappiness' | sudo sysctl 'vm.swappiness' |
==== Disable barriers ==== | ==== Disable barriers ==== |
| |
* Add '',barrier=0'' after ''defaults'' for the ''/'' mountpoint ((defaults,barrier=0)) | * ext4 |
* Expects ''ext4'' | |
| |
sudo -e '/etc/fstab' | sudo -e '/etc/fstab' |
| |
,barrier=0 | ,data=writeback,nobarrier |
| |
==== Swap ==== | ==== Swap ==== |
===== General ===== | ===== General ===== |
| |
sudo -e '/etc/profile.d/general-tweaks.sh' && sudo restorecon -F -I '/etc/profile.d/general-tweaks.sh' | sudo -e '/etc/profile.d/general-tweaks.sh' |
| |
<code> | <code> |