Posted On May 26, 2020

Useful Ubuntu Settings for VNC

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Useful Ubuntu Settings for VNC
# Disable screensaver Ubuntu (Gnome)
gsettings set org.gnome.desktop.screensaver lock-enabled false

# Purge screensaver and update pop-ups
sudo apt remove --purge xscreensaver light-locker update-notifier update-notifier-common
sudo apt autoremove

# Install the tools to get packages
sudo apt install -y gdebi-core wget
 
# Download the latest Chrome installation file for Debian
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
 
# Install the downloaded package
sudo gdebi google-chrome-stable_current_amd64.deb

# Install gimp
sudo apt install gimp gimp-cbmplugs gimp-dcraw gimp-dds gimp-gap gimp-gluas gimp-gmic gimp-gutenprint gimp-normalmap gimp-texturize
  
# Install OnlyOffice Online Editor
#sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
#deb  squeeze main
#sudo apt-get update
#sudo apt install onlyoffice-desktopeditors
sudo snap install onlyoffice-desktopeditors
  
# Install Visual Studio Code
sudo snap install --classic code
  
# Install other useful apps
apt install fbreader caffeine flameshot qalculate
  
# Remove options to sleep, suspend, hibernate
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
# How to start flameshot with a delay of 5 seconds
flameshot gui -d 5000

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How To Configure Alternative Storage for a Kubernetes (K8s) Worker Node

The below illustration is assuming that one has a local RAID mount being added to…

How To Install Microsoft Edge on Ubuntu / Debian / Linux Mint

Step 1: Add Microsoft Repository curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpgsudo install -o root…

Intermittent Ping Request Time Out Due to An Outdated ARP Table Entry of a Ubuntu Server

Scenario: - Server A and Server B hardware are of the same model and capacity-…