An open API service indexing awesome lists of open source software.

https://github.com/kumkeehyun/ext2-file-system

EXT2 File system simulating in RAM
https://github.com/kumkeehyun/ext2-file-system

ext2 filesystem simulation

Last synced: 11 months ago
JSON representation

EXT2 File system simulating in RAM

Awesome Lists containing this project

README

          

# Table of Contents
+ [EXT2 File System](#EXT2FileSystem)
+ [How to use](#Howtouse)
+ [Contributors](#Contributors)
+ [Run GDBGUI](#RunGDBGUI)

# EXT2 File System

## How to use

## Contributors

+ KumKeeHyun
+ iamhge

## Run GDBGUI

1. compile using '-g' option

```
gcc -g -o file_name files
```

2. start gdb server

```
gdbserver localhost:port /file_path/file_name
```

3. another terminal

```
gdbgui -g gdb-multiarch
```

4. in gdbgui window

```
file /file_path/file_name

tartget remote:port
```

## 연습장

### 이것은 글자 크기

이것은 본문

>이것은 인용

**이것은 굵게**

***이것은 기울임***

~~이것은 취소선~~

```c
// 이것은 코드

typedef struct {
EXT2_FILESYSTEM *fs;
EXT2_DIR_ENTRY entry;
EXT2_DIR_ENTRY_LOCATION location;
} EXT2_NODE;

int main(int argc, char *argv[])
{
EXT2_NODE wow;

return 0;
}
```