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 has an issue with rebooting. After clicking reboot, it immediately runs into blank screen.   However, rebooting works perfectly fine within Ubuntu.  Thus, I wanted to set Ubuntu as First preference instead of Windows.     Fix:  # went to boot manager and changed order of OS 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 default option in Ubuntu GRUB Giving Windows first preference in Startup But it did not work.  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 automatically prefer Ubuntu. What I did: # Went to grub su...

Customizations made by me in Ubuntu 24.04

These are a list of all the Customization I made and Shortcuts I set. 1) Auto Hide Dock Go to settings → Ubuntu Desktop → Auto hide dock 2) Set Shortcuts Go to Settings –> Keyboard -> Keyboard Shortcuts -> View and Customize shortcuts  Shortcuts set by me: Win + I  ⇒ Settings [Launchers] Win + E ⇒ Launch Explorer  [Launchers] Alt + ` ⇒ Switch to Workspace 1  [Navigation] Launch Browser (Firefox) ⇒ Ctrl + Alt + P [Launchers]   Launch VS code ⇒ Ctrl + Alt + C [Launchers] Custom Shortcuts: Open Custom Firefox Profile Command: firefox -p "<profile_name>" Shortcut: Ctrl + Alt + P Shut Down Command: systemctl poweroff Shortcut: Ctrl + Alt + End

[SOLVED] Ubuntu 24.04 touchpad gestures not working

I noticed that the usual touchpad gestures such as back button swipe was not working.  Fix: 1. Log out. 2. 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: There are no 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...