Disable Native Notification on Google Chrome Ubuntu

On Ubuntu, Google chrome had a disable native notification option. On Chrome 78, this option is removed. But you still can manually enable it. To enbale chrome notification, edit file gedit ~/.config/google-chrome/Local\ State Find “tab-hover-cards@4” Replace with “enable-native-notifications@2″,”tab-hover-cards@4” Save and exit the file. Now restart google chrome. Related Posts Google Chrome

debconf: unable to initialize frontend: Dialog

When installing a program in Ubuntu 18.04 server minimal installation, i get following error debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.) debconf: falling back to frontend: Readline To fix this, run apt -y install whiptail OR apt … Read more

Linux KVM Bridge network on Ubuntu

On Ubuntu 18.04 server, first i get Ubuntu to use /etc/network/interface, by default Ubuntu 18.04 and newer use netplan. First install ifdown apt install ifupdown -y Install bridge utils and resolvconf. apt install bridge-utils resolvconf Now you can configure your network interface by editing file vi /etc/network/interface Here is my network configuration on an OVH … Read more

Install HandBrake on Ubuntu 18.04

HandBreak is an OpenSource Video transcoder available from https://handbrake.fr. It can convert video to various format. Latest version of Handbreak available in Ubuntu PPA. To install, enable Handbreak PPA add-apt-repository ppa:stebbins/handbrake-releases Install handbreak with apt install handbrake-gtk handbrake-cli

Install Linux KVM on Ubuntu

Linux KVM is virtualisation software that allow you to create virtual machine under linux. To install on Ubuntu, run apt install -y qemu-kvm qemu-utils Install libvirtd, this allow you to easily create KVM virtual machines and allow remote connection from virt-manager GUI application. For Ubuntu 20.04 apt install -y libvirt-daemon libvirt-daemon-system For Ubuntu 18.04 apt … Read more

Install drivers on Ubuntu

To install drivers on Ubuntu using command line, run boby@sok-01:~$ sudo ubuntu-drivers devices == /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0 == modalias : pci:v000010DEd00001F82sv00001458sd00003FCBbc03sc00i00 vendor : NVIDIA Corporation driver : nvidia-driver-430 – distro non-free recommended driver : xserver-xorg-video-nouveau – distro free builtin boby@sok-01:~$ This list all drivers available for your hardware. You can install a driver with apt. In this … Read more

Install LXD on Ubuntu

To create LXD containers, run LXD is a tool to manage LXC (Linux Containers). lxd allow you to create and manage lightweight Linux containers, it is like docker, but more like an actual virtual machine. LXD is more user-friendly than using LXC directly, has more features like clustering of servers. On Ubuntu/Debian, run Before you … Read more