Questions tagged [minix]

is a Unix-like computer operating system based on a microkernel architecture created by Andrew S. Tanenbaum for educational purposes.

MINIX is a Unix-like computer operating system based on a microkernel architecture created by Andrew S. Tanenbaum for educational purposes; MINIX also inspired the creation of the Linux kernel.

MINIX (from "mini-Unix") was first released in 1987, with its complete source code made available to universities for study in courses and research. It has been free and open source software since it was re-licensed under the BSD license in April 2000.

Sizeable subset of Minix source code is also published in the book by its creator Design and Implementation of Operating Systems.

230 questions
-2
votes
2 answers

How do I show the time of a process in minix, using the library time.h?

time_t t; printf("%f\n",time(&t)); it throws "Can not print float number"
-2
votes
1 answer

fork() and Execve, minix system C, core dumps

I'm learning C at the moment and have tasked myself with creating a shell within a Minix virtual machine, I'm doing this by using the library functions available to me already in Minix, such as ls, cd, ect... I've encountered a problem where after…
Ben Bowen
  • 174
  • 1
  • 13
-2
votes
1 answer

Making a subdirectory with the mkdir posix command

The latest assignment in my Operating Systems class required us to create a subdirectory(named tmpFolder) using the mkdir command, with no context whatsoever. The code I currently have is based off of the Minix3 appendix and the manual for mkdir …
Zach
  • 640
  • 1
  • 8
  • 20
-2
votes
2 answers

Compile error in cc

At the very beggining of my main method I have main(int argc, char *argv[]){ if(argc!=2){ printf("not enough arguments"); exit(-1); } /* rest of code */ } But compiling with cc prints line 11 } missing before int line 12 argv undefined line…
FoxeyYy
  • 1
  • 1
-4
votes
4 answers

how to execute c file in minix operating system

Could someone explain to me what is a.out and how it works? This is the first time I am using Unix (minix). I have one folder with two files filename.c and test.sh (containing three lines starting with ./a.out and some f=values). I just want to…
user2085339
  • 145
  • 2
  • 9
1 2 3
15
16