Spotify for Linux

Here you can find different ways of installing Spotify for Linux. Spotify for Linux is a labor of love from our engineers that wanted to listen to Spotify on their Linux development machines. They work on it in their spare time and it is currently not a platform that...

How can I suspend/hibernate from command line?

Traditionally ubuntu supported a fairly blunt method of suspend and hibernate. Neither would integrate well with other apps and sometimes not even work on some machines. The new method doesn’t require root and notifies all applications listening for power...

How to start GUI from command line?

If you tried the command startx, but the error command not found was returned, then to install a graphical desktop, in case it is not installed, you would type this: sudo apt-get install ubuntu-desktop

How to check battery status using terminal?

The below command outputs a lot status and statistical information about the battery. The /org/…path can be found with the command upower -e (–enumerate). upower -i /org/freedesktop/UPower/devices/battery_BAT0 Example output: native-path:...

Why doesn’t running “sudo shutdown now” shut down?

Traditionally, the command sudo shutdown now will take you to the runlevel 1 (recovery mode); this will happen for both Upstart and SysV init. To get what you want, i.e., to shut down the computer properly, you need to give the -h switch to shutdown. One thing to note...

How to start Ubuntu in Console mode

As described here (ubuntuhandbook.org – Boot into text console ubuntu) you need to edit /etc/default/grub to have the next boot end up in text mode. In summary you will set these parameters: GRUB_CMDLINE_LINUX_DEFAULT=”text” GRUB_TERMINAL=console...

Boot Ubuntu 16.04 into command line / do not start GUI

You could disable the display manager service with systemctl for example if your display manager is lightdm the run sudo systemctl disable lightdm.service. This will prevent the service from starting at boot. I forgot to mention how to start the GUI, Its as simple as...

5 Steps Start Ubuntu 16.04, 17.04 in Text Mode

The advantages of text modes as compared to graphics modes include lower memory consumption and faster screen manipulation. Text mode or console mode or command line mode saves a lot of RAM uses so most of the time it is very beneficial to boot desktop in text mode....

Lenovo BIOS Key

Generally the F2 key is used to enter the Lenovo’s notebook’s BIOS Setup, but some new models have a special button called Novo to replace Lenovo BIOS Key. If your Lenovo uses F1 or F2 key you can access to your BIOS by start pressing on to your key a few times to...

How to stop automatic updates in Windows 10

Windows 10 always install cumulative updates automatically, even if you’re against them, but you can use these steps to stop this behavior and decide when to install them. On Windows 10, cumulative updates are no longer optional, they’re mandatory, which...

Most Effective Ways To Reduce Laptop Overheating In Linux

Looking for laptop overheating solutions in Linux? Trust me, you are the not the only one facing laptop overheating issue in Linux. As the mercury rises in the summer season, the fan speed of the computer goes nuts. If you are using a laptop, it becomes unbearable to...

Ubuntu 18.04: Set up for HP 8440p

Update to the latest BIOS. How I stopped automatic Synaptics drivers updates to keep scrolling in Modern Apps. from Windows10 Ubuntu 18.04: Getting nvidia to work on HP 8440p Ubuntu 18.04 – after logging in black or blank screen Ubuntu: Failed to start Nvidia...

Ubuntu 18.04: Getting nvidia to work on HP 8440p

Cuda not needed – https://developer.nvidia.com/cuda-zone # Instructions for 4.14 and cuda 9.1 # If upgrading from 4.13 and cuda 9.0 $ sudo apt-get purge –auto-remove libcud* $ sudo apt-get purge –auto-remove cuda* $ sudo apt-get purge...

Running Confluence behind NGINX with SSL

This page describes how to set up NGINX as a reverse proxy for Confluence. The configuration described on this page results in a scenario where: External client connections with NGINX are secured using SSL. Connections between NGINX and Confluence Server are...