├── README.md ├── chardev ├── Makefile ├── ebbchar.c ├── ebbchar.ko ├── ebbchar.mod.c ├── ebbchar.mod.o ├── ebbchar.o ├── modules.order └── testebbchar.c ├── example-1.sh ├── example-2.sh ├── example-3.sh ├── example-4.sh ├── example-5.sh ├── example-6.sh ├── example-7.sh ├── example-8.sh ├── kernel-programming ├── Makefile ├── README.md ├── helloworld.c ├── message.c ├── message.ko ├── message.mod.c ├── message.mod.o ├── message.o ├── modules.order └── simple.c ├── penguin.sh ├── system-calls ├── README.md ├── example-1-b-ls.c ├── example-1-c-mv.c ├── example-1-f-cp.c ├── example-3.c ├── example-4.c └── example-7.c ├── test ├── test1.txt ├── test2.txt └── weight.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/README.md -------------------------------------------------------------------------------- /chardev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/Makefile -------------------------------------------------------------------------------- /chardev/ebbchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/ebbchar.c -------------------------------------------------------------------------------- /chardev/ebbchar.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/ebbchar.ko -------------------------------------------------------------------------------- /chardev/ebbchar.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/ebbchar.mod.c -------------------------------------------------------------------------------- /chardev/ebbchar.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/ebbchar.mod.o -------------------------------------------------------------------------------- /chardev/ebbchar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/ebbchar.o -------------------------------------------------------------------------------- /chardev/modules.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/modules.order -------------------------------------------------------------------------------- /chardev/testebbchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/chardev/testebbchar.c -------------------------------------------------------------------------------- /example-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-1.sh -------------------------------------------------------------------------------- /example-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-2.sh -------------------------------------------------------------------------------- /example-3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-3.sh -------------------------------------------------------------------------------- /example-4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-4.sh -------------------------------------------------------------------------------- /example-5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-5.sh -------------------------------------------------------------------------------- /example-6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-6.sh -------------------------------------------------------------------------------- /example-7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-7.sh -------------------------------------------------------------------------------- /example-8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/example-8.sh -------------------------------------------------------------------------------- /kernel-programming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/Makefile -------------------------------------------------------------------------------- /kernel-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/README.md -------------------------------------------------------------------------------- /kernel-programming/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/helloworld.c -------------------------------------------------------------------------------- /kernel-programming/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/message.c -------------------------------------------------------------------------------- /kernel-programming/message.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/message.ko -------------------------------------------------------------------------------- /kernel-programming/message.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/message.mod.c -------------------------------------------------------------------------------- /kernel-programming/message.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/message.mod.o -------------------------------------------------------------------------------- /kernel-programming/message.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/message.o -------------------------------------------------------------------------------- /kernel-programming/modules.order: -------------------------------------------------------------------------------- 1 | kernel//home/plab-14/Desktop/1209020/code/message.ko 2 | -------------------------------------------------------------------------------- /kernel-programming/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/kernel-programming/simple.c -------------------------------------------------------------------------------- /penguin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/penguin.sh -------------------------------------------------------------------------------- /system-calls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/README.md -------------------------------------------------------------------------------- /system-calls/example-1-b-ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/example-1-b-ls.c -------------------------------------------------------------------------------- /system-calls/example-1-c-mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/example-1-c-mv.c -------------------------------------------------------------------------------- /system-calls/example-1-f-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/example-1-f-cp.c -------------------------------------------------------------------------------- /system-calls/example-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/example-3.c -------------------------------------------------------------------------------- /system-calls/example-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/example-4.c -------------------------------------------------------------------------------- /system-calls/example-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/system-calls/example-7.c -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/test -------------------------------------------------------------------------------- /test1.txt: -------------------------------------------------------------------------------- 1 | this is test1 file cat 2 | -------------------------------------------------------------------------------- /test2.txt: -------------------------------------------------------------------------------- 1 | this is test2 file cat 2 | -------------------------------------------------------------------------------- /weight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/OS-Programs/HEAD/weight.sh --------------------------------------------------------------------------------