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

Linux: How to Check Graphics Card Memory

List all the PCI devices: lspci # Sample Outout:root@kim-linux:/home/kim# lspci00:00.0 Host bridge: Intel Corporation Device…

Run Memory Tester On Ubuntu 20.04

GNU Grub 2.04 does have memtest86+ that could be used to perform RAM load tests.…

How to Install Visual Studio Code on Linux Mint 20.04

Linux Mint versions earlier than 20.04 would allow a user to install snapd, prior to…