Adding a disk


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory Adding a disk
# 1  
Old 05-12-2009
Adding a disk

Recently added a disk to a clariion array system, binded it as a raid 5, now I have no clue how to see it in dg-unix. I want to add it to a current filesystem, and now i'm down river without a paddle.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Adding disk to my lpar

hi all i have entered Aix environment 4 months had experienced in linux what i am facing is i am unable to do sort of RnD with aix like installation on my own, creating vgs managing networks, the VIOS, storage,lpars, So we have a setup here almost all are in live production environment with... (4 Replies)
Discussion started by: vax
4 Replies

2. AIX

Adding New Hard Disk

Hi, On P5 I would like to add hard drive, currently 2 hard disk are already exists, would like to add one more, 2 Slots are emtpy, I would like to know how to find out wheather adapter is attached to that 2 free slot using command. (7 Replies)
Discussion started by: manoj.solaris
7 Replies

3. Solaris

Adding Extra Hard Disk

Hi Solaris users - I have an Ultra10 SPARC machine, with IIe processor. To prepare for the Solaris10 admin exam PartII I need to set up the metadb/mirroring in my machine, but do not know how to do this properly. I need this to practice the mirroring tasks. If anyone could help it would be... (3 Replies)
Discussion started by: patcom
3 Replies

4. Solaris

Error on adding disk in Ldoms

I have LDom running on one of my T5220 server running soalris 10u6. When i try to add a a virtual disk whose backend is ZFS i get following error. # ldm add-vdsdev /dev/zvol/dsk/newpool/ldom2/zdisk1 zdisk1@primary-vds0 # ldm add-vdisk zdisk1 zdisk1@primary-vds0 ldom2 VIO configure request... (0 Replies)
Discussion started by: fugitive
0 Replies

5. Solaris

OS not recognize the new disk while adding

Hi all, I tried to add the new disk into veritas control.but the OS/veritas is not recognize the disk.so how i can know disk status or the disk added or not into veritas?please help me out step by step procedure.i would really thankful to all. regards Krishna (4 Replies)
Discussion started by: murthy76
4 Replies

6. HP-UX

disk adding through lvm

Hi dear(s) Can u explain how to add a disk through lvm with commands. I need to add a 9 gb scsi HS disk to a Hp D class 9000 server. (2 Replies)
Discussion started by: sreekumar.R
2 Replies

7. Solaris

adding new disk to cluster

Dear all , I am new to sun cluster and i having a problem adding a disk to a disk group . My platfrom consists of a clustered E6900 SUN server and an EMC DX1000 storage . the disk group that iam trying to add the disk to is shared group , whwen i run vxdisk list i get in status "online... (2 Replies)
Discussion started by: ppass
2 Replies

8. Filesystems, Disks and Memory

adding disk to ultra10

I enquired before about adding another disk to an ultra 10... and was told it was possible... Well - since then I got my hands on another ultra 10 - and have taken the disk out of that one... I should be able to connect it up - but I am wondering - should this be mounted in any partiulcar... (2 Replies)
Discussion started by: frustrated1
2 Replies

9. Filesystems, Disks and Memory

Adding hard Disk

Hi all, I am using SCO Openserver V and I want to add one more harddisk (/dev/hd1) Hw can I do it? (1 Reply)
Discussion started by: skant
1 Replies

10. UNIX for Dummies Questions & Answers

Adding a disk to an AIX box

I have been asked to look at an AIX box that the owner (not a technical person) installed a new SCSI disk into, but cannot figure out how to build volumes or file systems on. It has been years since I messed with AIX, and I remember enough to know that it isn't like Solaris. To make things... (1 Reply)
Discussion started by: 98_1LE
1 Replies
Login or Register to Ask a Question
xfs_freeze(8)                                                 System Manager's Manual                                                xfs_freeze(8)

NAME
xfs_freeze - suspend access to an XFS filesystem SYNOPSIS
xfs_freeze -f | -u mount-point DESCRIPTION
xfs_freeze suspends and resumes access to an XFS filesystem (see xfs(5)). xfs_freeze halts new access to the filesystem and creates a stable image on disk. xfs_freeze is intended to be used with volume managers and hardware RAID devices that support the creation of snapshots. The mount-point argument is the pathname of the directory where the filesystem is mounted. The filesystem must be mounted to be frozen (see mount(8)). The -f flag requests the specified XFS filesystem to be frozen from new modifications. When this is selected, all ongoing transactions in the filesystem are allowed to complete, new write system calls are halted, other calls which modify the filesystem are halted, and all dirty data, metadata, and log information are written to disk. Any process attempting to write to the frozen filesystem will block waiting for the filesystem to be unfrozen. Note that even after freezing, the on-disk filesystem can contain information on files that are still in the process of unlinking. These files will not be unlinked until the filesystem is unfrozen or a clean mount of the snapshot is complete. The -u flag is used to un-freeze the filesystem and allow operations to continue. Any filesystem modifications that were blocked by the freeze are unblocked and allowed to complete. One of -f or -u must be supplied to xfs_freeze. NOTES
A copy of a frozen XFS filesystem will usually have the same universally unique identifier (UUID) as the original, and thus may be pre- vented from being mounted. The XFS nouuid mount option can be used to circumvent this issue. In Linux kernel version 2.6.29, the interface which XFS uses to freeze and unfreeze was elevated to the VFS, so that this tool can now be used on many other Linux filesystems. SEE ALSO
xfs(5), lvm(8), mount(8). xfs_freeze(8)