雲serverlinux又一次掛載指定資料夾(非擴充)
阿新 • • 發佈:2018-12-07
新買的香港雲server。系統僅僅能在商家的控制檯上安裝。
系統和硬碟分開的,根資料夾空間僅僅有10G。須要又一次設定相關資料夾的大小。如:/usr、/var、/home等。
下面是自己的解決方法小計。
一、初始的分割槽情況(外加一個300G未分割槽的硬碟):
[[email protected] ~]# df -TH 檔案系統 型別 容量 已用 可用 已用%% 掛載點 /dev/mapper/vg_cloud-lv_root ext4 8.1G 484M 7.2G 7% / tmpfs tmpfs 2.0G 91k 2.0G 1% /dev/shm /dev/sda1 ext4 508M 51M 431M 11% /boot
[[email protected] ~]# fdisk -l | less Disk /dev/sdb: 311.4 GB, 311385128960 bytes 255 heads, 63 sectors/track, 37857 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x0473169a Device Boot Start End Blocks Id System
二、把硬碟分割槽、格式化、並掛載到/mnt/disk300g節點。
[[email protected] ~]# fdisk /dev/sdb #分割槽的時候之分一個區/dev/sdb1
[[email protected] ~]# mkfs.ext4 /dev/sdb1 #格式化分割槽,注意自己系統的檔案格式(ext2、ext3、ext4),能夠用df -TH檢視。
[[email protected] ~]# mkdir /mnt/disk300g && mount -t ext4 /dev/sdb1 /mnt/disk300g # 掛載到節點/mnt/dis300g
[ [email protected] ~]# df -TH
檔案系統 型別 容量 已用 可用 已用%% 掛載點
/dev/mapper/vg_cloud-lv_root
ext4 8.1G 484M 7.2G 7% /
tmpfs tmpfs 2.0G 91k 2.0G 1% /dev/shm
/dev/sda1 ext4 508M 51M 431M 11% /boot
<span style="color:#cc0000;background-color: rgb(255, 255, 255);">/dev/sdb1 ext4 307G 3.3G 288G 2% /mnt/disk300g</span>
[[email protected] ~]# cp -av /usr /var /home /mnt/disk300g/
[[email protected] ~]# ll /mnt/disk300g/
總用量 28
drwxr-xr-x. 2 root root 4096 9月 23 2011 home
drwx------. 2 root root 16384 5月 29 16:38 lost+found
drwxr-xr-x. 13 root root 4096 9月 9 2012 usr
drwxr-xr-x. 22 root root 4096 9月 9 2012 var
[[email protected] /]# mv /usr /usr_bak && mv /var /var_bak && mv /home /home_bak && mkdir /usr /var /home #備份並新建資料夾
[[email protected] /]# mount --bind /mnt/disk300g/usr /usr
[[email protected] /]# mount --bind /mnt/disk300g/var /var
[[email protected] /]# mount --bind /mnt/disk300g/home /home
之後你應該能夠看到/usr、/var、/home下的內容和備份之前一樣了。
五、開機/重新啟動自己主動掛載(等同於步驟四操作)。
[[email protected] /]# vim /etc/fstab #編輯/etc/fstab檔案。加入例如以下內容
#
# /etc/fstab
# Created by anaconda on Sun Sep 9 10:33:18 2012
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/vg_cloud-lv_root / ext4 defaults 1 1
UUID=c3f1cf28-b344-4b5e-9f38-fe0781481aa4 /boot ext4 defaults 1 2
/dev/mapper/vg_cloud-lv_swap swap swap defaults 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
<span style="color:#cc0000;">/dev/sdb1 /mnt/disk300g ext4 rw 0 0
/mnt/disk300g/home /home none rw,bind 0 0
/mnt/disk300g/usr /usr none rw,bind 0 0
/mnt/disk300g/var /var none rw,bind 0 0</span>
儲存退出。