blob: b4acc54c24f063be9eb59e99036ed5ebd7e19dc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
make -j4
cd build
pintos-mkdisk fs.dsk 800
dd if=/dev/urandom of=random bs=1 count=100
pintos --qemu -- -f -q
pintos --qemu -p random -a random -- -q
pintos --qemu -p ../../examples/pfs -a pfs -- -q
pintos --qemu -p ../../examples/pfs_writer -a pfs_writer -- -q
pintos --qemu -p ../../examples/pfs_reader -a pfs_reader -- -q
pintos --qemu -- run pfs
|