Format And Mount local2

From DISI
Revision as of 18:42, 22 September 2020 by Jgutie11 (talk | contribs) (Created page with " == Format Disk == Do these commands as root: * fdisk -l ** Find disks/RAID disks to format *parted *print *mklabel gpt *mkpart logical 0GB 9995GB. (based on what we read in r...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Format Disk

Do these commands as root:

  • fdisk -l
    • Find disks/RAID disks to format
  • parted
  • print
  • mklabel gpt
  • mkpart logical 0GB 9995GB. (based on what we read in result of print above)
  • print. (to confirm)
  • quit


Mount Local2

  • pvcreate /dev/sdb1
  • vgcreate zinc /dev/sdb1
  • lvcreate -l 100%FREE -n zinc_lv zinc
  • mkfs.ext4 -L zinc /dev/mapper/zinc-zinc_lv
  • mkdir /local2
  • vim /etc/fstab
    • /dev/zinc/zinc_lv /local2 ext4 defaults 1 2
  • mount /local2