how to assign same mount point for file systems mounted on physical disks


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory how to assign same mount point for file systems mounted on physical disks
# 1  
Old 03-29-2003
PHP how to assign same mount point for file systems mounted on physical disks

We have 6 hard disks attached to the hardware. Of this 2 hard disks are of 9 GB each.

Now I want combine both the same in such a way that i see a combined entry in the output of df -k .

The steps I follow are

1. Create partition on hard disks (Using format partition)
2. Run newfs -v for the partition
3. create an entry in /etc/vsftab (with common mount point)
3. mount the file system.

When I do this for the 2nd hard disk with same mount point , it does not allow stating mountpoint busy (naturally earlier one already mounted).

So I suppose same mount point may not be assigned to different file system .

So think there should be a way to have a single file system for partitions from 2 physical hard disks . I don't know how.

Can anybody help.

Thanks in advance.

Hitesh
# 2  
Old 03-29-2003
what i think your trying to do is combine two seperate drives at one mount point, right? so say i have /dev/hda1 and i have /dev/hdb1 ,
you would want to mount them at /usr/twodriveshere/ ? well AFAIK mount cant do that. something like that is what raid is for, however maybe i missed something going through the mount man page--- or maybe there is another way to do it that im not aware of. go through the mount man pages, as i might have missed something. else search google for 'RAID' . i think you will find your solution with raid.
# 3  
Old 03-29-2003
There might be a way to do this, it depends on your OS. For example, HP-UX has LVM which lets you take physical disks and combine them into a pool of storage. Then you can create logical disks out of that pool. The logical disk seems to be a single disk. You newfs it once and you mount it once. But it can consume two physical disks. Look at the docs for your OS and see if it has a volume manager package.
# 4  
Old 03-30-2003
You can possibly look at concatenating & striping.
If your OS is Solaris, there are disk management softwares like Solstice DiskSuite

See this for a summary of it.
minazk
# 5  
Old 03-31-2003
Thanks everybody for ur contributions . I'll check ur suggestions and get back to u.

FYI we are having SOLARIS 8.
# 6  
Old 04-01-2003
Sun has addressed virtual volume management with two
software packages: Solstice DiskSuite and Sun StorEdge Volume
Manager.

DiskSuite is used primarily on smaller servers and workstations.

StorEdge product is used on the larger Enterprise servers to manage Sun's StorEdge disk arrays.

For more Information look at:

http://docs.sun.com/


Note: If you can, use Veritas Volume Manager and Veritas File System.

Regards.Hugo
# 7  
Old 04-19-2003
Thanks to all

Dear All ,

Thanks to u all for ur help.

We could successfully set up meta devices using Disk Suit tool 4.2.1 gui.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies

2. Shell Programming and Scripting

Script to check if file systems are mounted

Hi I have the following piece of code, running on a solaris 10 O.S., that is not working for NFS file systems: for vol in `grep -E 'vxfs|ufs|nfs' /etc/vfstab | egrep -v '^#' | awk '{ print $3 }'` do if df -k $vol | grep $vol > /dev/null then outputOK "Filesystem: $vol mounted" else... (1 Reply)
Discussion started by: fretagi
1 Replies

3. Shell Programming and Scripting

Help with code to check if file systems are mounted

Hi I need to have a piece of code that check if all file systems are mounted or not. I have to pieces of information like the output of the bdfcommand, and the file /etc/fstab. The first is: bdf Filesystem kbytes used avail %used Mounted on /dev/vg00/lvol3 2097152 266656... (3 Replies)
Discussion started by: fretagi
3 Replies

4. Solaris

Restore of Netapp FC lun targets used as the disks for a zpool with exported zfs file systems

So, We have a Netapp storage solution. We have Sparc T4-4s running with LDOMS and client zones in the LDOMS, We are using FC for storage comms. So here's the basic setup FC luns are exported to the primary on the Sparc box. using LDM they are then exported to the LDOM using vdisk. at the... (4 Replies)
Discussion started by: os2mac
4 Replies

5. Solaris

In Solaries 10 how to mount multiple volume on same mounted point

Hi , I am completely stuck and not getting any clue to come out this . So looking for help Q : I have salaries 10 in server with that Dell Equallogic storage connected. in dell Equlalogic in i have 70 TB storage . I created 7 volumes 10 TB each . In Solaries 10 i have syslog server i... (1 Reply)
Discussion started by: Roahn Tiwari
1 Replies

6. AIX

How to determine the physical volume fo the disks

This is the report I got running the comand rptconf, but I would like to know what is the capacity of the disks installed into our server power 6 with AIX System Model: IBM,7778-23X Machine Serial Number: 1066D5A Processor Type: PowerPC_POWER6 Processor Implementation Mode: POWER 6... (6 Replies)
Discussion started by: cucosss
6 Replies

7. UNIX for Advanced & Expert Users

Link from mount point to sftp account of file system

Hi, Is it possible to do hard link between the mount point of file some structure to the sftp account of some other server ? If possible then what could be the behavior of link properties? Is it could be the same as we found in our environment (unix/linux). Even if we do such link , then it... (1 Reply)
Discussion started by: posix
1 Replies

8. UNIX for Dummies Questions & Answers

How to change the file modification time of a file on nfs mount point

Hi I am accessing a file on nfs mounted device, after completing using of the file, i am tring to restore the access time and modification times of the file. So i got the previous modified time of the file using stat() function and trying to set the date and time for the file, To set these... (6 Replies)
Discussion started by: deepthi.s
6 Replies

9. UNIX for Dummies Questions & Answers

Vertias (physical disks monitoring)

Can anyone tell me what Vertias is? Is it free? What is it used for exactly? Thank you in advance. (1 Reply)
Discussion started by: VeroL
1 Replies

10. UNIX for Dummies Questions & Answers

monitoring the state of physical disks

Hello, I would like to know if there are commands that can be used to monitor the state of physical disks (including RAID) under AIX and SUN unix platforms? Thank you in advance. (4 Replies)
Discussion started by: VeroL
4 Replies
Login or Register to Ask a Question