0% found this document useful (0 votes)
113 views1 page

Ufs Filesystem Greater Than 1TB

This document provides instructions for growing a UFS file system to greater than 1TB on Solaris 10. It explains that the file system must have been created with the -T option using newfs in order to support expansion beyond 1TB. The solution is to back up the data, recreate the file system using newfs -T, and then restore the backup data to the new multi-terabyte file system. Checking the file system type with fstyp will confirm if it supports expansion beyond 1TB by looking for the word "decade" in the output.

Uploaded by

Mohaideen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
113 views1 page

Ufs Filesystem Greater Than 1TB

This document provides instructions for growing a UFS file system to greater than 1TB on Solaris 10. It explains that the file system must have been created with the -T option using newfs in order to support expansion beyond 1TB. The solution is to back up the data, recreate the file system using newfs -T, and then restore the backup data to the new multi-terabyte file system. Checking the file system type with fstyp will confirm if it supports expansion beyond 1TB by looking for the word "decade" in the output.

Uploaded by

Mohaideen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Description

Platform
Category

:
:
:

Growing a File System Greater than 1TB


Solaris 10
How-To

Problem
Today i got a task about a resize. I have to grow a ufs filesystem more than 1 tb. I got the below error
message
"File system was not set up with the multi-terabyte format." "Its size cannot be increased to a
terabyte or more."
Cause
Attempted to expand a file system that was not created by using the newfs -T command.
Solution

Back up the data for the file system that you want to expand to greater than 1 terabyte.
Re-create the file system by using the newfs command to create a multiterabyte file system.
Restore the backup data into the newly created file system.

When creating a new UFS filesystem originally smaller than 1TB you must use the -T option with newfs
so ensure the filesystem can extended greater than 1TB when required.
# newfs -T /dev/rdsk/c#t#d#s#
In my experience i learned that a ufs filesystem needs to be created with multi-terabyte support at
beninning or this task will require a new filesystem creation !
# fstyp -v /dev/rdsk/c2t0d0s0 | head -2
ufs
magic 11954 format dynamic time Wed Feb 22 15:41:04 2012

# fstyp -v /dev/rdsk/c2t0d0s0 | head -2


ufs
magic decade format dynamic time Wed Feb 22 17:05:38 2012
So when decade exists we have a multi-tera support.

You might also like