# Linux Experiment **Repository Path**: liu-xinkun/linux-experiment ## Basic Information - **Project Name**: Linux Experiment - **Description**: Linux操作系统实验 - **Primary Language**: C - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-07 - **Last Updated**: 2024-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 在Linux环境下,利用vi编写一个驱动程序和测试用的应用程序。 驱动程序的主要功能包括: (1)安装时输出hello,卸载时输出exit; (2)read时,读出当前时间; (3)write时,如果写入“1”,则输出“you are write 1.”;如果写入“0”,则输出“you are write 0.”;如果写入其他数字,则输出“Please write 0 or 1.”。 利用gcc编译,尝试反复的安装和卸载该驱动,编写应用程序测试该驱动。