Bluetooth not working in ubuntu after update If you have been using Linux for a while, you would know Bluetooth and Linux don’t go well. Whatever may be the reason, it’s always face problem when you update Linux versions. Recently, since my upgrade to Ubuntu 20.04, I have come to notice that Bluetooth devices stop…
Category: Linux
Create a swap memory in Linux
Swap memory is like RAM, in Linux is used when the amount of RAM is full. If the system needs more memory resources and the RAM is full then, other inactive pages in RAM are moved to the swap memory. While swap space can help machines with a small amount of RAM. Swap memory creates…
Make a bootable pendrive in Linux
Using DD command: Step 1:- “sudo fdisk -l” to find usb name in the system. like /dev/sdc (you can identify by Drive size)Step 2:- “sudo dd bs=4M if=Downloads/boss-8.0-amd64-DVD-301019.iso of=/dev/sdc1 status=progress && sync”(Make Sure you have selected Correct Drive Name and iso File path) Restore back for Bootable Drive Step 1:- “sudo wipefs –all /dev/sdd”Step 2:-…