Linux

From Piszczynski
Revision as of 16:16, 21 August 2021 by piszczynski>Aleks

Remote Desktop Protocol App for linux

Remmina can be used for RDP connections to windows computers using RDP as well as VNC SSH and others


To user also need to install xrdp and tightvnc:

  • sudo apt install xrdp xorgxrdp -y
  • echo env -u SESSION_MANAGER -u DBUS_SESSION_BUS_ADDRESS cinnamon-session>~/.xsession

Other newer option is xserver-xorg-core


Swap File

Check size of swap file:

  • swapon -s

increase swap file to 8GB:

  • sudo swapoff -a #turn off swap file
  • sudo dd if=/dev/zero of=/swapfile bs=1M count=8192 #set size of blocks for swap file
  • sudo chmod 0600 /swapfile #enable writing the swap file
  • sudo mkswap /swapfile #make swap file
  • sudo swapon -a #enable swap file