Skip to main content

Linux Server Installation

Linux Server Installation



Youtube


In the lab, we are going to install a Linux Server on a virtual box. Go to the Linux site and download the ISO for installation.


https://ubuntu.com/download/server



Once you have downloaded the ISO, go to the virtual box and start a new virtual machine.



Name your machine and choose the ISO you downloading for installation.


Choose your RAM and CPU settings.



Change your network to “ NAT NETWORK”.



Launch your new machine and follow the installation.



Choose the first option. Install Ubuntu Server.


Once you finish installation it will restart. Make sure to remove the ISO disk so you do not go through the installation process again. You will be prompted to log in with the username and password you created during the installation. 



This completes the Linux Server installation.

 

Comments

Popular posts from this blog

Virtual Machine Set-up

  Virtual Machine Set-Up with Kali Linux To start working in a test environment, we will need to set up a virtual machine. This requires some minimum specification of hardware to run this virtual machine. Please reference the virtual box for more information.  https://www.virtualbox.org/wiki/End-user_documentation   Once you have the minimum hardware requirements we can move on to the next steps. Virtual Box installation Kali installation Virtual Box Installation: In the browser go to https://www.virtualbox.org/ to download the file for your operation system. If you have Windows, download the Windows hosts, and if you have macOS download macOS. You can install the application once you have the file downloaded to your host system.  Run the VirtualBox installer and follow the default installation Once installing is complete you can search for the application in your system and open the application. Once VirtualBox is open it should look something like this. Downloadin...

Nmap Scan

  Nmap scan Youtube If you missed the first part of setting up the virtual machines and ping, do this part first before attempting to scan the devices on the network. https://toukeevang.blogspot.com/2023/10/3-vm-ping-connection-in-this-project-we.html We first going to start with an ARP scan to get the device's IP address. On your Kali virtual machine, open the terminal and type the following command. > nmap -PR -sn 10.0.2.0/24 nmap = is the tool we are using followed by some options within the tool. -PR = P is for ping, R is for randomize  -sn = ping scan no port x.x.x.x = your target IP address This next scan is to test websites and get the known IP address for the website. For this scan, you need to use the escalated privilege “ sudo “.  > sudo nmap -PE -sn scanme.nmap.org sudo = escalated privilege nmap = tool use -PE = sends ICMP packet only to get responses back -sn = ping scan no ports Scanme.nmap.org = target We are going to copy the IP addresses of the virt...