女班长扒开内裤让我们摸视频,麻豆精产国品一二三产区区别免费,鲁一鲁一鲁一鲁一澡,久久国产精品99夜夜嗨,久久午夜无码鲁丝片秋霞

大學(xué)生新聞網(wǎng),大學(xué)生新聞發(fā)布平臺(tái)
大學(xué)生新聞網(wǎng)
大學(xué)生新聞大學(xué)生活校園文學(xué)大學(xué)生村官
社會(huì)實(shí)踐活動(dòng)社會(huì)實(shí)踐經(jīng)歷社會(huì)實(shí)踐報(bào)告社會(huì)實(shí)踐總結(jié)社會(huì)實(shí)踐心得
全國(guó)排名校友會(huì)版軟科排名分類(lèi)排名本科排名一本排名二本排名?婆琶學(xué)校地址
求職簡(jiǎn)歷職場(chǎng)法則面試技巧職場(chǎng)故事求職招聘大學(xué)生就業(yè)
英語(yǔ)學(xué)習(xí)計(jì)算機(jī)學(xué)習(xí)電氣工程機(jī)械工程經(jīng)濟(jì)管理建筑設(shè)計(jì)財(cái)務(wù)會(huì)計(jì)
申請(qǐng)書(shū)證明書(shū)檢討書(shū)自薦信演講稿心得體會(huì)調(diào)查報(bào)告讀后感求職信推薦信其它范文

Linux fdisk命令 – 管理磁盤(pán)分區(qū)

fdisk命令來(lái)自于英文詞組“Partition table manipulator for Linux”的縮寫(xiě),其功能是用于管理磁盤(pán)的分區(qū)信息。如果一套幾百平米的房子內(nèi)部沒(méi)有墻壁,雖然看起來(lái)會(huì)很敞亮,但是各種聲音、氣味、物品會(huì)隨意充斥在整個(gè)房子內(nèi),讓人極不舒適,因此需要用墻壁按照功能進(jìn)行劃分,例如臥室、廁所、廚房、陽(yáng)臺(tái)等等。

fdisk命令可以用于對(duì)磁盤(pán)進(jìn)行分區(qū)操作,用戶可以根據(jù)實(shí)際情況進(jìn)行合理劃分,這樣后期掛載和使用時(shí)會(huì)方便很多。

語(yǔ)法格式:fdisk [參數(shù)] [設(shè)備]

常用參數(shù):

-b    指定每個(gè)分區(qū)的大小
-l    列出指定的外圍設(shè)備的分區(qū)表狀況
-s    將指定的分區(qū)大小輸出到標(biāo)準(zhǔn)輸出上,單位為區(qū)塊
-u    搭配”-l”參數(shù)列表,會(huì)用分區(qū)數(shù)目取代柱面數(shù)目,來(lái)表示每個(gè)分區(qū)的起始地址
-v    顯示版本信息
參考實(shí)例

查看當(dāng)前系統(tǒng)的分區(qū)情況:

[root@linuxcool ~]# fdisk -l
Disk /dev/sda: 20 GiB, 21474836480 bytes, 41943040 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x5f1d8ee5
 
Device     Boot   Start      End  Sectors Size Id Type
/dev/sda1  *       2048  2099199  2097152   1G 83 Linux
/dev/sda2       2099200 41943039 39843840  19G 8e Linux LVM
………………省略部分輸出信息………………
管理指定硬盤(pán)的分區(qū)(過(guò)程省略,以《Linux就該這么學(xué)》第6章節(jié)為準(zhǔn)):

[root@linuxcool ~]# fdisk /dev/sda
Welcome to fdisk (util-linux 2.32.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
 
Command (m for help): n 
All space for primary partitions is in use.
Command (m for help): m 
 
Help:
  DOS (MBR)
   a   toggle a bootable flag
   b   edit nested BSD disklabel
   c   toggle the dos compatibility flag
 
  Generic
   d   delete a partition
   F   list free unpartitioned space
   l   list known partition types
   n   add a new partition
   p   print the partition table
   t   change a partition type
   v   verify the partition table
   i   print information about a partition
 
  Misc
   m   print this menu
   u   change display/entry units
   x   extra functionality (experts only)
 
  Script
   I   load disk layout from sfdisk script file
   O   dump disk layout to sfdisk script file
 
  Save & Exit
   w   write table to disk and exit
   q   quit without saving changes
 
  Create a new label
   g   create a new empty GPT partition table
   G   create a new empty SGI (IRIX) partition table
   o   create a new empty DOS partition table
   s   create a new empty Sun partition table
………………省略部分輸出信息………………
    作者:大學(xué)生新聞網(wǎng)    來(lái)源:大學(xué)生新聞網(wǎng)
    發(fā)布時(shí)間:2025-03-13    閱讀:
    掃一掃 分享悅讀
  • Linux rm命令 – 刪除文件或目錄
  • rm命令來(lái)自于英文單詞remove的縮寫(xiě),其功能是用于刪除文件或目錄,一次可以刪除多個(gè)文件,或遞歸刪除目錄及其內(nèi)的所有子文件。
  • 03-12 關(guān)注:4