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

NextCloud Container PHP Memory Issue as Deployed via Kubernetes

Most common example:Below is a raw text paste of an exercise in resolving the issue…

FFMPEG Ftuff (old)

Install prerequisites: --- Install DAG --- yum install rpmforge-release yum install gcc gcc-cpp gcc-c++ zlib-devel…

User Accounts Management

# Method 1 # Disable account while still retain "sudo su userX"   # Block…