Sponsored Content
Full Discussion: Mknod
Operating Systems HP-UX Mknod Post 302199765 by Perderabo on Tuesday 27th of May 2008 09:54:09 PM
Old 05-27-2008
mknod is a utility to make filesystem objects. In the case of LVM you might do:
mknod /dev/vgxyz/group c 64 0x030000

You can call a volume group vgxyz if you want, but you must have a file called "group" in it. This form of mknod is making a character special file. 64 is the number of the LVM driver. (lsdev can list drivers.) 0x030000 is a unique number that you must pick to identify the volume group to the kernel. To you it's the vgxyz volume group, but to the kernel, it's the 03 volume group. The group file connects /dev/xyz to the number 03. Anytime you do a vgchange or whatever, the vgchange command needs to let the kernel know what's happening and it talks to the group file to do that.

Cameron, you should be using mkfifo to make your fifo's. And fifo's (aka named pipes) have nothing to do with this.
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

mknod

Can someone please tell me what the command mknod does and what it's syntax is? I can't find it in my "Unix for dummies" book or "Unix in s nutshell". I found it in an existing script that I want to copy, but I want to understand what I am doing. The script is going to do a full export of an... (3 Replies)
Discussion started by: bemeeks
3 Replies

2. 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

3. 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

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
VGREDUCE(8)						      System Manager's Manual						       VGREDUCE(8)

NAME
vgreduce - reduce a volume group SYNOPSIS
vgreduce [-a|--all] [-A|--autobackup{y|n}] [-d|--debug] [-h|--help] [-v|--verbose] VolumeGroupName [PhysicalVolumePath...] DESCRIPTION
vgreduce allows you to remove one or more unused physical volumes from a volume group. OPTIONS -a, --all Removes all empty physical volumes if none are given on command line. -A, --autobackup y/n Controls automatic backup of VG metadata after the change ( see vgcfgbackup(8) ). Default is yes. -d, --debug Enables additional debugging output (if compiled with DEBUG). -h, --help Print a usage message on standard output and exit successfully. -v, --verbose Gives verbose runtime information about vgreduce's activities. DIAGNOSTICS
vgreduce returns an exit code of 0 for success and > 0 for error: 1 neither volume group name nor physical volume path(s) on command line 2 invalid volume group name 3 error checking existence of volume group 4 volume group must be active 5 error reading VGDA 6 volume group is not reducable (see vgchange(8)) 7 no physical volume path(s) on command line 8 realloc error 9 malloc error 10 no empty physical volume to reduce volume group by 11 error setting up VGDA for reduce 12 error reducing VGDA in kernel 13 error writing VGDA to physical volume(s) 95 driver/module not in kernel 96 invalid I/O protocol version 97 error locking logical volume manager 98 invalid lvmtab (run vgscan(8)) 99 invalid command line ENVIRONMENT VARIABLES
LVM_AUTOBACKUP If this variable is set to "no" then the automatic backup of VG metadata is turned off. LVM_VG_MAX_BACKUPS This variable determines the backup history depth of kept VGDA copy files in /etc/lvmconf. It can be set to a positive number between 0 and 999. The higher this number is, the more changes you can restore using vgcfgrestore(8). See also lvm(8), vgextend(8) AUTHOR
Heinz Mauelshagen <Linux-LVM@Sistina.com> Heinz Mauelshagen LVM TOOLS VGREDUCE(8)
All times are GMT -4. The time now is 08:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy