Giter Site home page Giter Site logo

osplab's Introduction

OSP 2019 Fall

operating system principles and labs

labs of OSP 2019 Fall

Please read the letter firstly:LINUX is obsolete

lab01

install CentOS 8 in Virtual Machine

lab02

download linux kernel source code and compile it in CentOS 8

lab03

how to minimize the linux kernel for CentOS 8

lab04

add new system service into linux kernel

lab05

add new system service with arguments and return result to app

lab06

write a c program to implement copy one file and verify it

lab07

write a c program to implement copy one directory ant it's subdiectory, the program also verifies the result

md5:

gcc -lcrypto
int main()
{
    MD5_CTX ctx;
    unsigned char outmd[16];
    int i=0;

    memset(outmd,0,sizeof(outmd));
    MD5_Init(&ctx);
    MD5_Update(&ctx,"hel",3);
    MD5_Update(&ctx,"lo\n",3);
    MD5_Final(outmd,&ctx);
    for(i=0;i<16;i++)
    {
        printf("%02X",outmd[i]);
    }
    printf("\n");
    return 0;
}

lab08

write a c program to implement product and comsumer problem which is described by textbook and lab08

lab09

write a c program to implement minishell

lab10

boot computer 1

lab11

boot computer 2 (to protect mode) lab11 files

more

coming soon UNIX操作系统有感

osplab's People

Contributors

albertleecn 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.