CentosNodes: Difference between revisions

From MDWiki
Jump to navigationJump to search
m (New page: = Ice = == Additional configuration == Ice has an additional hard disk. * Create additional scratch space on /dev/sdb ** Make partition *** parted /dev/sdb **** mkpart primary 0% 100% ***...)
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= Cluster =
We have three clusters: mango, merlot and ice.
All three have /scratch space that has permissions of ugo+rwx
= Ice =
= Ice =



Latest revision as of 05:10, 7 July 2009

Cluster

We have three clusters: mango, merlot and ice. All three have /scratch space that has permissions of ugo+rwx

Ice

Additional configuration

Ice has an additional hard disk.

  • Create additional scratch space on /dev/sdb
    • Make partition
      • parted /dev/sdb
        • mkpart primary 0% 100%
        • quit
    • Make filesystem
      • mkfs.ext3 /dev/sdb1
    • Label
      • e2label /dev/sdb1 /scratch2
  • Mount automatically
    • Create mount point
      • mkdir /scratch2
    • Edit /etc/fstab, adding:
LABEL=/scratch2  /scratch2 ext3 defaults 1 2
  • Mount now
    • mount -a