vasanthz
Global Moderator
Joined: 28 Aug 2007 Posts: 1744 Location: Tirupur, India
|
|
|
|
Hi,
I am trying to create a file, format it and then mount it at /dev/ path
Code: |
//ALCZFS EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
ALLOC -
DSNAME('OMVS.DEV.ZFS') -
RECORG(LS) -
CYLINDERS SPACE(100 50) -
VOLUME(MAKE03) -
BLKSIZE(4096) -
CATALOG
//*
//FMTZFS EXEC PGM=IOEAGFMT,REGION=0M,
// PARM=('-compat -aggregate OMVS.DEV.ZFS')
//SYSPRINT DD SYSOUT=*
//STDOUT DD SYSOUT=*
//STDERR DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//CEEDUMP DD SYSOUT=*
//*
//* MOUNT EXAMPLE
//*
//ZFSMNT EXEC PGM=IKJEFT1B
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
PROF MSGID WTPMSG
MOUNT FILESYSTEM('OMVS.DEV.ZFS') +
TYPE(ZFS) MODE(RDWR) MOUNTPOINT('/dev/') +
AUTOMOVE
//* |
But get the below error in the mount step,
Code: |
MOUNT FILESYSTEM('OMVS.DEV.ZFS') TYPE(ZFS) MODE(RDWR) MOUNTPOINT('/dev/') AUTOMOVE
BPXF135E RETURN CODE 00000081, REASON CODE 0594003D. THE MOUNT FAILED FOR FILE SYSTEM OMVS.DEV.ZFS |
Manual says
Quote: |
003D JRDirNotFound
A directory in the pathname was not found.
Action: One of the directories specified was not found. Verify that the name specified is spelled correctly. |
But the directory in the path name is root /. There is no other path.
Could you please help me how to resolve this issue |
|