Operating System - HP-UX
1833788 Members
2612 Online
110063 Solutions
New Discussion

Re: Developing a new file system

 
Keith Loepere
New Member

Developing a new file system

I heard a rumor that there is a file system development kit (akin to the device driver development kit) for developing new (kernel) file systems. What would be the necessary pieces to develop a new file system?
3 REPLIES 3
Ravi_8
Honored Contributor

Re: Developing a new file system

hi

to create new file system

#lvcreate -L size(in MB) -n name_of_fs /dev/vgxx/lvolxx
#newfs -F hfs/vxfs /dev/lvolxx/rname_of_fs
#mount /dev/lvolxx/name_of_fs /mount_pt
never give up
Vincenzo Restuccia
Honored Contributor

Re: Developing a new file system

Ravi is right,insert new mount /etc/fstab for automatic mount after reboot.
Volker Borowski
Honored Contributor

Re: Developing a new file system

Keith,

interesting idea, what do you want to develop ?
I think JFS is quite powerfull,
which features do you like to add to it ?

Just curious
Volker