當新的硬碟裝置加入時, 掛載程序如下
1. 顯示目前硬碟裝置資訊 sudo lshw -C disk 藉此了解裝置代號如 /dev/sda
2. 分割硬碟 sudo fdisk /dev/sda , 系統顯示 $ Command (m for help): 接著按下 m 就可選取要進行的作業.
4. 當格式化磁碟時,為保證作業系統在磁碟己滿的情況下仍能寫入數據,自動保留5%的空間給管理員。對於只存放資料來說並不需要。調整保留比例, sudo tune2fs -m 0 /dev/sda 表示保留 0%
5. 每次開機時自動掛載: sudo gedit /etc/fstab 加入, /opt/tmp 目錄須已存在
from
http://wiki.ubuntu.com.cn/index.php?title=%E5%AE%89%E8%A3%85%E6%96%B0%E7...
http://wiki.ubuntu.com.cn/UbuntuHelp:Fstab
1. 顯示目前硬碟裝置資訊 sudo lshw -C disk 藉此了解裝置代號如 /dev/sda
2. 分割硬碟 sudo fdisk /dev/sda , 系統顯示 $ 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)
3. 分割完成後, 進行格式化 sudo mke2fs -j /dev/sda (ext3)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)
4. 當格式化磁碟時,為保證作業系統在磁碟己滿的情況下仍能寫入數據,自動保留5%的空間給管理員。對於只存放資料來說並不需要。調整保留比例, sudo tune2fs -m 0 /dev/sda 表示保留 0%
5. 每次開機時自動掛載: sudo gedit /etc/fstab 加入, /opt/tmp 目錄須已存在
/dev/sda /opt/tmp ext3 relatime,errors=remount-ro 0 1
可採 UUID 指定方式掛載, 好處是不會因磁碟順序變更而連結目標錯誤, 查詢 ls -l /dev/disk/by-uuid, blkid -s UUID
UUID=xxxxxxxxxxxxxx /opt/tmp ext3 relatime,errors=remount-ro 0 1
6. 重新啟動後 , 下達 df 了解各掛載情況可採 UUID 指定方式掛載, 好處是不會因磁碟順序變更而連結目標錯誤, 查詢 ls -l /dev/disk/by-uuid, blkid -s UUID
UUID=xxxxxxxxxxxxxx /opt/tmp ext3 relatime,errors=remount-ro 0 1
from
http://wiki.ubuntu.com.cn/index.php?title=%E5%AE%89%E8%A3%85%E6%96%B0%E7...
http://wiki.ubuntu.com.cn/UbuntuHelp:Fstab