Skip to content

JiwenJ/NJUOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NJUOS-2022

Motivation: revisit njuos lab with wsl2 and organise related materials

Prerequisite 准备实验环境

install wsl2 and install ubuntu18.04

sudo apt-get update
sudo apt-get install qemu-system-x86
sudo apt-get install qemu-system-i386
sudo apt-get install vim
sudo apt-get install gcc
sudo apt-get install binutils
sudo apt-get install make
sudo apt-get install perl
sudo apt-get install git

如果有同学使用的是amd64架构,且在代码中使用了标准库,gcc使用-m32编译选项时需要进行额外配置

第一步:确认64位架构的内核

dpkg --print-architecture
amd64

第二步:确认打开了多架构支持功能

dpkg --print-foreign-architectures
i386

说明已打开,否则需要手动打开

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get dist-upgrade

这样就拥有了64位系统对32位的支持

安装gcc multilib

apt-get install gcc-multilib g++-multilib

gdb对Ubuntu18.04的版本支持只到8.X,而实验需要gdb 10.0+,需要手动编译并安装gdb

apt-get install libncurses5-dev
wget -c https://ftp.gnu.org/gnu/gdb/gdb-10.1.tar.xz
xz -d gdb-10.1.tar.xz
tar -xvf gdb-10.1.tar
cd gdb-10.1/
./configure --enable-tui
make -j32
make install

安装成功后,执行

gdb -v

版本应显示10.1

install xtiming or wsl --update to support graphical applications. reference:

  1. https://superuser.com/questions/1580610/how-to-run-gui-apps-with-windows-subsystem-for-linux
  2. https://stackoverflow.com/questions/71408331/no-available-video-device-error-with-sdl2

After all the prerequisite you can test it:

cd lab1
make clean
make qemu
Lab1 系统引导 实现简单的引导程序
Lab2 系统调用 实现简单的系统调用
Lab3 进程切换 实现简单的任务调度
Lab4 并发控制 实现简单的同步机制
Lab5 ⽂件系统 实现简单的文件系统

Releases

No releases published

Packages

No packages published