How to Create File Systems?
After creating Disk Partition, we should create File System and Mount the file file system.
Step 1. Create a file system for each slice.
# newfs /dev/rdsk/cwtxdysz
where /dev/rdsk/cwtxdysz is the raw device for the file system to be created.
Step 2. Create a Directory
# mkdir
Step 3. Verify the new file system by mounting.
# mount /dev/dsk/cwtxdysz /
# ls
Post a Comment