qword
1.0.0

آسف على ذلك.
يرجى عدم إرسال PRS أو مشكلات مفتوحة مقابل هذا المشروع الذي لم يعد يتم تحديثه.
أنت حر في التحقق من الرمز ، وتشويهه ، وكل ذلك ، طالما يتم احترام الترخيص (الترخيص. md).
كما يوحي الاسم ، هذا هو مجرد نواة. لإنشاء النظام بأكمله ، اتبع الإرشادات الموجودة على https://github.com/qword-os/build.
هذه هي الأدوات اللازمة للبناء:
git (فقط للتنزيل الأولي).bash .make .gcc ، 8 أو أعلى.nasm .objcopy .qemu (لاختبار ذلك).clang (لاختبار ذلك).llvm (لاختبار ذلك). # Clone repo wherever you like and enter.
git clone https://github.com/qword-os/qword.git
cd qword
# Make the kernel, you can replace the 4 in -j4 with your number of cores + 1.
make clean && make -j4
# Install in PREFIX, may need root permissions depending on the place.
sudo make install PREFIX=..
# Uninstall if needed in the specified PREFIX.
sudo make uninstall PREFIX=..