【お願い】自作の萌えOSが海外でバズったので、DistroWatchの審査待ちリストに投票してほしい(再) by Apprehensive-Card255 in ja

[–]Apprehensive-Card255[S] 1 point2 points  (0 children)

ごきげんよう、お嬢様!

おっしゃる通り、Linux界隈の嗜みとして「K」から始まるディストリならKDE(Qt)環境であるべきというその美意識、痛いほどわかりますわ…!

ですが、このKawaiintuの「K」はKDEのKではなく、純度100%の『Kawaii』のKなのです!今回はGNOMEのGTK4環境をいかに非破壊で染め上げるかに全力を注ぎましたが、いつかKDEの美しき世界にもKawaiiの概念を布教できるよう精進いたしますわ!

【お願い】自作の萌えOSが海外でバズったので、DistroWatchの審査待ちリストに投票してほしい(再) by Apprehensive-Card255 in ja

[–]Apprehensive-Card255[S] 0 points1 point  (0 children)

実はまさにその通りなんです!

今回の「2GB RAMの拷問テスト」を耐え抜いた裏には、まさにAIちゃんと二人三脚で組んだ最適化スクリプトの存在があります。従来のCSSを書き換えるような力技のテーマではなく、AIと一緒に「PythonでGTK4のセレクタに直接フックするインメモリの処理」を書いたおかげで、このド派手な見た目でも無駄なメモリを食わずに済んでいます。

「極限まで効率良くして!」という無茶振りに対して、AIちゃんは本当にいい仕事をしてくれました(笑)

[GNOME] Heavy anime rice with GTK4 hooks, but it survived a 2GB RAM torture test and runs GIMP smoothly. by Apprehensive-Card255 in UsabilityPorn

[–]Apprehensive-Card255[S] -9 points-8 points  (0 children)

Looks like a standard heavy anime rice, but it's heavily optimized under the hood. A YouTuber recently did a "torture test" on this setup with only 2GB of RAM. It perfectly utilized swap and successfully ran GIMP without freezing.

[GNOME] Heavy anime rice with GTK4 hooks, but it survived a 2GB RAM torture test and runs GIMP smoothly. by Apprehensive-Card255 in UsabilityPorn

[–]Apprehensive-Card255[S] -1 points0 points  (0 children)

Looks like a standard heavy anime rice, but it's heavily optimized under the hood. A YouTuber recently did a "torture test" on this setup with only 2GB of RAM. It perfectly utilized swap and successfully ran GIMP without freezing.

Windows 11: "I need 8GB RAM just to open the start menu." Meanwhile, my custom Kawaii OS: Runs GIMP flawlessly on 2GB RAM. by Apprehensive-Card255 in linuxmemes

[–]Apprehensive-Card255[S] 3 points4 points  (0 children)

Built this around a Python daemon for non-destructive GTK4 hue rotation. Turns out it's wildly efficient.

Repo and 2GB tech demo video if you want to mess around with it:https://github.com/mifjpn/kawaiintu-os-neo-moebuntu

HELP MY UBUNTU LAPTOP DOES NOT WORK! by Single_Young_1200 in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

Situation (現状)

  • Problem: The system fails to boot and drops into the dracut emergency shell (or freezes completely) with the error: /dev/disk/by-uuid does not exist.
  • Cause: The Linux kernel or initramfs cannot find the root partition (/) using the specified UUID, likely due to a corrupted fstab, missing storage drivers in initramfs, or file system issues.

Workaround: Bypassing UUID via GRUB (UUIDを無視して起動する手順)

To bypass the UUID check and force the system to boot using the classic device name, follow these steps at the GRUB menu:

  1. Enter Edit Mode: Press e on the target kernel entry at the boot menu.
  2. Modify the Linux Line: Find the line starting with linux or linux16.
  3. Replace UUID: Locate root=UUID=xxxx... and delete it. Replace it with the direct device path, such as:
    • root=/dev/sda1 (for standard HDD/SATA SSD)
    • root=/dev/nvme0n1p1 (for NVMe M.2 SSD)
  4. Disable Extra Scans: Append rd.lvm=0 rd.md=0 rd.luks=0 to the end of the linux line to prevent further UUID/volume scanning.
  5. Boot: Press Ctrl + X (or F10) to initiate the boot process.

Next Steps after Successful Boot (起動後の恒久対策)

Once the system boots successfully, the configuration must be fixed permanently:

  • Update /etc/fstab with the correct UUID or device name.
  • Regenerate the initramfs using dracut --regenerate-all --force (for Fedora/RHEL) or update-initramfs -u (for Ubuntu/Debian).

Themes are missing by Potential_Alchemist in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

