Confusion in vxfs & ufs


 
Thread Tools Search this Thread
Operating Systems Solaris Confusion in vxfs & ufs
# 1  
Old 10-07-2011
Confusion in vxfs & ufs

Hi All,

I have rootdg encapsulated within Veritas Volume Manager.
Code:
/# vxprint -vg rootdg
TY NAME         ASSOC        KSTATE   LENGTH   PLOFFS   STATE    TUTIL0  PUTIL0
v  rootvol      root         ENABLED  24585216 -        ACTIVE   -       -
v  swapvol      swap         ENABLED  20484288 -        ACTIVE   -       -
v  temp_back    fsgen        ENABLED  73400320 -        ACTIVE   -       -
v  var          fsgen        ENABLED  24585216 -        ACTIVE   -       -
/# fstyp -v /dev/vx/rdsk/bootdg/var | head -1
ufs
/# fstyp -v /dev/vx/rdsk/bootdg/rootvol | head -1
ufs

I just created this new volume temp_back inside rootdg. Since rootdg is encapsulated within Veritas Volume Manager, I am not sure if I should run mkfs or newfs to create new file-system. I am afraid, I should not screw my root thing.
Please help.

Last edited by solaris_1977; 10-07-2011 at 03:33 PM..
# 2  
Old 10-07-2011
vxvm and vxfs are different things... one is a volumemanger and the other a filesystem.
# 3  
Old 10-07-2011
Is the name of the volume group "rootvg" or "bootvg"? You seem to be talking about 2 VGs here.

Go ahead and make the FS in your volume, that won't destroy your other volumes in your DG.

Here's the syntaxe I use:
Code:
mkfs -F FSTYPE -o OPTIONS /dev/vx/rdsk/DGNAME/volumeName

I put largefiles as an option to be able to have files over 2 Gbytes. Might not be needed in your case but I need it most of the times.

You'll then have to mount it and if you want it to be mounted on boot, don't forget to edit your /etc/vfstab.
This User Gave Thanks to plmachiavel For This Post:
# 4  
Old 10-07-2011
Thanks plmachiavel. I am able to do it with your syntax. I am good now.
rootdg and rootdg seems same. vxprint gives me same output for both
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Convert UFS (root) to VxFS

Hi all, How to i use vxfs for my server? Because when i install OS, it is installed with ufs, then after Solaris 10 installation, i proceed to install vxfs. How do i convert all the ufs to vxfs? Or is it what i'm doing is the incorrect way? Please help. :wall: (9 Replies)
Discussion started by: beginningDBA
9 Replies

2. Solaris

Veritas VxVM & Vxfs to SVM and UFS

Hi, I have 2 hosts with Veritas VxVM and VxFS (5.0 MP3_RP2). I need to use the application filesystem's luns from these 2 hosts and mount it on another 2 hosts that are running Solaris 9 09/05 and SVM. Is there resources online or has someone tried this? (4 Replies)
Discussion started by: xor
4 Replies

3. UNIX for Advanced & Expert Users

Veritas VxVM & Vxfs to SVM and UFS

Hi, I have 2 hosts with Veritas VxVM and VxFS (5.0 MP3_RP2). I need to use the application filesystem's luns from these 2 hosts and mount it on another 2 hosts that are running Solaris 9 09/05 and SVM. Is there resources online or has someone tried this? (0 Replies)
Discussion started by: xor
0 Replies

4. Shell Programming and Scripting

Perl - Parentheses & Context confusion

Hi Expert, Could you please explain why below two perl code get different result? Thanks a lot. sub test{ return (2,3,4,5,6,3,4,50); } ($a,$b)=(test); # 3,6 ($a,$b)=test; # 2,3 (2 Replies)
Discussion started by: summer_cherry
2 Replies

5. Solaris

vxfs free space?

Hi, How do I determine the free space below? # vxdg -g msb_db_dg free DISK DEVICE TAG OFFSET LENGTH FLAGS msb_db_dg01 sdb sdb 312475648 316571392 n Thanks! (1 Reply)
Discussion started by: itik
1 Replies

6. Shell Programming and Scripting

Confusion about 1>&2 and 2>&1

Can anybody tell me the difference between 1>&2 and 2>&1? (1 Reply)
Discussion started by: navi
1 Replies

7. SCO

VxFS filesystem

Hello, Am basically working on VxFS filesystem and while tracking the file, I got stuck at one point. As I am able to locate the superblock(it is at offset 1024 from the start of partition). And from superblock I got the sector no. of "OLT extent". By jumping to the sector no where OLT... (1 Reply)
Discussion started by: ghimanshu
1 Replies

8. Solaris

veritas vxfs and ufsdump

hi guys, I am studying for the solaris scsa and i want to practice with ufsdump and restores, fssnaps etc... my question is, i finally found a server with a tape drive attached that i can mess arouund with because its not a critical box. its running solaris 8, and i want to do a ufsdump, but... (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

9. UNIX for Dummies Questions & Answers

vxfs ACL problem

Has anyone had any experience with VXFS and ACL's? For some reason when these two are used together ACL's don't seem to work properly (i.e. sometimes ACL's won't be applied to files in a directory so that when trying to move the directory, the new directory is created but the old directory still... (3 Replies)
Discussion started by: dangral
3 Replies

10. UNIX for Advanced & Expert Users

Procedure to convert UFS to VXFS

Hello ! :confused: Does anyone knows anything about procedure to convert Solaris UFS filesystem to VxFS. Thx, Witt (1 Reply)
Discussion started by: witt
1 Replies
Login or Register to Ask a Question