Giter Site home page Giter Site logo

linux_pracexs6's Introduction

Linux Practical Exam (Sem-6)

A repository for all the programs which would be asked in a practical Linux Practical Exam Sem-6.

Program-1: To execute basic Linux commands

1.) ls: The ls command is used to list files and directories in the current working directory.

unix@SIDDELL2018:~$ ls

2.) cd: Changes the current working directory.

unix@SIDDELL2018:~$ cd

3.) pwd: Print's Working Directory.

unix@SIDDELL2018:~$ pwd

4.) mkdir: Makes Directory.

unix@SIDDELL2018:~$ mkdir newdir

5.) rmdir: Removes Directory.

unix@SIDDELL2018:~$ rmdir newdir

6.) cd: Changes the current working directory.

unix@SIDDELL2018:~$ cd

7.) touch: Creates an empty file in an working directory

unix@SIDDELL2018:~$ touch newfile

8.) nano: used to acces a file made in a working directory

unix@SIDDELL2018:~$ nano newfile

9.) bash: used to run programs written in bash file (files with .sh extension)

unix@SIDDELL2018:~$ bash newfile

Program-2: Write shell script to execute for and if loop.

Make New file first by typing nano forandif.sh

Program:

#!/bin/bash

#Write shell script to execute for and if loop.

num=(1 2 3 4)
for number in ${num[@]}
do
if (( $number % 2 == 0 ))
 then
  echo "$number is even"
else
  echo "$number is Odd"
fi
done

execute the program using bash forandif.sh

Program-3: Write shell script to execute until and while loop.

Program:

#!/bin/bash
# Write shell script to execute until and while loop.

# Executing until
counter=1
echo "Executing until"
until [ $counter -gt 5 ]
do
 echo "The Value of Counter is: $counter"
 counter=$((counter+1))
done

# Executing while
counter2=1
echo "Executing While"
until [ $counter2 -ge 5 ]
do
 echo "The value of Counter is: $counter2"
 counter2=$((counter2+1))
done

Program-4: Write shell script to execute switch and if else loop.

# if-else statement
echo "Executing if-else Statement"

echo "Enter your age: "
read age
if [ $age -gt 18 ]
 then
  echo "You're Eligible to Drive."
else
  echo "You aren't yet Eligible to Drive."
fi

echo ""

# Swith Statement
echo "Executing Switch Statement"

echo "Enter name of any fruit"
read fruit
case "$fruit" in
  "apple") echo "This is an apple.";;
  "banana") echo "This is an banana.";;
  "orange") echo "This is an orange.";;
    *) echo "I Don't Know what fruit this is.";;
esac

Program-5: . Write a shell script to show various system configuration like currently logged user and his logname, your current shell, home directory, operating system type, current path setting, current working directory, show currently logged number of users, show memory information, Hard disk information like size of hard-disk, cache model etc, and file system mounted.

#!/bin/bash

# Various System Configurations

# Current Logged user
echo ""
echo "Current Logged User: $USER"
echo ""
# Show Current Shell
echo "Current Shell: $SHELL"
echo ""
# Show Home Directory
echo "Home Directory: $HOME"
echo ""
# Show Operating System
echo "Operating System: $(uname -o)"
echo ""
# Current Path Setting
echo "Current Path Setting: $PATH"
echo ""
# Current Working Directroy
echo "Current Working Directory: $(pwd)"
echo ""
# Memory Information
echo "Memory Information:"
free -m
echo ""
# Hard Disk Info
echo "Hard Disk Info:"
df -h
echo""
# Cache Model
echo "Cache Model:"
lscpu | grep "L3 cache"
echo ""
# File System Mounted
echo "File System Mounted:"
mount | column -t
echo""

Program-6: Write a shell script to add user and password on Linux system.

#!/bin/bash

# Script to add user and password on Linux system

# Ask for user details
read -p "Enter username: " username
read -s -p "Enter password: " password
echo

# Check if user already exists
if id "$username" &>/dev/null; then
    echo "User already exists. Aborting."
    exit 1
fi

# Add user
sudo useradd -m -s /bin/bash "$username"

# Set password for user
echo "$username:$password" | sudo chpasswd

# Display message
echo "User '$username' added successfully with password '$password'."

Program-7: Write a shell script that delete all lines containing a specified word.

#!/bin/bash

# Write a shell script that deletes all lines containing a specified word.

echo "Enter file name:"
read file
echo ""
echo "Enter specific word from the file:"
read word
echo ""
echo "File before removing word \"$word\":"
cat $file
grep -v -i "$word" "$file" > test
mv test "$file"
echo ""
echo "File after removing word \"$word\":"
cat $file

Program-8: Write a shell script to upgrade and cleans the system automatically instead of doing it manually.

#!/bin/bash

# Write a shell script to upgrade and cleans the system automatically instead of doing it manually

# Update system packages
sudo apt update && sudo apt upgrade -y

# Clean system packages
sudo apt autoremove -y && sudo apt autoclean

Program-9: Write a shell script to find the factorial of given integer.

#!/bin/bash
# Write a shell script to find the factorial of given integer.
echo "Enter a number: "
read num
fact=1
i=1
while [ $i -le $num ]
do
 ((fact= fact*i))
 ((i++))
done
echo $fact

Program-10: Write a shell script to find the number of characters, words and lines in a file.

#!/bin/bash
# Write a shell script to find the number of characters, words and lines in a file

file_path="/home/unix/demo.txt"

echo "Number of Lines: "
number_of_lines= wc --lines<$file_path
echo ""

echo "Number of Words:"
number_of_words= wc --words<$file_path
echo ""

echo "Number of Characters: "
number_of_char= wc --c<$file_path
echo""

linux_pracexs6's People

Contributors

jadhavsiid avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.