0% found this document useful (0 votes)
27 views11 pages

Printout Sheet For Ex 1,2b, 16

Uploaded by

Karnan Suganya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views11 pages

Printout Sheet For Ex 1,2b, 16

Uploaded by

Karnan Suganya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 11

Ex No:1 Installation of Windows

1. Check your device meets the Windows 10 system requirements. Below you’ll find the
minimum specs needed to run Windows 10, so check your device is capable:

CPU: 1GHz or faster processor


RAM: 1GB for Windows 10 32-bit or 2GB for Windows 10 64-bit
Storage: 32GB of space or more
GPU: DirectX 9 compatible or later with WDDM 1.0 driver
Display: 800x600 resolution or higher

2. Create USB installation media. Visit Microsoft's Windows 10 download page (opens in new
tab) and select “Download tool now” under the “create Windows 10 installation media” section.
Transfer the downloaded installer tool to a USB drive.

3. Run the installer tool. Open the installer tool by clicking on it. Accept Microsoft’s terms, and
then select “Create installation media for another PC” on the “What do you want to do?”
page. After selecting which language you want Windows 10 to run in, and which edition you
want as well (32-bit or 62-bit), you’ll be asked what type of media you want to use.

Installing from a USB drive is definitely the preferred option but you can also install from a
CD or ISO file. Once you choose your device, the installer tool will download the required files
and put them onto your drive.
4. Use your installation media. Insert your installation media into your device and then access
the computer’s BIOS or UEFI. These are the systems that allow you to control your
computer’s core hardware.

The process of accessing these systems is unique to each device, but the manufacturer’s website
should be able to give you a helping hand here. Generally, you'll need to press the F2, F12 or
Delete keys as your computer boots up.

5. Change your computer's boot order. Once you have access to your computer’s BIOS/UEFI
you’ll need to locate the settings for boot order. You need the Windows 10 installation tool to be
higher up on the list than the device’s current current boot drive: this is the SSD or HDD that
your existing OS is stored on. You should move the drive with the installer files to the very
top of the boot order menu. Now, when you restart your device the Windows 10 installer
should load up first.

6. Restart your device. Save your settings in the BIOS/UEFI and reboot your device.

7. Complete the installation. Your device should now load up the Windows 10 installation tool
on restart. This will guide you through the rest of the installation process.

Result:
Thus installation procedure for Windows operating system was studied.
Program:

echo "Give value for A B and C: "


read a b c
if [ $a -gt $b -a $a -gt $c ]
then
echo "A is the Biggest number"
elif [ $b -gt $c ]
then
echo "B is the Biggest number"
else
echo "C is the Biggest number"
fi

Output:

Give value for A B and C: 4 3 4


C is the Biggest number
Program:

echo "Enter a number : "


read n
a=$n
s=0
while [ $n -gt 0 ]
do
r=`expr $n % 10`
s=`expr $s + \( $r \* $r \* $r \)`
n=`expr $n / 10`
done
if [ $a -eq $s ]
then
echo "Armstrong Number"
else
echo "Not an Armstrong number"
fi

Output:

Enter a number : 370


Armstrong Number
Program:

echo "Enter number of terms : "


read n
echo "Fibonacci Series"
f1=0
f2=1
echo -n "$f1 "
echo -n " $f2 "
i=2
while [ $i -lt $n ]
do
f3=`expr $f1 + $f2`
echo -n " $f3 "
f1=$f2
f2=$f3
i=`expr $i + 1`
done
echo

Output:

Enter number of terms : 8


Fibonacci Series
0 1 1 2 3 5 8 13
Program:

echo "Enter the number : "


read n
i=2
m=`expr $n / 2`
until [ $i -gt $m ]
do
q=`expr $n % $i`
if [ $q -eq 0 ]
then
echo "Not a Prime number"
exit
fi
i=`expr $i + 1`
done
echo "Prime number"

Output:

Enter the number : 17


Prime number
Ex No: 16 Installation of Guest operating system Linux

Aim:

To install any guest operating system like Linux using VMware.

Procedure:
1. Install VMware Workstation Player
a. To start, head to the VMware website and download the latest version of their
Workstation Player tool. We're using VMware Workstation 15 Player, which is around
150MB to download.
2. Create Your Linux Virtual Machine
a. Click Create a New Virtual Machine
b. Select the default option, Installer disc image file (iso)
c. Click Browse to find the ISO file

d. With "guest" OS selected, click Next

e. Select Linux as the Guest operating system type


f. Under Version, scroll through the list and select the OS
g. Click Next to proceed and if necessary, input a Virtual machine name
h. Confirm the storage Location and change if needed
3. With the operating system selected and configured, it's time to build the virtual machine.
a. Under Specify Disk Capacity adjust Maximum disk size if required (the default should be
enough)
b. Select Split virtual disk into multiple files as this makes moving the VM to a new
PC easy
c. Click Next then confirm the details on the next screen
d. If anything seems wrong click Back, otherwise click Finish
4. Customize Your Virtual Hardware
a. To fix this, right-click your virtual machine in VMware Workstation Player and select
Settings.
b. Click Processors. In the right-hand pane, click the check box Intel VT-x or AMD-V,
depending on your CPU.
c. Finally, check the Display settings. Click OK to confirm changes, then select the virtual
machine and click the Play button to begin.

5. Installing Linux in VMware is simple. Let's run through the steps again:
a. Download the free VMware Workstation Player
b. Install, and restart Windows
c. Create and configure your virtual machine
d. Install Linux in the virtual machine
e. Restart the virtual machine and use Linux

Result:
Thus the guest operating system Linux using VMWare was installed successfully.

You might also like