https://github.com/utilforever/2024-hspace-rust-linuxkernel
2024년 HSPACE 특강 - Rust 기초 프로그래밍 + 리눅스 커널 프로그래밍
https://github.com/utilforever/2024-hspace-rust-linuxkernel
Last synced: 7 months ago
JSON representation
2024년 HSPACE 특강 - Rust 기초 프로그래밍 + 리눅스 커널 프로그래밍
- Host: GitHub
- URL: https://github.com/utilforever/2024-hspace-rust-linuxkernel
- Owner: utilForever
- License: mit
- Created: 2024-04-27T14:56:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-09T03:50:43.000Z (over 1 year ago)
- Last Synced: 2025-04-14T16:04:36.088Z (about 1 year ago)
- Language: Rust
- Size: 53.1 MB
- Stars: 42
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2024-HSPACE-Rust-LinuxKernel
2024-HSPACE-Rust-LinuxKernel is the material(lecture notes, examples and assignments) repository for learning Rust programming language and making a simple Linux kernel and device driver at [HSPACE](https://hspace.io/) in 2024 Summer.
## Contents
- Week 0 (7/6) [[Lecture]](./1%20-%20Lecture/240706%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%200.pdf)
- Introduction
- Week 1 (7/6, 7/7)
- Part 1 (7/6) [[Lecture]](./1%20-%20Lecture/240706%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%201,%20Day%201.pdf) [[Example]](./2%20-%20Example/240706%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%201,%20Day%201/)
- Key Features of Rust
- Part 2 (7/7) [[Lecture #1]](./1%20-%20Lecture/240707%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%201,%20Day%202,%20Part%201.pdf) [[Lecture #2]](./1%20-%20Lecture/240707%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%201,%20Day%202,%20Part%202.pdf) [[Example]](./2%20-%20Example/240707%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%201,%20Day%202/)
- Fundamental Types
- Onwership and Moves
- Week 2 (7/13, 7/14)
- Part 1 (7/13) [[Lecture]](./1%20-%20Lecture/240713%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%202,%20Day%201.pdf) [[Example]](./2%20-%20Example/240713%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%202,%20Day%201/)
- References
- Part 2 (7/14) [[Lecture]](./1%20-%20Lecture/240714%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%202,%20Day%202.pdf) [[Assignment]](./3%20-%20Assignment/240714%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%202,%20Day%202/) [[Solution]](./4%20-%20Solution/240714%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%202,%20Day%202/)
- Expressions
- Assignment #1
- Week 3 (7/20, 7/21)
- Part 1 (7/20) [[Lecture]](./1%20-%20Lecture/240720%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%203,%20Day%201.pdf)
- Error Handling
- Part 2 (7/21) [[Lecture]](./1%20-%20Lecture/240721%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%203,%20Day%202.pdf) [[Assignment]](./3%20-%20Assignment/240721%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%203,%20Day%202/) [[Solution]](./4%20-%20Solution/240721%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%203,%20Day%202/)
- Crates and Modules
- Assignment #2
- Week 6 (8/17, 8/18)
- Part 1 (8/17)
- Utility Traits
- Assignment #?
- Part 2 (8/18) [[Lecture]](./1%20-%20Lecture/240818%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%206,%20Day%202.pdf) [[Example]](./2%20-%20Example/240818%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%206,%20Day%202/) [[Assignment]](./3%20-%20Assignment/240818%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%206,%20Day%202/) [[Solution]](./4%20-%20Solution/240818%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%206,%20Day%202/)
- Closures
- Assignment #?
- Week 8 (9/21, 9/22)
- Part 1 (9/21) [[Lecture]](./1%20-%20Lecture/240921%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%201.pdf) [[Example]](./2%20-%20Example/240921%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%201/) [[Assignment]](./3%20-%20Assignment/240921%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%201/) [[Solution]](./4%20-%20Solution/240921%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%201/)
- Concurrency
- Assignment #?
- Part 2 (9/22) [[Lecture]](./1%20-%20Lecture/240922%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%202.pdf) [[Example]](./2%20-%20Example/240922%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%202/) [[Assignment]](./3%20-%20Assignment/240922%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%202/) [[Solution]](./4%20-%20Solution/240922%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%208,%20Day%202/)
- Macros
- Assignment #?
- Week 9 (10/5, 10/6)
- Part 1 (10/5) [[Lecture]](./1%20-%20Lecture/241005%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%209,%20Day%201.pdf) [[Example]](./2%20-%20Example/241005%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%209,%20Day%201/)
- Asynchronous Programming, Part 1
- Part 2 (10/6) [[Lecture]](./1%20-%20Lecture/241006%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%209,%20Day%202.pdf) [[Example]](./2%20-%20Example/241006%20-%20Rust%20Basic%20+%20Linux%20Kernel,%20Week%209,%20Day%202/)
- Asynchronous Programming, Part 2
- Assignment #9
## References
- Beginner
* [The Rust Programming Language](https://doc.rust-lang.org/book/)
* [Rust-101 by Ralf Jung](https://www.ralfj.de/projects/rust-101/main.html)
* [Comprehensive Rust](https://google.github.io/comprehensive-rust/)
* [Rustlings](https://github.com/rust-lang/rustlings/)
* [Rust By Example](https://doc.rust-lang.org/stable/rust-by-example/)
* [Exercism - Rust](https://exercism.org/tracks/rust)
* [Book: The Rust Programming Language](http://www.yes24.com/Product/Goods/83075894)
* [Book: Rust in Action](https://www.manning.com/books/rust-in-action)
* [Book: Programming Rust](https://www.oreilly.com/library/view/programming-rust-2nd/9781492052586/)
- Intermediate
* [The Standard Library](https://doc.rust-lang.org/std/index.html)
* [The Edition Guide](https://doc.rust-lang.org/edition-guide/index.html)
* [The Cargo Book](https://doc.rust-lang.org/cargo/index.html)
* [The rustdoc Book](https://doc.rust-lang.org/rustdoc/index.html)
* [The rustc Book](https://doc.rust-lang.org/rustc/index.html)
* [Book: Concurrent Programming](http://www.yes24.com/Product/Goods/108570426)
* [Book: Rust for Rustaceans](https://rust-for-rustaceans.com/)
* [Book: Linux Kernel Programming by Rust](https://wikibook.co.kr/rust-linux-kernel/)
- Advanced
* [The Rust Reference](https://doc.rust-lang.org/reference/index.html)
* [The Rustonomicon](https://doc.rust-lang.org/nomicon/index.html)
* [The Rust Unstable Book](https://doc.rust-lang.org/nightly/unstable-book/index.html)
## How To Contribute
Contributions are always welcome, either reporting issues/bugs or forking the repository and then issuing pull requests when you have completed some additional coding that you feel will be beneficial to the main project. If you are interested in contributing in a more dedicated capacity, then please contact me.
## Contact
You can contact me via e-mail (utilForever at gmail.com). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making.
## License

The class is licensed under the [MIT License](http://opensource.org/licenses/MIT):
Copyright © 2024 [Chris Ohk](http://www.github.com/utilForever).
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.