The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Special Forums > Hardware > Filesystems, Disks and Memory
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 04-27-2009
bluescreen bluescreen is offline
Registered User
  
 

Join Date: Jun 2008
Location: 0x486F6D65
Posts: 39
SAN Disk w/o Cluster

Scenario:

I've got 2 M5000's connected to a 9985 SAN storage array. I have configured the SAN disks with stmsboot, format and newfs. I can access the same SAN space from both systems. I have created files from both systems on the SAN space.

Question:

Why can't I see the file created with "SystemA" from "SystemB"?

SystemA:

Code:
root@SystemA# df -h
Filesystem             size   used  avail capacity  Mounted on
...
/dev/dsk/c6t60060E80144380000001438000000342d0s3
                        15G    15M    15G     1%    /c3d10
root@SystemA# ls -lsa /c3d10
total 204996
   2 drwxr-xr-x   3 oracle   dba          512 Apr 24 10:29 .
   2 drwxr-xr-x  34 root     root        1024 Apr 24 14:32 ..
41008 -rw------T   1 root     root     20971520 Apr 24 13:15 20mtest
61488 -rw------T   1 root     root     31457280 Apr 24 13:15 30mtest
102480 -rw------T   1 root     root     52428800 Apr 24 14:42 50mtest
  16 drwx------   2 root     root        8192 Apr 14 15:26 lost+found
root@SystemA# mkfile 7m /c3d10/7mtest
root@SystemA# ls -lsa /c3d10
total 219348
   2 drwxr-xr-x   3 oracle   dba          512 Apr 27 09:48 .
   2 drwxr-xr-x  34 root     root        1024 Apr 27 09:47 ..
41008 -rw------T   1 root     root     20971520 Apr 24 13:15 20mtest
61488 -rw------T   1 root     root     31457280 Apr 24 13:15 30mtest
102480 -rw------T   1 root     root     52428800 Apr 24 14:42 50mtest
14352 -rw------T   1 root     root     7340032 Apr 27 09:48 7mtest
  16 drwx------   2 root     root        8192 Apr 14 15:26 lost+found

SystemB:

Code:
root@SystemB# df -h
Filesystem             size   used  avail capacity  Mounted on
...
/dev/dsk/c6t60060E80144380000001438000000342d0s3
                        15G    65M    15G     1%    /c3d10
root@SystemB# ls -lsa /c3d10
total 204996
   2 drwxr-xr-x   3 oracle   dba          512 Apr 24 14:42 .
   2 drwxr-xr-x  34 root     root        1024 Apr 24 14:32 ..
41008 -rw------T   1 root     root     20971520 Apr 24 13:15 20mtest
61488 -rw------T   1 root     root     31457280 Apr 24 13:15 30mtest
102480 -rw------T   1 root     root     52428800 Apr 24 14:42 50mtest
  16 drwx------   2 root     root        8192 Apr 14 15:26 lost+found


Any help is greatly appreciated!