实战
文章平均质量分 63
yaoxinJJJ
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Qemu disk pass through
qemu disk pass through原创 2022-10-05 16:35:12 · 312 阅读 · 1 评论 -
如何设置 proxy
Git proxy[http] proxy = http://10.206.133.47:3128[user] email = name@email.com name = nameAPT PROXYIn file /etc/apt/apt.conf Acquire::http::proxy "http://10.206.133.47:3128/"; Acquire::https::proxy "http://10.206.133.47:3128/"; Acquire::http::No原创 2022-05-07 04:06:34 · 3215 阅读 · 0 评论 -
SPDK 入门
SPDK installation and Hardware checkCompile SPDK $ cd spdk_repo/spdk $ git submodule update --init $ ./configure --enable-debug --enable-lto --with-shared $ makeVerify we have an NVMe device$ lspci | grep "Non-Volatile" 00:0e.0 Non-Vola原创 2022-03-30 15:05:04 · 1837 阅读 · 0 评论 -
Reference
C 语言命令解析命令行参数–getopt和getopt_longSPDK原创 2022-03-02 16:01:52 · 211 阅读 · 0 评论 -
QEMU 安装与使用
这里写自定义目录标题下载并安装qemu下载并安装qemu下载git clone https://gitlab.com/qemu-project/qemu.git安装#!/bin/bashrm -rf buildmkdir buildcd buildsudo apt-get install build-essential zlib1g-dev pkg-config libglib2.0-dev binutils-dev libboost-all-dev autoconf原创 2022-02-01 02:39:16 · 5450 阅读 · 1 评论 -
Bash basic
Bash hello worldCreate a .sh fileemac task.shAdd some commands#!/bin/bashecho "Hello World"给 task.sh 添加 executable 属性By default, any newly created files are not executable regardless of its file extension suffix.chmod +x task.sh执行./原创 2021-12-19 04:04:52 · 248 阅读 · 0 评论 -
如何 编译 uswap
1. 编译 uswap下载 qemu 和 uswap的代码git clone url/to/code修改qemu 的 configure- slirp=""+ slirp="no"-capstone=""+capstone="no"在 qemu directory下运行命令下载需要的包git submodule update --init --recursive运行shell进行编译./build-uswap-and-qemu.sh编译qemu (in q原创 2021-12-18 02:16:00 · 983 阅读 · 0 评论 -
Linux 驱动的第一个程序:hello world | 内核编程 part 1
Linux 驱动的第一个程序:hello world | 内核编程 part 11.内容摘要前提条件hello world程序如何 编译 一个 modul加载和卸载一 个 模块2.前提条件2.1 Kernel headers当前内核的内核头文件:通常,除非您已编译自己定制的内核,否则您将无法在系统上调用该 头文件2.1.1获得头文件的两种方式编译 并安装 自己定制的内核:参考我上一篇帖子输入以下命令从 网上下载# Arch, my fav :)$ pacman -S lin原创 2021-04-20 05:14:47 · 870 阅读 · 0 评论 -
如何 在 linux | ubuntu 安装 使用 更新 visual studio code
摘要如何安装 visual studio code如何 在命令行中 打开 vsc如何安装安装所需要的 依赖关系sudo apt updatesudo apt install software-properties-common apt-transport-https wget引入Microsoft GPG keywget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -原创 2021-04-05 21:44:56 · 1888 阅读 · 0 评论 -
Linux 内核 下载 编译 安装 2021 ubuntu
Linux 内核 下载 编译 安装 ubuntu 2021摘要为什么要进行 调试 安装自定义的内核Linux 内核 下载Linux 内核 解压linux 内核 配置linux 内核编译linux 内核 安装1. 为什么要进行 调试 安装自定义的内核对 内核 进行开发去除 内核中 无用的模块学习 如何 对内核进行 安装2.下载内核推荐下载地址使用 git clone 命令 下载最新的 linux 内核 到本地git clone git://git.kerne原创 2021-04-04 23:51:19 · 4073 阅读 · 5 评论 -
Wildcard (Java)
wikiA bounded wildcard is one with either an upper or a lower inheritance constraint. The bounds can be both class and interface types. Upper bounds are expressed using the extends keyword and lower ...原创 2020-03-25 01:21:46 · 321 阅读 · 0 评论 -
HW 3: Hashing| CS 61B Data Structures, Spring 2019
equalsAs mentioned in class, writing a proper equals method is a little tricker than it might sound at first blush. According to the Java language specification, your equals method should have the fo...原创 2020-03-25 01:07:38 · 283 阅读 · 0 评论 -
clab8 总结|CS 61B Data Structures, Spring 2019
实战总结Lab 8: HashMap/****************************************************************************** * Compilation: javac SeparateChainingHashST.java * Execution: java SeparateChainingHashST &l...原创 2020-03-25 00:55:03 · 610 阅读 · 0 评论
分享