Operation Sheet 1.2: Installing Ubuntu Linux Server and Configure Network Interfaces
Operation Sheet 1.2: Installing Ubuntu Linux Server and Configure Network Interfaces
2017
1. Open VMWare Player 12 once it is installed, click Create a New Virtual Machine
2. Choose installer Disc Image File, choose the ubuntu linux server image
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 2
3. Choose Linux and Ubuntu
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 3
4. Enter your full name, username and password and hit next
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 4
6. Select the “Split virtual disk into multiple files” option. Hit next when you’re happy with the
settings.
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 5
7. This brings you to the confirmation page. Click “Customize Hardware”
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 6
8. In the hardware options section select the amount of memory you want the VM to use.
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 7
9. This brings you back to the confirmation page. Click Finish this time. Ubuntu Server Installation will
proceed.
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 8
2. Get root Privileges
After the reboot, you can log in with your previously created username (e.g. user). Because we must run all the steps from
this tutorial with root privileges, we can either prepend all commands in this tutorial with the string sudo, or we become root
right now by typing:
sudo su
Type the password:e.g. ubuntu
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 9
Sudo nano /etc/network/interfaces
The server is using DHCP right after the install; the interfaces file will look like this:
source /etc/network/interfaces.d/*
To use a static IP address 10.0.4.136, I will change the file so that it looks like this afterward:
source /etc/network/interfaces.d/*
auto ens33
address 10.0.4.136
netmask 255.255.255.0
network 10.0.4.0
broadcast 10.0.4.255
gateway 10.0.4.1
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 10
Or
Sudo /etc/init.d/networking restart
5. Reboot and Shutdown the Linux Server
Reboot
Sudo reboot
shutdown
Start up Windows 7 workstation / client computer. Open command prompt and write the command “ping
10.0.4.36”
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 11
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 12
Operation Sheet 1.2: Installing Ubuntu linux Server by: Dr. Patrick D. Cerna Page 13