Sponsored Content
Full Discussion: mknod
Top Forums UNIX for Dummies Questions & Answers mknod Post 23777 by LivinFree on Friday 28th of June 2002 07:09:36 PM
Old 06-28-2002
Did you try the command man mknod?
 

5 More Discussions You Might Find Interesting

1. Programming

mknod system call to clone /dev/null

I'm trying to use the "mknod" call in C to create a clone of /dev/null. I am stumped as to the final parameter I should provide to "mknod()". I am supposed to give it a type dev_t, which specifies a major & minor number. I want to specify major 3, minor 1, but how can I do this? dev_t seems to... (2 Replies)
Discussion started by: nathan
2 Replies

2. Solaris

Help:NFS mknod failed

this is existing issue for this nfs client, which mounts windows exported file system, and this is only one UNIX box has this problem, other boxes are fine. Here is from messages file. Jan 24 03:11:10 venus nfs: NFS mknod failed for server arc: error 2 (RPC: Can't decode result) Jan... (0 Replies)
Discussion started by: steeles
0 Replies

3. HP-UX

Mknod

Hey guys i dont quite understand mknod, can anyone explain it to me and what is its purpose in LVM. (4 Replies)
Discussion started by: sbn
4 Replies

4. UNIX for Dummies Questions & Answers

Info regarding mknod -p

Hello All, Friends i know mknod with -p option is used to create FIFO special file.:p But i want to know some circumstance/scenario where these are used.:wall: Actually i want to know where i can use it in real time. Please advise.:) (3 Replies)
Discussion started by: Bibhudatta
3 Replies

5. AIX

What is mknod file present in /etc folder in AIX server used for ?

Hi Guys, On my AIX server , I have this file "mknod" present in the /etc/ directory. When i try opening it , I dont find any ascii characters. It shows some encryption/binary format which is not readable. Is it any executable ? what is the purpose of having this file in etc folder? what if... (2 Replies)
Discussion started by: DBTuner
2 Replies
explain_mknod_or_die(3) 				     Library Functions Manual					   explain_mknod_or_die(3)

NAME
explain_mknod_or_die - create a special or ordinary file and report errors SYNOPSIS
#include <libexplain/mknod.h> void explain_mknod_or_die(const char *pathname, mode_t mode, dev_t dev); int explain_mknod_on_error(const char *pathname, mode_t mode, dev_t dev); DESCRIPTION
The explain_mknod_or_die function is used to call the mknod(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_mknod(3) function, and then the process terminates by calling exit(EXIT_FAILURE). The explain_mknod_on_error function is used to call the mknod(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_mknod(3) function, but still returns to the caller. pathname The pathname, exactly as to be passed to the mknod(2) system call. mode The mode, exactly as to be passed to the mknod(2) system call. dev The dev, exactly as to be passed to the mknod(2) system call. RETURN VALUE
The explain_mknod_or_die function only returns on success, see mknod(2) for more information. On failure, prints an explanation and exits, it does not return. The explain_mknod_on_error function always returns the value return by the wrapped mknod(2) system call. EXAMPLE
The explain_mknod_or_die function is intended to be used in a fashion similar to the following example: explain_mknod_or_die(pathname, mode, dev); SEE ALSO
mknod(2) create a special or ordinary file explain_mknod(3) explain mknod(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2009 Peter Miller explain_mknod_or_die(3)
All times are GMT -4. The time now is 05:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy