Addendum Connecting to a Linux Virtual Machine Over the Network 1. Stop virtual machine. 2. Highlight virtual machine and click settings in VirtualBox. 3. Nightwork adaptor needs to be Attached to Bridged Adapter, in case you are working on a…
Day 5 Environment Variables Viewing environment variables: printenv – Viewing the environment variables. printenv HOME – Only variable of HOME will be displayed, for example something like this: “/home/philipp”. echo $HOME – Does the same thing. Environment values are case…
Day 4 Deleting, copying, moving and renaming files: Deleting: rm file – Remove file. rm -r dir – Remove the directory and its contents recursively. rm -f file – Force removal and never prompt for confirmation. rm can be used…
Learn Linux in 5 Days and Level Up Your Career by Jason Cannon on Udemy (Image: Udemy) MENU Day 1 Background and Introduction Linux Distributions Installing VirtualBox on Windows Installing VirtualBox on Mac Installing Linux Using an Image for VirtualBox…
Day 3 1. File and directory permissions: When ls -l typed in the console, something like this will show up on your screen: -rw-r--r-- 1 Philipp users 10400 Sep 27 08:52 sales.data The first character or symbol could be one…
Day 2 1. Linux Directory Structure: Most commonly used top-level directories: / “Root”, the top of the file system hierarchy /bin Binaries and other executable programs /etc System configuration files /home Home directory (various user files) /opt Optional or third…
Day 1 1. Brief History: Linux is an operating system and kernel, it is the layer between application and hardware. Created by Linus Torvalds in 1991: Wish to run Unix on a PC. 2. Distributions: Linux Operation System + Apps…