minix os

安装及下载

https://blog.csdn.net/Wanli_Xing/article/details/51992248

基本软件

https://blog.csdn.net/crazy_scott/article/details/79424933

在线更新软件仓库元数据,输入 pkgin update
在线安装git版本控制器,输入 pkgin install git-base
在线安装SSH,输入 pkgin install openssh 重启后就好使了
在线安装VIM,输入 pkgin install vim
在线安装clang编译器, 输入 pkgin install clang
在线安装运行链接库,输入 pkgin install binutils

c语言

https://www.runoob.com/cprogramming/c-memory-management.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>

// gcc hello.c -o main
// sh main
int main()
{
/* 我的第一个 C 程序 */
printf("Hello, World! \n");
int i = 0;
while (i<100)
{
i++;
printf("%d ", i);
if(i%8==0){
printf("\n");
}
}
printf("\n");

return 0;
}