国产精品免费虐久久久久影院_亚洲日韩av一区二区三区久久_一个人的视频全免费在线观看www_国产黄色福利青草精品在线_久久机热国产精品免费观看_日本一二三区免费在线_好亚洲亚洲人成综合网站图片_亚洲中文字幕超碰无码资源_日本人天天干夜夜操b视频_动漫女扒开腿爆乳无遮挡gif

FASTGPT 喵言AI 續(xù)費(fèi)系統(tǒng)

Linux全球云主機(jī)掛盤(pán)

購(gòu)買(mǎi)LINUX系統(tǒng)全球云主機(jī)產(chǎn)品后,由于用戶選擇的空間大小不同,后臺(tái)云存儲(chǔ)分配的實(shí)際存儲(chǔ)盤(pán)符也會(huì)發(fā)生相應(yīng)的變化,所以這時(shí)候需要用戶自行做掛載處理,處理步驟如下(//以及后面的都是注釋?zhuān)挥幂斎耄?span lang="EN-US">:

1  查看新硬盤(pán):

[root@~]# df -h         //檢查當(dāng)前掛載磁盤(pán)

Filesystem            Size  Used Avail Use% Mounted on

/dev/sda3              14G  3.4G  9.4G  27% /

/dev/sda1              99M   12M   83M  13% /boot

tmpfs                 252M     0  252M   0% /dev/shm

[root@~]#

[root@~]# fdisk -l      //檢查當(dāng)前分區(qū),下面紅色的sbd是沒(méi)有分區(qū)的,需要下一步操作

Disk /dev/sda: 16.1 GB, 16106127360 bytes

255 heads, 63 sectors/track, 1958 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          13      104391   83  Linux

/dev/sda2              14         144     1052257+  82  Linux swap / Solaris

/dev/sda3             145        1958    14570955   83  Linux

Disk /dev/sdb: 16.1 GB, 16106127360 bytes

255 heads, 63 sectors/track, 1958 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/sdb doesn’t contain a valid partition table

[root@~]#

這時(shí)會(huì)看到有16GsdbDisk /dev/sdb: 16.1 GB)沒(méi)有分配,可以按照下面的方法繼續(xù)分配,由于實(shí)際分配的不一定是sdb(有可能是hdchdd等),下面的操作都是以系統(tǒng)顯示為sdb來(lái)做下面的操作。

2、  對(duì)sdb做分區(qū):

[root@ ~]# fdisk  /dev/sdb      //對(duì)sdb做分區(qū)

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 1958.

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): n     //繼續(xù)下一步輸入n

Command action

   e   extended

   p   primary partition (1-4)p         //輸入p

Partition number (1-4):         //輸入1

First cylinder (1-1958, default 1):         //回車(chē)

Using default value 1

Last cylinder or +size or +sizeM or +sizeK (1-1958, default 1958):      //回車(chē)

Using default value 1958

Command (m for help): w         //輸入w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

You have mail in /var/spool/mail/root

[root@ ~]#

3、  格式化:

[root@ ~]# fdisk -l       //確認(rèn)剛分區(qū)的是否存在(下面紅色部分就是我們剛分區(qū)并要繼續(xù)格式化的磁盤(pán)點(diǎn))

Disk /dev/sda: 16.1 GB, 16106127360 bytes

255 heads, 63 sectors/track, 1958 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          13      104391   83  Linux

/dev/sda2              14         144     1052257+  82  Linux swap / Solaris

/dev/sda3             145        1958    14570955   83  Linux

Disk /dev/sdb: 16.1 GB, 16106127360 bytes

255 heads, 63 sectors/track, 1958 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System

/dev/sdb1               1        1958    15727603+  83  Linux

[root@ ~]#

[root@~]# mkfs.ext3 /dev/sdb1       //格式化sdb1

mke2fs 1.39 (29-May-2006)

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

1966080 inodes, 3931900 blocks

196595 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=4026531840

120 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

Writing inode tables: done                           

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 35 mounts or

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

[root@~]#

4  掛載分區(qū):

[root@~]# mkdir /user1                  //創(chuàng)建需要掛載的分區(qū)目錄,可以自定義

[root@~]# mount /dev/sdb1 /user1/       //掛載剛創(chuàng)建的目錄

[root@~]# df -h                         //確定是否掛載成功,和第一步比較

Filesystem            Size  Used Avail Use% Mounted on

/dev/sda3              14G  3.5G  9.4G  27% /

/dev/sda1              99M   12M   83M  13% /boot

tmpfs                 252M     0  252M   0% /dev/shm

/dev/sdb1              15G  166M   14G   2% /user1

[root@~]#

5、  配置自動(dòng)掛載(重啟服務(wù)器會(huì)后自動(dòng)加載上):

[root@ ~]# cat /etc/fstab       //查看當(dāng)前加載情況

LABEL=/                 /                       ext3    defaults        1 1

LABEL=/boot             /boot                   ext3    defaults        1 2

tmpfs                   /dev/shm                tmpfs   defaults        0 0

devpts                  /dev/pts                devpts  gid=5,mode=620  0 0

sysfs                   /sys                    sysfs   defaults        0 0

proc                    /proc                   proc    defaults        0 0

LABEL=SWAP-sda2         swap                    swap    defaults        0 0

[root@ ~]#vi /etc/fstab         //編輯fatab文件并加入下面一行

/dev/sdb1             /user1                   ext3     defaults,noatime         0 0

[root@SZNC-DB-4120 ~]# cat /etc/fstab       //確認(rèn)是否已加入(紅色部分)

LABEL=/                 /                       ext3    defaults        1 1

LABEL=/boot             /boot                   ext3    defaults        1 2

/dev/sdb1             /user1                   ext3     defaults,noatime         0 0

tmpfs                   /dev/shm                tmpfs   defaults        0 0

devpts                  /dev/pts                devpts  gid=5,mode=620  0 0

sysfs                   /sys                    sysfs   defaults        0 0

proc                    /proc                   proc    defaults        0 0

LABEL=SWAP-sda2         swap                    swap    defaults        0 0

[root@SZNC-DB-4120 ~]#