Skip to main content

Posts

Showing posts with the label fedora

Everyone Lost to Death

  We found and we lost. We smile and cry, we laugh it all the way. Nobody knows how you meant to me and me to you. At least that was what I know.  Now you have gone. I wish I can do things that you asked me to. But, to whom should I prove? You are already gone, graduated from this life. And I am the lost one here weeping. No one understands, no one care.  I don't blame them, they have their own pain and lost. The pain and misery is not exclusively mine. Not even the new person tried to understand. They jealous the memory of you. They want to override it. They want me to empty the space and put them there instead of you.  I am not alone. All of them also have that space that is reserved for their lost one. But why they insists on others?  Why can't they forgive me for they also don't let their space vacant? Yes, we all have that space in that little heart of us where we can't remove. Yeah, that's why trauma don't go away easily.  Can we delete it? Yes. We ca...

Enable RPM Fusion

This will enable RPM Fusion's Free and Non-Free repositories: sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm sudo dnf update @core The second line is to update the Appstream metadata

Quest for Ultimate Fonts

After some readings where I forgot to write down the source, I settled with these fonts for my desktop. All of them are open fonts and free for commercials so I won't get sued someday when I use them on my official document. All fonts are installed to my Fedora 40 KDE Spin. I put anti-aliasing on with sub-pixel rendering sets to RGB and little hinting enabled. Common Fonts For non-monospace fonts, I choose to install Inter font from Rasmus Andersson . This font is mostly included in the top list of many font reviewers for UI. And I agree, the font is gorgeous and it has the right space for my KDE Fedora laptop. I used Monospace For monospace a.k.a coding font, I go with IBM Flex Mono font . It's a good font developed by folks at IBM. To get it, I use sparse-checkout to checkout from Github. git clone --filter=blob:none --no-checkout https://github.com/IBM/plex.git cd plex/ git sparse-checkout set --cone git checkout master git sparse-checkout set packages/plex-mono/fonts...

Enabling OKD 4.15 on Fedora 40

I'm using the tutorial from this OKD on Fedora Workstation with CRC article. I skipped the first command because my KDE Spin already got a Network Manager. Later I found out that the CRC will install them when missing. The command I followed: wget https://developers.redhat.com/content-gateway/rest/mirror2/pub/openshift-v4/clients/crc/latest/crc-linux-amd64.tar.xz tar xvfJ crc-linux-amd64.tar.xz -C /tmp/ install /tmp/crc-linux-*-amd64/crc ~/.local/bin/crc At the time of writing, CRC is on version 2.37.1. And I have added my ${HOME}/.local/bin to my PATH in .bashrc Next setup: crc config set consent-telemetry no crc config set preset okd crc setup crc start This part I get this error: ... INFO Loading bundle: crc_okd_libvirt_4.15.0-0.okd-2024-02-23-163410_amd64... INFO Creating CRC VM for OKD 4.15.0-0.okd-2024-02-23-163410... INFO Generating new SSH key pair... INFO Generating new password for the kubeadmin user INFO Starting CRC VM for okd 4.15.0-0.okd-202...

Installing Goodix Fingerprint Reader Driver on Fedora

I currently have a Lenovo Thinkpad L14 laptop equipped with fingerprint. I was `belok` from KDE Neon to use Fedora 40 because of someone. Now I am tempted to enable my fingerprint: lsusb | grep -i fingerprint Bus 001 Device 004: ID 27c6:55b4 Shenzhen Goodix Technology Co.,Ltd. Fingerprint Reader Dump the firmware Assuming this is a fresh install, lets do some magic by getting some dependencies: sudo dnf install gcc git python-pip python-devel openssl Let's get the source code: git clone --recurse-submodules https://github.com/goodix-fp-linux-dev/goodix-fp-dump.git cd goodix-fp-dump Create an isolated Python environment: python -m venv .v source .v/bin/activate Do the magic: sudo su pip install -r requirements.txt python run_55b4.py exit There are some python scripts available. I run run_55b4.py because my device ID is 27c6: 55b4 . It will spell some nonsense, which is a good thing. That nonsense actually the firmware captured by our device. Also, I typed exit becaus...