Posts

Showing posts from December, 2025

How to see your home router in a browser

Image
Go to settings > wifi > and settings for the connected wifi you can see the DNS number there.  copy-paste that number in the browser in the url box. click enter and done!    

Setting Ubuntu as first Preference in BIOS

Issue In my laptop, Windows 11 has an issue with rebooting. Each time it tries to reboot, I immediately run into a blank screen. However, rebooting works perfectly fine within Ubuntu. Thus, I wanted to set Ubuntu as First preference instead of Windows. Setting Ubuntu as First Preference I went to boot manager and changed preference order anu@laptop:~$ sudo efibootmgr [sudo] password for anu: BootCurrent: 0001 Timeout: 0 seconds BootOrder: 0004,0001,0003,9999 Boot0004* Windows Boot Manager......... Boot0001* Ubuntu........ Boot0003* Solid State Disk........ Boot9999* USB Drive (UEFI)............ anu@laptop:~ sudo efibootmgr 0001,0004,0003,9999 Attempts Turning off Fast Startup Setting Windows as the default option in Ubuntu GRUB Giving Windows first preference in Startup Result: It didn't work. Current Status Thus, I have postponed this issue until I have time to work on it again. And I set Ubuntu as the first preference in BIOS, so it will automatic...

Customizations made by me in Ubuntu 24.04

I love customizing a device as soon as I start using it, to give it a personal touch and be able to easily use my desktop as I like. It makes me feel comfortable with the device when I establish my mini realm within it. So, of course when I installed Ubuntu, the first thing I did was explore it thoroughly and customized it. One of the factors I find elegant about Linux is the sheer amount of customization possible. I'd actually first used Linux Mint at 15 during high school and absolutely loved playing with it — I remember missing those customizations a lot after switching back to Windows on the new PC. So when I installed Ubuntu, Linux immediately captivated me again. These are a list of all the Customization I made and shortcuts that I set. 1. Set a wallpaper This is the most basic, but the most crucial thing for me. The wallpaper is something that makes me feel calm and happy again. I am a huge fan of the novel Heaven Official's Blessing, so my wallpaper is usually Hu...

Fix - Touchpad Gestures not working on Ubuntu

I noticed that the three finger swipe touchpad gestures had suddenly stopped working on my desktop. Features such as switching desktops, all windows view also stopped working. This is what fixed it: Log out. At corner left there is an option that says     - Ubuntu on Xorg     - Ubuntu on Wayland ✅  3. Click on Ubuntu on Wayland and log in again.  Reason for this issue: There are no three finger touchpad gestures on X11.. Switch to Wayland to enable touchpad gestures.  Notes: Xorg and Wayland are display systems used by Ubuntu.  Xorg is the older display system. It is very stable and compatible, but has limited touchpad gestures.. Wayland is the modern replacement for Xorg. It has better performance and security, and is gesture friendly.

[SOLVED] Blank Screen in Ubuntu 24.04.3

My laptop showed a blank screen when I tried to try run any version of Linux on it with a bootable USB. Operating Systems tried: Ubuntu 24.04 Ubuntu 22.04 Ubuntu 20.04 Linux Mint Cinnamon 21 After selecting try Ubuntu 24 (say) in the installation menu, I would get a blank screen and had to force power it off. However, they worked in recovery mode.  Fix: Insert bootable usb run os in recovery mode Install OS onto system Run in recovery mode Now, modify display settings through GRUB Changing Display settings in Ubuntu ✅Fix:  Switching off panel screen refresh, and preventing it from entering deep power saving modes.  Steps:  1) enter grub sudo nano /etc/default/grub 2) change the line:  GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.enable_psr=0 intel_idle.max_cstate=1" 3) ctrl + o → save 4) ctrl + x → exit 5n in Ubuntu format.. not the FAT nor NTFS as require) updating grub sudo update-grub 6) reboot system sudo reboot Other Attempts:  force system to use a...

[SOLVED] Wifi option not visible on Ubuntu

Issue: Option for switching on Wifi not visible in Settings Fix: Enable USB Tethering on Phone and connect to internet Reinstall Linux Firmware sudo apt install --reinstall linux-firmware Reboot system sudo reboot Reason: I had reinstalled kernel hoping it would fix GPU drivers.. but it seems that corrupted the wifi service. reinstalling linux-firmware package fixed it Attempts and Troubleshooting: Checked if Network Manager service was running sudo systemctl status NetworkManager.service --> service running but no wifi detected Force restarted NetworkManager service sudo systemctl restart NetworkManager.service sudo systemctl restart NetworkManager --> no changes Enabling wifi radio through terminal nmcli radio wifi on nmcli device wifi list error: no wifi device found Checking wifi hardware lspci | grep -i wireless --> adapter detected in hardware Checking if driver loaded lsmod | grep iwlwifi --> err...