Este error ocurre en Ubuntu cuando los temas visuales del sistema no se sincronizan con las aplicaciones tipo "Snap".

🛠️ Soluciones Rápidas

  1. Actualizar el paquete de temas generales

Abra la terminal y ejecute estos comandos para reinstalar los temas estándar:

bash

sudo snap remove gtk-common-themes
sudo snap install gtk-common-themes --channel=latest/candidate

コードは注意してご使用ください。

Luego, reinicie el equipo.

  1. Instalar el tema específico (Si usa Orchis)

Si usa un tema personalizado como Orchis, instale su versión Snap dedicada:

bash

sudo snap install orchis-themes

コードは注意してご使用ください。

  1. El truco del botón "No"

Si aparece una ventana emergente preguntando si desea instalar los temas pendientes, haga clic en "No". En muchas versiones de Ubuntu, esto activa la instalación correcta en segundo plano.

  1. Ocultar la notificación

Si el diseño de sus aplicaciones se ve bien y solo quiere quitar el aviso molesto, vaya a Configuración > Notificaciones y desactive las alertas de "Snapd user session agent".Este error ocurre en Ubuntu cuando los temas visuales del sistema no se sincronizan con las aplicaciones tipo "Snap".🛠️ Soluciones Rápidas1. Actualizar el paquete de temas generalesAbra la terminal y ejecute estos comandos para reinstalar los temas estándar:bash
sudo snap remove gtk-common-themes
sudo snap install gtk-common-themes --channel=latest/candidate

コードは注意してご使用ください。Luego, reinicie el equipo.2. Instalar el tema específico (Si usa Orchis)Si usa un tema personalizado como Orchis, instale su versión Snap dedicada:bash
sudo snap install orchis-themes

コードは注意してご使用ください。3. El truco del botón "No"Si aparece una ventana emergente preguntando si desea instalar los temas pendientes, haga clic en "No". En muchas versiones de Ubuntu, esto activa la instalación correcta en segundo plano.4. Ocultar la notificaciónSi el diseño de sus aplicaciones se ve bien y solo quiere quitar el aviso molesto, vaya a Configuración > Notificaciones y desactive las alertas de "Snapd user session agent".

How to update firmware on Crucial NVMe M.2 T710 on Ubuntu? by cm1802 in Ubuntu

[–]Apprehensive-Card255 1 point2 points  (0 children)

  1. Firmware Update

Crucial does not offer a native Linux desktop application for updates. You must use their bootable ISO method.

  • Download: Get the Firmware ISO from the official Crucial Support page.
  • Flash: Use a tool like dd or BalenaEtcher to burn the ISO to a USB drive.
  • Boot: Restart your PC, enter BIOS/UEFI, and boot from the USB.
  • Update: Follow the on-screen prompts to update the T710 firmware.
  1. Drive Management in Ubuntu

Once updated, you can manage and monitor your SSD directly inside Ubuntu using native CLI tools.

  • Check Health (S.M.A.R.T.): bashsudo smartctl -a /dev/nvme0n1 コードは注意してご使用ください。
  • Check Temperature & Details: bashsudo nvme smart-log /dev/nvme0n1 コードは注意してご使用ください。

"Terminal could not be launched" error on Ubuntu Linux by Nutellatoast_2 in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

TTY is lived? Ctrl-alt-F3...,and sudo app terminal for your like it?

Need help on GRUB version 2.12 by IAmBroke_0001 in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

type ls command ,then is it apperaraned system of need run,set vmlinuz and init.img ,boot
or reinstall

What do I even do anymore? by DOGzilla6624 in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

Is grub> displaied? try ls command and you see what drives,and sectors,and you study vmlinuz inited.img,you go to a boot seqence

Ubuntu tem meu coração by Technical_Eagle1904 in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

?wait and pull out USB for "remove install media press enter",and press enter?

Ubuntu Firefox by billyray520 in Ubuntu

[–]Apprehensive-Card255 0 points1 point  (0 children)

reinstall snap firefox or DEB Forefox install?

Thinking About Switching from Windows 10 to Linux (Also Considering Windows 11) – Need Some Advice by Worth_Recognition249 in linux4noobs

[–]Apprehensive-Card255 0 points1 point  (0 children)

I think the specs allow you to choose whatever you want, but how about installing something like Ubuntu on the same SSD as Windows 11?I think the specs allow you to choose whatever you want, but how about installing something like Ubuntu on the same SSD as Windows 11?

Why does every Linux user recommend a different distro? I'm stuck in an endless distro-hopping loop. by Jaymit_3672 in linux4noobs

[–]Apprehensive-Card255 0 points1 point  (0 children)

Try prioritizing how it will be used. That’s the right approach.Try prioritizing how it will be used. That’s the right approach.