Tag: ubuntu

  • How to upgrade kernel to latest version on Ubuntu 20.04 Focal Fossa Linux

    (source: https://linuxconfig.org/how-to-upgrade-kernel-to-latest-version-on-ubuntu-20-04-focal-fossa-linux) In this tutorial you will learn: Upgrade kernel to latest version on Ubuntu 20.04 Focal Fossa Linux Software Requirements and Conventions Used Category Requirements, Conventions or Software Version Used System Installed Ubuntu 20.04 or upgraded Ubuntu 20.04 Focal Fossa Software ubuntu-mainline-kernel.sh Other Privileged access to your Linux system as root or via the…

  • Installation of Autodesk Eagle 9.0.1 in Ubuntu

  • Chrome browser in Ubuntu

    Chrome browser in Ubuntu

    Follow the instruction for installation: Add Key: wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add – Set repository: sudo sh -c ‘echo “deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main” >> /etc/apt/sources.list.d/google-chrome.list’ Install package: sudo apt-get update sudo apt-get install google-chrome-stable

  • Change linux hostname

    How to change the hostname of the system sudo hostname (new hostname) Change old hostname also in the following file: sudo nano /etc/hosts

  • OpenSSH server install Ubuntu

    1. To install it, open terminal (Ctrl+Alt+T) or log in Ubuntu server and run command: sudo apt-get install openssh-server 2. After that, you should have SSH service enabled in your system, you may check its status by running command: sudo service ssh status 3. You may change some settings (e.g., the listening port, and root…

  • Running Ubuntu full-screen in Virtualbox

    Running Ubuntu full-screen in Virtualbox

    Install Ubuntu in Virtualbox. It’s not directly possible to run Native full-screen resolution. Follow the next steps to solve this problem: Select from ‘Devices’ in the titlebar the option ‘Guest additions’. Reboot the virtual machine. Press the host-key (by default right-CTRL) and F simultainously. The screen turns full-screen Ubuntu in native resolution.

  • OpenVPN Client installation in Ubuntu

    Open the terminal. Update the software repositories and install the network manager. $ sudo apt-get update $ sudo apt-get install network-manager-openvpn Copy your VPN files  (*.ovpn and certificate files) to a known location on your computer. Open network connections. Edit connections Load configuration Select your  *.ovpn file.

  • Keepass for Ubuntu

    Add the repository to the software centre. The standard version in software centre is old. ppa:jtaylor/keepass Search for ‘KeepassX’ and install. Auto fill-in By default, you can’t fill in the user credantials automatically. To make this possible, you have to install another program called ‘xdotool’. $ sudo apt-get install xdotool

  • Ubuntu 14.04 default brightness

    Laptop users still have the backlight issue in Ubuntu 14.04. Every time Ubuntu boots up you get the maximum level of screen brightness. Here’s a workaround by adding a startup script which will automatically adjust screen brightness when Ubuntu boots up. To get started: Preparation: Open your file browser and navigate to “Computer→ sys →…

  • ClamAV installation

    ClamAV is by default installed in Ubuntu. You want to be sure that you have the latest version and update. Clamav will sometimes have trouble downloading updates for some reason or another. I’ll show you how to fix this in Ubuntu Linux! First, stop clamav and freshclam: $ sudo /etc/init.d/clamav-daemon stop $ sudo /etc/init.d/clamav-freshclam stop…