Social Icons

Showing posts with label ubuntu 20.04. Show all posts
Showing posts with label ubuntu 20.04. Show all posts

Sunday, December 12, 2021

Multichain Blockchain Platform: Brief Introduction & Installation

This video gives a minimal few minutes introduction to the Multichain blockchain platform followed by quick installation on an Ubuntu 20.04 OS terminal. This is one of the easiest platforms to play with and understand in much better way the mechanics of blockchain. Primarily CLI based, this video installs the multichain with few commands.

 

Saturday, September 11, 2021

RTL8761B Tobo Mini USB Bluetooth Adapter installation on UBUNTU 20.04

No intro...no discussion....no details....will come direct to the problem and then the solution. :-)


QUERY / PROBLEM: You planning to buy a Bluetooth adapter for your Linux Operating system and are pondering to buy the right one to avoid any driver or installation issues later. Since window OS users have default drivers but not so with most of devices for Linux. So since I recently bought one Tobo Mini USB Bluetooth 5.0 Adapter Wireless Bluetooth Dongle Receiver, I had to search for solutions for smooth installation. So just few lines of code to be run on the terminal and you will be good to go...the drivers for the same are available at the link https://drive.google.com/drive/folders/1-6NI2-PMbX1wmVb1FYbXblaPvZGdKElD 

Once you access this folder you will find the files as seen in pic below:

Download the Linux folder and you will see some thing like below pic


now goto the terminal inside the usb directory and run this command

sudo make install INTERFACE=all

after this command ,next  move to the /home/ur_username/Downloads/rtl8761b/rtkbt-firmware/lib/firmware and run these two commands

sudo cp rtl8761bu_fw /lib/firmware/

sudo cp rtl8761bu_config /lib/firmware/

and that's all...init 6 and checkout...bluetooth will be seen...best wishes.

Wednesday, January 20, 2021

Ubuntu 20.04 LTS brightness control with command line[SOLVED]

While I moved my kernel face from 18.04  to 20.04 LTS,there were few irritants while I got adapted to new interface and features…and one of them was the missing brightness tab in Ubuntu 20.04 LTS. Don’t know why it was removed,but then may be a small community used it and so was discontinued. So I tried third party plugins, few new brightness apps also tried brightness controller but somehow was not happy with the desired screen brightness control.Though Ubuntu 20.04 has night light feature wherein you can tweak with color temperatures from  less warm to more warm but that too fall short of my requirement. So I just wanted a clean hassle free solution. So I got to know about the xrandr command. Xrandr is used to set the size, orientation and/or  reflection  of  the outputs for a screen. It can also set the screen size. 

The good thing is that this utility comes pre-installed with the OS. You just need to use it vide few command line inputs and these are as below:

The first command is

xrandr | grep " connected" | cut -f1 -d " "


This command basically gives you an output of the name of your monitor. In my case it gives HDMI-0.
 
After this command you need to use the same command with different switch and adjusting the brightness to suit your eyes. While 1 refers to highest brightness 0.1 refers to the lowest.So in bright rooms if you wish to set like me,I generally prefer 0.7.The command line goes like this:

 xrandr --output HDMI-0 --brightness 0.7

Other functions that this utility can assist you are with setting resolution and refresh rates. The command lines are mentioned below:

 

SETTING RESOLUTION

xrandr --output HDMI-0--mode 1680x1050

SCREEN REFRESH RATE

xrandr --output HDMI-0--mode 1680x1050 --rate 60.00

Another switch –q will query your monitors and give details as seen below


 Just remember to change your screen name as per your monitor name...in my case like I said...it is HDMI-0.

Powered By Blogger