Tagged Questions
The mknod tag has no wiki summary.
1
vote
1answer
593 views
Create a device node in code
I am writing a module for the linux kernel and I want to create some device nodes in the init function
int init_module(void)
{
Major = register_chrdev(0, DEVICE_NAME, &fops);
// Now I want ...
1
vote
2answers
393 views
Using mknod on Ubuntu in c program
I am trying to make a c program where i am using mknod command like
#include<stdio.h>
#include<fcntl.h>
#include<string.h>
char info[50];
main() {
int fdr;
int rc = ...
1
vote
2answers
153 views
is mknod portable? if not, what is the alternative?
I would like to use mknod in my code to create a file, but man says, that
The only portable use of mknod() is to create a FIFO-special file. If mode is not S_IFIFO or dev is not 0, the ...
1
vote
2answers
486 views
Debugging a system call from FUSE
I'm writing a FUSE filesystem that does some mapping through sqlite, then passes the calls through to the underlying filesystem (somewhat of an expansion on bbfs). It started giving me trouble when I ...
1
vote
2answers
167 views
mknod(2) requires superuser on FreeBSD what to use instead?
I am porting from Linux to FreeBSD and have run into ::mknod() failing with errno:
[EINVAL] Creating anything else than a block or character spe-
cial file (or a ...
1
vote
2answers
118 views
Is there an OS X equivalent of FreeBSD's make_dev() function?
I'm trying to port some code from FreeBSD to OS X. The code is fairly low-level and it creates a number of special device files using make_dev() and controls functionality using functions like ...
0
votes
2answers
426 views
Redirecting stdin through a FIFO
I'm running a server app (written in Java) under GNU/Linux which takes input (from stdin, I guess) and interprets it to run some commands. I dont want to run the app inside a terminal window (I'd like ...
0
votes
0answers
91 views
Linux special file [closed]
I am trying to create the file mysql.sock as with the following permissions
srwxrwxrwx 1 mysql mysql 0 2009-10-07 09:55 mysqld.sock
I know this is done with mknod, but I am not sure of the ...