掛載硬盤對於linux系統來講是一個比較常見的問題了,下面我們來看看linux中掛載新硬盤到目錄,並開機自動掛載例子緊,
今天,在整理圖片時,發現根目錄硬盤空間已經所剩無幾了,而網站和所有相關文件主要放置在根下data目錄(/data)裡,但/home下是有空間,而又不想把文件放到/home下面去,只有再加一個新硬盤,對以後/data目錄的文件管理也比較好。
那麼就先關掉主機,再加上新硬盤(其它電腦使用過的500G硬盤),插上後再啟動電腦。
接下來,就開始工作了:
1. 查看硬盤信息:
feigo@figo:~$ sudo df -h
文件系統 容量 已用 可用 已用% 掛載點
rootfs 102G 92G 4.7G 96% /
udev 10M 0 10M 0% /dev
tmpfs 799M 1.8M 798M 1% /run
/dev/disk/by-uuid/3640f24a-4870-42e2-ae07-109cb9c35164 102G 92G 4.7G 96% /
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 4.6G 224K 4.6G 1% /run/shm
/dev/sda7 92M 26M 62M 30% /boot
/dev/sda9 201G 23G 169G 12% /home
feigo@figo:~$ sudo fdisk -l
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 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
Disk identifier: 0x3f1e271a
Device Boot Start End Blocks Id System
/dev/sdb1 63 102414374 51207156 7 HPFS/NTFS/exFAT
/dev/sdb2 102414375 976768064 437176845 f W95 Ext'd (LBA)
/dev/sdb5 102414438 409625369 153605466 b W95 FAT32
/dev/sdb6 409625433 716836364 153605466 b W95 FAT32
/dev/sdb7 716836428 976768064 129965818+ 7 HPFS/NTFS/exFAT
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 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
Disk identifier: 0xc35aebd4
Device Boot Start End Blocks Id System
/dev/sda1 * 63 104872319 52436128+ 7 HPFS/NTFS/exFAT
/dev/sda2 104872381 976771071 435949345+ f W95 Ext'd (LBA)
/dev/sda5 104872383 231962534 63545076 7 HPFS/NTFS/exFAT
/dev/sda6 231962598 300929579 34483491 b W95 FAT32
/dev/sda7 300931072 301125631 97280 83 Linux
/dev/sda8 301127680 517726207 108299264 83 Linux
/dev/sda9 517728256 945461247 213866496 83 Linux
/dev/sda10 945463296 976771071 15653888 82 Linux swap / Solaris
我們可以看到有兩個硬盤,sda和sdb,其中sda是目前使用中的硬盤,sdb是新加上去的硬盤。
2. 針對sdb創建新硬盤分區:
先說明一下,fdisk 可以用 m 命令來看 fdisk 命令的內部命令:
a :命令指定啟動分區
d :命令刪除一個存在的分區
l :命令顯示分區 ID 號的列表
m :查看 fdisk 命令幫助
n :命令創建一個新分區
p :命令顯示分區列表
t :命令修改分區的類型 ID 號
w :命令是將對分區表的修改存盤讓它發生作用
feigo@figo:~$ su
密碼:
root@figo:/home/feigo# fdisk /dev/sdb
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