Skip to content

Commit 9fdaaa2

Browse files
committed
Fix README
1 parent eafddfd commit 9fdaaa2

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[![FEMU Version](https://img.shields.io/badge/FEMU-v9.0-brightgreen)](https://img.shields.io/badge/FEMU-v9.0-brightgreen)
2-
[![Build Status](https://travis-ci.com/vtess/FEMU.svg?branch=master)](https://travis-ci.com/vtess/FEMU)
2+
[![Build Status](https://travis-ci.com/MoatLab/FEMU.svg?branch=master)](https://travis-ci.com/MoatLab/FEMU)
33
[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
44
[![Platform](https://img.shields.io/badge/Platform-x86--64-brightgreen)](https://shields.io/)
55

66
```
7-
______ ______ __ __ _ _
7+
______ ______ __ __ _ _
88
| ____| ____| \/ | | | |
99
| |__ | |__ | \ / | | | |
1010
| __| | __| | |\/| | | | |
1111
| | | |____| | | | |__| |
1212
|_| |______|_| |_|\____/ -- A QEMU-based and DRAM-backed NVMe SSD Emulator
1313
1414
```
15-
15+
1616
Contact Information
1717
--------------------
1818

@@ -27,8 +27,8 @@ Please consider citing our FEMU paper at FAST 2018 if you use FEMU. The bib
2727
entry is
2828

2929
```
30-
@InProceedings{Li+18-FEMU,
31-
Author = {Huaicheng Li and Mingzhe Hao and Michael Hao Tong
30+
@InProceedings{Li+18-FEMU,
31+
Author = {Huaicheng Li and Mingzhe Hao and Michael Hao Tong
3232
and Swaminathan Sundararaman and Matias Bj{\o}rling and Haryadi S. Gunawi},
3333
Title = "The CASE of FEMU: Cheap, Accurate, Scalable and Extensible Flash Emulator",
3434
Booktitle = {Proceedings of 16th USENIX Conference on File and Storage Technologies (FAST)},
@@ -42,7 +42,7 @@ Year = {2018}
4242
Research Papers using FEMU
4343
--------------------------
4444

45-
**Please Check the growing list of research papers using FEMU [here](https://github.com/vtess/FEMU/wiki/Research-Papers-using-FEMU), including papers at ASPLOS, OSDI, SOSP and FAST, etc.**
45+
**Please Check the growing list of research papers using FEMU [here](https://github.com/MoatLab/FEMU/wiki/Research-Papers-using-FEMU), including papers at ASPLOS, OSDI, SOSP and FAST, etc.**
4646

4747

4848

@@ -105,7 +105,7 @@ Installation
105105
dependencies can be installed by following instructions below:
106106

107107
```bash
108-
git clone https://github.com/vtess/femu.git
108+
git clone https://github.com/MoatLab/femu.git
109109
cd femu
110110
mkdir build-femu
111111
# Switch to the FEMU building directory
@@ -125,7 +125,7 @@ Installation
125125
FEMU binary will appear as ``x86_64-softmmu/qemu-system-x86_64``
126126

127127
**Tested host environment** (For successful FEMU compilation):
128-
128+
129129
| Linux Distribution | Kernel | Gcc | Ninja | Python |
130130
| :--- | :---: | --- | --- | --- |
131131
| Gentoo | 5.10 | 9.3.0 | 1.10.1 | 3.7.9 |
@@ -134,7 +134,7 @@ Installation
134134
| Ubutnu 22.04.2 | 5.15.0 | 11.3.0 | 1.10.1 | 3.10.6 |
135135

136136
**Tested VM environment** (Whether a certain FEMU mode works under a certain
137-
guest kernel version):
137+
guest kernel version):
138138

139139
| Mode \ Guest Kernel | 4.16 | 4.20 | 5.4 | 5.10 | 6.1 | 6.9
140140
| :--- | :---: | -- | -- | -- | -- | --
@@ -196,17 +196,17 @@ GRUB_SERIAL_COMMAND="serial --unit=0 --speed=115200 --word=8 --parity=no --stop=
196196
```
197197

198198
Still in the VM, update the grub
199-
199+
200200
```
201201
$ sudo update-grub
202202
$ sudo shutdown -h now
203203
```
204-
204+
205205
Now you're ready to `Run FEMU`. If you stick to a Desktop version guest OS,
206206
please remove "-nographics" command option from the running script before
207207
running FEMU.
208208

209-
209+
210210
4. Login to FEMU VM
211211

212212
- If you correctly setup the aforementioned configurations, you should be
@@ -216,7 +216,7 @@ $ sudo shutdown -h now
216216
guest VM port `22`, thus, after you install and run `openssh-server` inside
217217
the VM, you can also ssh into the VM via below command line. (Please run it
218218
from your host machine)
219-
219+
220220
```
221221
$ ssh -p8080 $user@localhost
222222
```
@@ -237,7 +237,7 @@ Run FEMU
237237

238238
- If you intend to emulate a larger VM (more vCPUs and DRAM) and an SSD with
239239
larger capacity, make sure refer to the resource provisioning tips
240-
[here](https://github.com/vtess/FEMU/wiki/Before-running-FEMU).
240+
[here](https://github.com/MoatLab/FEMU/wiki/Before-running-FEMU).
241241

242242
### 1. Run FEMU as blackbox SSDs (``Device-managed FTL`` or ``BBSSD`` mode) ###
243243

@@ -280,7 +280,7 @@ In this ``nossd`` mode, no SSD emulation logic (either blackbox or whitebox
280280
emulation) will be executed. Base NVMe specification is supported, and FEMU in
281281
this case handles IOs as fast as possible. It can be used for basic performance
282282
benchmarking, as well as fast storage-class memory (SCM, or Intel Optane SSD)
283-
emulation.
283+
emulation.
284284

285285
### 4. Run FEMU as NVMe ZNS (Zoned-Namespace) SSDs (``ZNSSD`` mode) ###
286286

@@ -299,8 +299,8 @@ Stay tuned.
299299

300300
### Contributing ###
301301

302-
Github [``issue``](https://github.com/vtess/FEMU/issues) and [``pull
303-
request``](https://github.com/vtess/FEMU/pulls) are preferred. Do let
302+
Github [``issue``](https://github.com/MoatLab/FEMU/issues) and [``pull
303+
request``](https://github.com/MoatLab/FEMU/pulls) are preferred. Do let
304304
us know if you have any thoughts!
305305

306306
### Acknowledgement ###
@@ -313,5 +313,5 @@ gone far beyond what prior platforms can achieve in terms of ``performance``,
313313
FEMU's NVMe controller logic is based on QEMU/NVMe, LightNVM/QEMU and ZNS/QEMU.
314314

315315

316-
### For more detail, please checkout the [Wiki](https://github.com/vtess/femu/wiki)!
316+
### For more detail, please checkout the [Wiki](https://github.com/MoatLab/femu/wiki)!
317317

0 commit comments

Comments
 (0)