Skip to content

marioscloud/BusyBox-Webserver-Hello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

BusyBox Webserver Hello

Project Overview

This project demonstrates how to set up a web server using BusyBox and bash script. It creates an HTTP server that serves a basic "Hello, World" page. The repository includes a straightforward bash script to automate the process. This project is ideal for those learning about lightweight web servers, embedded systems, or quick web service setups.

Prerequisites

  • Linux environment with BusyBox installed.
  • Knowledge shell scripting.

Contact

If you have any questions, feel free to reach out at marioscloud@duck.com

Usage

  1. Clone the repository:
    git clone https://github.com/marioscloud/BusyBox-Webserver-Hello
    

Go to the project directory:

  1. Navigate to the project directory:
    cd project_01
    

Execute:

  1. Make executable the file webserver_hello.sh and execute the provided bash script::
    chmod + ./webserver_hello.sh
    
  2. Execute the provided bash script::
    ./webserver_hello.sh
    

Access the web server:

  1. Open your web browser and navigate to http://localhost:8080 to see the "Hello, World" message::
    http://localhost:8080
    
    

Stop the server:

  1. To stop the server, find the process ID (PID) and kill it::
    ps aux | grep busybox
    sudo kill -9 <PID>
    

This README provides clear instructions on how to set up and run your BusyBox web server. Feel free to adjust any details to better suit your project's specifics. Thanks for reading.

About

Set up a web server using BusyBox

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages