1 Star 0 Fork 0

NULL/pwnkernel

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
launch.sh 447 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yan 提交于 2020-10-28 00:28 . stuff
#!/bin/bash
#
# build root fs
#
pushd fs
find . -print0 | cpio --null -ov --format=newc | gzip -9 > ../initramfs.cpio.gz
popd
#
# launch
#
/usr/bin/qemu-system-x86_64 \
-kernel linux-5.4/arch/x86/boot/bzImage \
-initrd $PWD/initramfs.cpio.gz \
-fsdev local,security_model=passthrough,id=fsdev0,path=$HOME \
-device virtio-9p-pci,id=fs0,fsdev=fsdev0,mount_tag=hostshare \
-nographic \
-monitor none \
-s \
-append "console=ttyS0 nokaslr"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/delete_user/pwnkernel.git
git@gitee.com:delete_user/pwnkernel.git
delete_user
pwnkernel
pwnkernel
main

搜索帮助