Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Linux Assignment & Excercise


  1. Please write a answer for following questions and submit a answer of www.debug.school in form of new post and URL share in whatsapp group for your batch.
  2. Example commands can be shared at https://www.devopsschool.com/commands and share your public profile in whatsapp group for your batch

  1. What is EPEL and Write a instructions to install and use it.
  2. What is diffrence between hypervisor and cloud?
  3. What are the Network Adaptor(Driver) you have in VirtualBox and write a usecase of it?
  4. Find a list 10 commands and write 10 example of it and publish it to https://www.devopsschool.com/commands
    • grep
    • find
    • xargs
    • sed
    • chmod
    • netstat
    • route
    • record
    • vmstat
    • visudo
    • awk

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at <a href="https://www.cotocus.com/">Cotocus</a>. I share tech blog at <a href="https://www.devopsschool.com/">DevOps School</a>, travel stories at <a href="https://www.holidaylandmark.com/">Holiday Landmark</a>, stock market tips at <a href="https://www.stocksmantra.in/">Stocks Mantra</a>, health and fitness guidance at <a href="https://www.mymedicplus.com/">My Medic Plus</a>, product reviews at <a href="https://www.truereviewnow.com/">TrueReviewNow</a> , and SEO strategies at <a href="https://www.wizbrand.com/">Wizbrand.</a> Do you want to learn <a href="https://www.quantumuting.com/">Quantum Computing</a>? <strong>Please find my social handles as below;</strong> <a href="https://www.rajeshkumar.xyz/">Rajesh Kumar Personal Website</a> <a href="https://www.youtube.com/TheDevOpsSchool">Rajesh Kumar at YOUTUBE</a> <a href="https://www.instagram.com/rajeshkumarin">Rajesh Kumar at INSTAGRAM</a> <a href="https://x.com/RajeshKumarIn">Rajesh Kumar at X</a> <a href="https://www.facebook.com/RajeshKumarLog">Rajesh Kumar at FACEBOOK</a> <a href="https://www.linkedin.com/in/rajeshkumarin/">Rajesh Kumar at LINKEDIN</a> <a href="https://www.wizbrand.com/rajeshkumar">Rajesh Kumar at WIZBRAND</a> <a href="https://www.rajeshkumar.xyz/dailylogs">Rajesh Kumar DailyLogs</a>

Related Posts

The 5 Most Popular Email APIs Among Developers In 2026

In the modern world, where everything is going digital, email is among the most important means of communication both in personal and business life. As a developer,…

Read More

Top 10 Construction Management Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction Construction Management Software (CMS) has become indispensable in 2026 for efficiently handling various aspects of construction projects, ranging from budgeting, scheduling, resource allocation, project tracking, to…

Read More

Top 10 Loan Management Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction As the financial services sector continues to evolve, Loan Management Software (LMS) plays a pivotal role in helping businesses streamline their loan operations, from origination to…

Read More

Top 10 AI Presentation Design Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI presentation design tools have become indispensable for professionals, educators, and students aiming to create visually stunning and impactful slide decks with minimal effort….

Read More

Top 10 Web Design Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction Web design software is a vital tool for both professionals and businesses looking to create visually appealing and functional websites. In 2026, with the increase in…

Read More

Top 10 AI Graphic Design Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI graphic design tools have transformed the creative landscape, empowering designers, marketers, and business owners to produce stunning visuals with unprecedented speed and efficiency….

Read More
Subscribe
Notify of
guest
2 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
basffour agyapong-sebbeh
basffour agyapong-sebbeh
3 years ago

Day 3 – Linux Lab & Assignment
  Linux Assignment Part – 1
What is EPEL and Write a instructions to install and use it.
EPEL: Stand for Extra Packages for Enterprise Linux, and is a special interest group from the Fedora Project that provides a set of additional packages for RHEL, CentOS and others from the Fedora sources.
1.Instructions to install EPEL:
Open a shell prompt.
Use ssh to log in to an CentOS 8. …
Log in as root user using the su command or sudo command.
Install epel using the following command: sudo yum -y install epel-release.
Refresh repo by typing the following command: sudo yum repolist.
Install packages from epel repository using command: yum install pkg1.
 
2.What is diffrence between hypervisor and cloud?
Hypervisor: is a specialized firmware or software, or both, installed on single hardware that would allow you to host several virtual machines. It allows physical hardware to be shared across several virtual machines.
Cloud: is the Internet—It is all of the things you can access remotely over the Internet.
 
3.What are the Network Adaptor(Driver) you have in VirtualBox and write a usecase of it?
VirtualBox reports to the guest that a network card is present, but there is no connection.
Network Address Translation:-It’s a way to map multiple local private addresses to a public one before transferring the information.
NAT Network-It is type of internal network that allows outbound connections.
Bridge networking-A network bridge is a computer networking device that creates a single network from multiple communication networks.
Internal networking-Internal Networking is similar to bridged networking in that the VM can directly communicate with the outside world. However, the outside world is limited to other VMs on the same host which connect to the same internal network.
Host-only networking-Host-only networking can be thought of as a hybrid between the bridged and internal networking modes. As with bridged networking, the virtual machines can talk to each other and the host as if they were connected through a physical Ethernet switch.
 
 
4.Find a list 10 commands and write 10 example of it and publish it to https://www.devopsschool.com/commands
Grep
$ grep -h Laptop : searching string Laptop.
Find
$ find ./directoryname -empty : Find empty folders reside in documents folder.
Xargs
$ xargs -a file1.txt : To read the items in a file, along with the -a option.
Sed
$ sed ‘5d’ dummy.txt : Delete line 5 in the file.
Chmod
$ chmod 400 filenames: Only read privileges have been assigned to an owner.
 
 5.   Netstat: $ netstat -l: List all the active connections.
Route
$ sudo route: Print routing table in Linux.
Record
$ script linuxhintlog.txt : To record everything in the terminal
Vmstat
$ vmstat 2 10: Reports every 2 seconds for 10 times
Visudo
$ sudo visudo: opens sudoer file in terminal
Awk
$ awk -f awkcsv.awk customer.csv : Run awkcsv.awk file with the content of the customer.csv file by the following command.
 

basffour agyapong-sebbeh
basffour agyapong-sebbeh
3 years ago

  Linux Assignment Part – 1
What is EPEL and Write a instructions to install and use it.
EPEL: Stand for Extra Packages for Enterprise Linux, and is a special interest group from the Fedora Project that provides a set of additional packages for RHEL, CentOS and others from the Fedora sources.

1.Instructions to install EPEL:
Open a shell prompt.
Use ssh to log in to an CentOS 8. …
Log in as root user using the su command or sudo command.
Install epel using the following command: sudo yum -y install epel-release.
Refresh repo by typing the following command: sudo yum repolist.
Install packages from epel repository using command: yum install pkg1.
 
2.What is difference between hypervisor and cloud?
Hypervisor: is a specialized firmware or software, or both, installed on single hardware that would allow you to host several virtual machines. It allows physical hardware to be shared across several virtual machines.
Cloud: is the Internet—It is all of the things you can access remotely over the Internet.
 
3.What are the Network Adaptor(Driver) you have in VirtualBox and write a use case of it?
VirtualBox reports to the guest that a network card is present, but there is no connection.
Network Address Translation:-It’s a way to map multiple local private addresses to a public one before transferring the information.
NAT Network-It is type of internal network that allows outbound connections.
Bridge networking-A network bridge is a computer networking device that creates a single network from multiple communication networks.
Internal networking-Internal Networking is similar to bridged networking in that the VM can directly communicate with the outside world. However, the outside world is limited to other VMs on the same host which connect to the same internal network.
Host-only networking-Host-only networking can be thought of as a hybrid between the bridged and internal networking modes. As with bridged networking, the virtual machines can talk to each other and the host as if they were connected through a physical Ethernet switch.
 
 
4.Find a list 10 commands and write 10 example of it and publish it to https://www.devopsschool.com/commands
Grep
$ grep -h Laptop : searching string Laptop.
Find
$ find ./directoryname -empty : Find empty folders reside in documents folder.
Xargs
$ xargs -a file1.txt : To read the items in a file, along with the -a option.
Sed
$ sed ‘5d’ dummy.txt : Delete line 5 in the file.
Chmod
$ chmod 400 filenames: Only read privileges have been assigned to an owner.
 
 5.   Netstat: $ netstat -l: List all the active connections.
Route
$ sudo route: Print routing table in Linux.
Record
$ script linuxhintlog.txt : To record everything in the terminal
Vmstat
$ vmstat 2 10: Reports every 2 seconds for 10 times
Visudo
$ sudo visudo: opens sudoer file in terminal
Awk
$ awk -f awkcsv.awk customer.csv : Run awkcsv.awk file with the content of the customer.csv file by the following command.
 
 

2
0
Would love your thoughts, please comment.x
()
x