- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mknod problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:29 AM
07-29-2004 01:29 AM
mknod problem
Can anyone help, I have a K460 install with HP Unix 10.20 attach with a HASS. There is 4 x 18GB harddisk on the HASS. I'm trying to create new vg on the 4 x 18GB with sam or command line. I get error message mknod"arg count usage" mknod_name b | | c major minor mknod name p . What this this error mean??
Please advice??
Regards
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:40 AM
07-29-2004 01:40 AM
Re: mknod problem
Thanks,
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:40 AM
07-29-2004 01:40 AM
Re: mknod problem
Did you have a space after "c"
mknod /dev/vg52/group c 64 0x4c0000
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:42 AM
07-29-2004 01:42 AM
Re: mknod problem
for a volume group it should be
cd /dev/vgXX
mknod group c 64 0x0N0000
where XX is the volume group number, and N is a unique hex value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:42 AM
07-29-2004 01:42 AM
Re: mknod problem
mkdir /dev/vg_name
mknod /dev/vg_name/group c 64 0x..0000
where vg_name is replaced by the name of the vg you plan to create and .. in 0x..000 is 2 digit number identifying the VG. This number must be uniq for all /dev/vgXXX/group files.
It seems that the SAM running on your server is not making a good mknod command. Maybe you are trying to give your vg a bad name...
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:46 AM
07-29-2004 01:46 AM
Re: mknod problem
#pvcreate -f /dev/rdsk/cxtyd0
#pvcreate -f /dev/rdsk/cxtyd1
#pvcreate -f /dev/rdsk/cxtyd2
#pvcreate -f /dev/rdsk/cxtyd3
#mkdir -p /dev/vg04
where: vg04 must be unique
#mknod /dev/vg04/group c 64 0x040000
where: minor number 0x040000 must be unique
#vgcreate vg04 /dev/dsk/cxtyd0 /dev/dsk/cxtyd1 /dev/dsk/cxtyd2 /dev/dsk/cxtyd3
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 01:52 AM
07-29-2004 01:52 AM
Re: mknod problem
Use lsdev to determine the major number of the device drivers installed.
Your command syntax is incorrect.
Post your command here and we can advise you further.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 02:14 AM
07-29-2004 02:14 AM
Re: mknod problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 02:46 AM
07-29-2004 02:46 AM
Re: mknod problem
steps for creation of VG are following
pvcreate /dev/rdsk/c0tXd0 - PV creation
mkdir /dev/vg01 - vg dir
mknod /dev/vg01/group c 64 0x010000 - VG
control file
c - character device
64- major# for LVM allways
64,info from lsdev
01- vg number in hex
0000 - allways this
vgcreate vg01 /dev/dsk/c0t8d0 dev/dsk/c0t11d0
- vg creation
lvcreate -L 3000 vg01 - lv creation
newfs -F vxfs /dev/vg01/rlvol1 - fs creation
mkfs -m /dev/vg01/lvol1 - fs checking
try it and post results
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 02:46 AM
07-29-2004 02:46 AM
Re: mknod problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 02:48 AM
07-29-2004 02:48 AM