Rsync
Rsync is an open source bandwidth-friendly utility tool for performing swift incremental file transfers and it is available for free.
$ rsync [OPTION...] SRC... [DEST]
?
Install Rsync on Ubuntu and Debian, using the following commands.
$ sudo apt-get install rsync
$ sudo apt update
Vim
Vim is an open source clone of vi text editor developed to be customizable and able to work with any type of text.
Install Vim on Ubuntu and Debian, using the following commands.
$ sudo add-apt-repository ppa:jonathonf/vim
$ sudo apt update
$ sudo apt install vim
GNOME
GNOME is a Desktop Environment comprised of several free and open-source applications and can run on any Linux distro and on most BSD derivatives.
Install Gnome desktop on Ubuntu and Debian, using the following commands.
$ sudo apt install tasksel
$ sudo apt update
$ sudo tasksel install ubuntu-desktop
Screen Linux
screen command in Linux provides the ability to launch and use multiple shell sessions from a single ssh session. When a process is started with ‘screen‘, the process can be detached from session & then can reattach the session at a later time.
Install Screen desktop on Ubuntu and Debian, using the following commands.
$ sudo apt install screen
$ sudo apt update