kosmos
Небольшая 32-битная операционная система, написанная на C + ASM
파일 탐색기
- add_api_function.md
- api.drawio
- api.pdf
- internal_api.md
- internal_functions.md
- README.md
- syscall_functions.md
- syscalls.md
- development.md
- driver_connect.drawio
- driver_connect.pdf
- driver_functionality.md
- driver_functionality.pdf
- driver_work.drawio
- function_specification.md
- README.md
- README.md
- logo.svg
- logo_ascii_art.txt
- logo_black.svg
- logo_outline.svg
- os_arch.drawio
- os_arch.png
- os_boot.drawio
- os_boot.png
- README.md
- grub.cfg
- colorama.c
- device.h
- io.c
- io.h
- syscall.h
- syscall.S
- term2.c
- terminal.c
- uptime.c
- program_base.c
- program_linker.ld
- api.c
- api.h
- api_handler.asm
- general_functions.c
- general_functions.h
- kernel_functions.c
- kernel_functions.h
- userspace_if.c
- userspace_if.h
- ata.c
- ata.h
- Makefile
- ata_drive.c
- ata_drive.h
- Makefile
- display.c
- display.h
- Makefile
- fat.c
- fat.h
- Makefile
- keyboard.c
- keyboard.h
- keyboard_handler.asm
- Makefile
- Makefile
- mbr.c
- mbr.h
- Makefile
- pci.c
- pci.h
- Makefile
- pit.c
- pit.h
- pit_handler.asm
- driver_list.c
- driver_list.h
- Makefile
- device_manager.c
- device_manager.h
- driver_manager.c
- driver_manager.h
- memory_manager.c
- memory_manager.h
- vfs.c
- vfs.h
- gdt.asm
- gdt.h
- IDT_PIC.c
- IDT_PIC.h
- kernel.c
- panic.c
- panic.h
- leg_types.c
- leg_types.h
- pci_types.c
- pci_types.h
- virt_types.c
- virt_types.h
- array.c
- array.h
- asm.asm
- asm.h
- ata.h
- block.h
- device.h
- driver.h
- fat12.h
- io.c
- io.h
- memory.c
- memory.h
- partition.h
- pci.h
- string.c
- string.h
- time.c
- time.h
- types.h
- vfs.h
- linker.ld
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE
- Makefile
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
링크
예시
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
tar
설명 보기 ▼
tar
아카이브 유틸리티.
종종 `gzip` 또는 `bzip2`와 같은 압축 방법과 결합하여 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/tar/manual/tar.html>.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
g[z]ipped 아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
디렉토리에서 상대 경로를 사용하여 g[z]ipped (압축된) 아카이브 생성:
// repository documentation
Was this content helpful?
(0 ratings)
