newfs – i where to look for changed inode density


 
Thread Tools Search this Thread
Operating Systems Solaris newfs – i where to look for changed inode density
# 1  
Old 05-28-2009
newfs – i where to look for changed inode density

Hi All,

While creating the ufs file system with newfs - i where can I see the change, I mean if the density of inode has been increased where I can see it.

I tried with fstyp –v <slice> however not sure as where to look for the information.

Will appreciate if I can get some help from you all!

Thanks

-----Post Update-----

Hey i got the answer for this question with the help of man df

we can use

#df -F ufs -o i <slice> to find the details related to used and free inode .

Thanks

Last edited by kumarmani; 05-28-2009 at 04:12 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Unable to create file system (newfs)

Hi I have the following cenario: I have requested a LUN from the NetApp to create a file system, and the netapp admin provide me with one as you can see below, but after following all the steps, I could not create a file system on the device: # format Searching for disks...done ... (11 Replies)
Discussion started by: fretagi
11 Replies

2. Shell Programming and Scripting

Script to echo "File permissions or ownership changed from required " when accidentally changed.

Hi All, I have to work in the late nights some times for server maintenance and in a hurry to complete I am accidentally changing ownership or permission of directories :( which have similar names ( /var in root and var of some other directory ).:confused: Can some one suggest me with the... (1 Reply)
Discussion started by: shiek.kaleem
1 Replies

3. Solaris

stepping through newfs

On a RAID-5 solaris 9 server, we replaced a bad disk. Upon boot up, a mount point failed: vxvm:vxvol: ERROR: Volume IQ_Staging is not startable; some subdisks are unusable and the parity is stale With Sun tech support, we tried vxvol start and vxvol resync, but it remained... (3 Replies)
Discussion started by: abstractrick
3 Replies

4. Shell Programming and Scripting

awk - calculation of probability density

Hi all! I have the following problem: I would like to calculate using awk a probability of appearing of a pair of numbers x and y. In other words how frequently do these numbers appear? In the case of only one integer number x ranged for example from 1 to 100 awk one liner has the form: awk... (4 Replies)
Discussion started by: jarowit
4 Replies

5. Solaris

difference between mkfs and newfs

hi what is the difference between mkfs and newfs (2 Replies)
Discussion started by: madhudeepan
2 Replies

6. Solaris

newfs

Hi, can someone please help me create a newfs on my unix server ? thankyou venhart (7 Replies)
Discussion started by: venhart
7 Replies

7. Solaris

why cant i do a newfs?

what do you make of this ?? all I want to do is newfs a slice of disk..... # uname -a SunOS myhost 5.10 Generic_120011-14 sun4u sparc SUNW,Sun-Fire-V240 # cat /etc/release Solaris 10 8/07 s10s_u4wos_12b SPARC Copyright 2007 Sun Microsystems, Inc. All... (4 Replies)
Discussion started by: robsonde
4 Replies

8. UNIX for Advanced & Expert Users

newfs hotspares: solaris volume manager

I'm running sun volume manager on solaris 9. I have two hotspares and are currently on standby. Both are not being utilized. Can I newfs both of them? Do I need to deleted the hostpares first, then newfs? hsp002: 2 hot spares Device Status Length Reloc ... (3 Replies)
Discussion started by: xnightcrawl
3 Replies

9. UNIX for Dummies Questions & Answers

newfs, mounting, new partitions, HELP!!

Looking for a good online primer/intro to creating a new file system, mounting, and eventually using NFS. Do you use newfs then mount or mount then newfs, how do you work with a new partition to create a new file system.... it's all a bit confusing. The man pages are a little too verbose and... (1 Reply)
Discussion started by: charliewade
1 Replies
Login or Register to Ask a Question
FDFORMAT(1)						    BSD General Commands Manual 					       FDFORMAT(1)

NAME
fdformat -- format floppy disks SYNOPSIS
fdformat [-F fill] [-f fmt] [-s fmtstr] [-nqvy] device DESCRIPTION
The fdformat utility formats a floppy disk at device, where device may either be given as a full path name of a device node for a floppy disk drive (e.g. /dev/fd0), or using an abbreviated name that will be looked up under /dev (e.g. ``fd0''). The options are as follows: -F fill Use fill as the fill byte for newly formatted sectors. The fill argument must be a number in the range 0 through 255 using common C language notation. The default value is ``0xf6''. -f fmt Specify the density settings for a fmt kilobyte format, as described in fdcontrol(8). -s fmtstr Specify the density settings using explicit parameters, as described in fdcontrol(8). -n Do not verify floppy after formatting. -q Suppress any normal output from the command, and do not ask the user for a confirmation whether to format the floppy disk at device. -v Do not format, verify only. -y Do not ask for confirmation whether to format the floppy disk but still report formatting status. For non-autoselecting subdevices, neither -f fmt nor -s fmtstr may be specified, since the preconfigured media density settings from the ker- nel driver will always be used. However, if device is a device with automatic media density selection (see fdc(4)), both methods can be used to override the density settings for the newly formatted medium (without permanently changing the density settings of device). If the -q flag has not been specified, the user is asked for a confirmation of the intended formatting process. In order to continue, an answer of 'y' must be given. Note that fdformat does only perform low-level formatting. In order to create a file system on the medium, see the commands newfs(8) for a UFS file system, or newfs_msdos(8) for an MS-DOS (FAT) file system. EXIT STATUS
An exit status of 0 is returned upon successful operation. Exit status 1 is returned on any errors during floppy formatting, and an exit status of 2 reflects invalid arguments given to the program (along with an appropriate information written to diagnostic output). DIAGNOSTICS
Unless -q has been specified, a single letter is printed to standard output to inform the user about the progress of work. First, an 'F' is printed when the track is being formatted, then a 'V' while it is being verified, and if an error has been detected, it will finally change to 'E'. Detailed status information (cylinder, head and sector number, and the exact cause of the error) will be printed for up to 10 errors after the entire formatting process has completed. SEE ALSO
fdc(4), fdcontrol(8), newfs(8), newfs_msdos(8) HISTORY
The fdformat utility has been developed for 386BSD 0.1 and upgraded to the new fdc(4) floppy disk driver. It later became part of the FreeBSD 1.1 system. Starting with FreeBSD 5.0, it uses the unified density specifications as described in fdcontrol(8). AUTHORS
The program has been contributed by Jorg Wunsch, Dresden, with changes by Serge Vakulenko and Andrey A. Chernov, Moscow. BSD
December 25, 2001 BSD