国产福利在线播放|久久精品福利网站免费|国产呻吟视频在线观看|日韩一区二区三区免费高清|久996视频精品免费观看|欧美日本在线一区二区三区|在线最新无码经典无码免費資訊|国产午夜亚洲精品国产成人最大

始創(chuàng)于2000年 股票代碼:831685
咨詢熱線:0371-60135900 注冊(cè)有禮 登錄
  • 掛牌上市企業(yè)
  • 60秒人工響應(yīng)
  • 99.99%連通率
  • 7*24h人工
  • 故障100倍補(bǔ)償
全部產(chǎn)品
您的位置: 網(wǎng)站首頁(yè) > 幫助中心>文章內(nèi)容

linux vm 如何添加硬盤

發(fā)布時(shí)間:  2012/8/10 15:25:11
 將虛擬機(jī)關(guān)閉,加載一塊硬盤

  fdisk -l 發(fā)現(xiàn)新加載的硬盤標(biāo)號(hào)是sdc ,也就是第三塊硬盤

  fdisk /dev/sdc

  Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

  Building a new DOS disklabel. Changes will remain in memory only,

  until you decide to write them. After that, of course, the previous

  content won't be recoverable.

  The number of cylinders for this disk is set to 2349.

  There is nothing wrong with that, but this is larger than 1024,

  and could in certain setups cause problems with:

  1) software that runs at boot time (e.g., old versions of LILO)

  2) booting and partitioning software from other OSs

  (e.g., DOS FDISK, OS/2 FDISK)

  Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

  Command (m for help): m

  Command action

  a toggle a bootable flag

  b edit bsd disklabel

  c toggle the dos compatibility flag

  d delete a partition

  l list known partition types

  m print this menu

  n add a new partition

  o create a new empty DOS partition table

  p print the partition table

  q quit without saving changes

  s create a new empty Sun disklabel

  t change a partition's system id

  u change display/entry units

  v verify the partition table

  w write table to disk and exit

  x extra functionality (experts only)

  Command (m for help): n

  Command action

  e extended

  p primary partition (1-4)

  e

  Partition number (1-4): 1

  First cylinder (1-2349, default 1):

  Using default value 1

  Last cylinder or +size or +sizeM or +sizeK (1-2349, default 2349):

  Using default value 2349

  Command (m for help): w

  The partition table has been altered!

  Calling ioctl() to re-read partition table.

  Syncing disks.

  [root@qa ~]# mkfs -t ext3 -c /dev/sdc1

  mke2fs 1.39 (29-May-2006)

  /dev/sdc1: Invalid argument passed to ext2 library while setting up superblock

  這是應(yīng)為,在創(chuàng)建分區(qū)時(shí)添加的是擴(kuò)展分區(qū),擴(kuò)展分區(qū)不能直接format,需要對(duì)擴(kuò)展分區(qū)再劃分出邏輯分區(qū)

  主分區(qū),擴(kuò)展分區(qū),邏輯分區(qū)三者有什么不同?什么關(guān)系?各用在何處

  1. 每個(gè)硬盤有一個(gè)主分區(qū)表, 其中每項(xiàng)表示一個(gè)主分區(qū), 定義了硬盤上的一段連續(xù)空間,

  主分區(qū)可以是各種類型的, 如fat, linux ext2, fat32, ntfs等等

  2. 主分區(qū)表有一個(gè)限制, 最多只能有四個(gè). 于是就有了擴(kuò)展分區(qū):

  這是一個(gè)特殊的主分區(qū), 它不能直接使用, 而是象一個(gè)指針, 指向一個(gè)擴(kuò)展分區(qū)表.

  每個(gè)硬盤只能有一個(gè)擴(kuò)展分區(qū).

  3. 在擴(kuò)展分區(qū)表中定義的分區(qū)就叫邏輯分區(qū), 它的功能, 作用和主分區(qū)類似,

  但被限制在擴(kuò)展分區(qū)所定義的空間大小范圍內(nèi).

  [root@qa ~]# fdisk /dev/sdc

  The number of cylinders for this disk is set to 2349.

  There is nothing wrong with that, but this is larger than 1024,

  and could in certain setups cause problems with:

  1) software that runs at boot time (e.g., old versions of LILO)

  2) booting and partitioning software from other OSs

  (e.g., DOS FDISK, OS/2 FDISK)

  Command (m for help): m

  Command action

  a toggle a bootable flag

  b edit bsd disklabel

  c toggle the dos compatibility flag

  d delete a partition

  l list known partition types

  m print this menu

  n add a new partition

  o create a new empty DOS partition table

  p print the partition table

  q quit without saving changes

  s create a new empty Sun disklabel

  t change a partition's system id

  u change display/entry units

  v verify the partition table

  w write table to disk and exit

  x extra functionality (experts only)

  Command (m for help): n

  Command action

  l logical (5 or over)

  p primary partition (1-4)

  l 5

  First cylinder (1-2349, default 1):

  Using default value 1

  Last cylinder or +size or +sizeM or +sizeK (1-2349, default 2349):

  Using default value 2349

  Command (m for help): w

  The partition table has been altered!

  Calling ioctl() to re-read partition table.

  Syncing disks.

  擴(kuò)展分區(qū)的邏輯化完成了。

  現(xiàn)在format:

  [root@qa ~]# mkfs -t ext3 -c /dev/sdc5

  mke2fs 1.39 (29-May-2006)

  Could not stat /dev/sdc5 --- No such file or directory

  The device apparently does not exist; did you specify it correctly?

  [root@qa ~]# mkfs -t ext3 -c /dev/sdc5

  mke2fs 1.39 (29-May-2006)

  Filesystem label=

  OS type: Linux

  Block size=4096 (log=2)

  Fragment size=4096 (log=2)

  2359296 inodes, 4717069 blocks

  235853 blocks (5.00%) reserved for the super user

  First data block=0

  Maximum filesystem blocks=0

  144 block groups

  32768 blocks per group, 32768 fragments per group

  16384 inodes per group

  Superblock backups stored on blocks:

  32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,

  4096000

  Checking for bad blocks (read-only test): done

  Writing inode tables: done

  Creating journal (32768 blocks): done

  Writing superblocks and filesystem accounting information: done

  This filesystem will be automatically checked every 29 mounts or

  180 days, whichever comes first. Use tune2fs -c or -i to override.

  掛載

  mount /dev/sdc5 /srv

  把掛載添加到分區(qū)表中,這樣系統(tǒng)每次啟動(dòng)的時(shí)候就自動(dòng)掛載這個(gè)分區(qū)

  vi /etc/fstab

  添加

  /dev/sdc5 /srv ext3 defaults 0 0


本文出自:億恩科技【www.riomediacenter.com】

服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

  • 您可能在找
  • 億恩北京公司:
  • 經(jīng)營(yíng)性ICP/ISP證:京B2-20150015
  • 億恩鄭州公司:
  • 經(jīng)營(yíng)性ICP/ISP/IDC證:豫B1.B2-20060070
  • 億恩南昌公司:
  • 經(jīng)營(yíng)性ICP/ISP證:贛B2-20080012
  • 服務(wù)器/云主機(jī) 24小時(shí)售后服務(wù)電話:0371-60135900
  • 虛擬主機(jī)/智能建站 24小時(shí)售后服務(wù)電話:0371-60135900
  • 專注服務(wù)器托管17年
    掃掃關(guān)注-微信公眾號(hào)
    0371-60135900
    Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號(hào)總部企業(yè)基地億恩大廈  法律顧問(wèn):河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號(hào)
      0
     
     
     
     

    0371-60135900
    7*24小時(shí)客服服務(wù)熱線