Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 1.5 KB

lab4-virtualization.md

File metadata and controls

56 lines (43 loc) · 1.5 KB

Lab 4 - Virtual Raspberry pi

Pre Lab requirments

Starting steps

  • Create and setup a new virtual machine with the lubuntu linux distribution.

Lab Goals

Goal 1 - Use the console

  • Start a new console and learn some commands

  • Create a directory

  • edit a file with vi

  • copy the file to the directory

  • learn the following commands

> cd mkdir cp 
> vi sudo

Goal 2 - Connect over ssh and tranfer files

  • Install openssh-server
> sudo apt-get install openssh-server
> reboot
  • delete and create a new newtwork device in virtual box and set to host-only
  • edit a file with vi remotely
  • copy a file over ssh

Goal 3 - Install python packages

  • Install python packages
  • Teste ipython
 > sudo apt-get install ipython python-scipy python-matplotlib ipython-notebook

Going deeper