User:Annasandri/2: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 16: Line 16:
It was created in the UK by the Rasberry Pi Foundation with the aim of bringing programming into education.  
It was created in the UK by the Rasberry Pi Foundation with the aim of bringing programming into education.  
It permits several machines and users to interact with the same computer.
It permits several machines and users to interact with the same computer.
 
==30.09==
===Introduction to GIT===
Git is a free and open source distributed version control system designed to handle and keep traces of projects like code, processes, images ecc. ecc. To use a distributed version control system means that everyone has his working copy of the repository that keeps track of his changes and the different releases made by him or by his colleagues.
<br />
Github= web repository based on git
===SSH Keys===
SSH means SICURE SHELL.They are used to create a secure connection to the device and increase security in a system.
<br />
Cryptographic system that uses pairs of keys:
* a public key;
* a private key (which is associated with a machine in particular);
__NOTOC__
__NOTOC__

Revision as of 16:06, 10 October 2019

16/09

Sedicisettembre.gif

Introduction on UNIX

Unix is a family of operating systems, multitasking & multiuser.
It was born from the evolution of a previous project called Multics. In 1983 Richard Stallman wrote the GNU General Public Licence to permit people to work on it and to modify it.
Philosophy:

  • write programs that do one thing and do it well;
  • write programs to work together;
  • make it easy to write text and run programs;
  • support interactive use instead of batch processing.

Rasberry Pi

The Pi Rasberry Pi is a single board computer designed to host Unix based operative systems.
It was created in the UK by the Rasberry Pi Foundation with the aim of bringing programming into education. It permits several machines and users to interact with the same computer.

30.09

Introduction to GIT

Git is a free and open source distributed version control system designed to handle and keep traces of projects like code, processes, images ecc. ecc. To use a distributed version control system means that everyone has his working copy of the repository that keeps track of his changes and the different releases made by him or by his colleagues.
Github= web repository based on git

SSH Keys

SSH means SICURE SHELL.They are used to create a secure connection to the device and increase security in a system.
Cryptographic system that uses pairs of keys:

  • a public key;
  • a private key (which is associated with a machine in particular);