Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning

Still making the list of minimal virtual machine by going through each package not included and looking it up on the Ubunu Package Search website.

These packages are highly recommendedQuick one line install,

Code Block
languagebash
# # All in one command
sudo apt-get install at man vim rsync

Here is the long version of it,

Code Block
languagebash
# Alternatively do one line at a time
sudo apt-get install at # To run a job at a specified time.
sudo apt-get install man # man pages.
sudo apt-get install vim # Newer vi which has color coding.
sudo apt-get install rsync # Transfer just the differences between two sets of files across the network 

...