author:skate
time:2012/06/05
linux磁碟容量變為64z
[root@localhost ~]# df -h
檔案系統 容量 已用 可用 已用% 掛載點
/dev/sda3 255g 2.6g 240g 2% /
/dev/sda1 99m 18m 77m 19% /boot
tmpfs 16g 0 16g 0% /dev/shm
/dev/sdb1 64z 64z 91g 100% /search
[root@localhost ~]# ll /search/
總計 0
[root@localhost ~]#
[root@localhost ~]#
[root@localhost ~]# ll /search/
總計 0
[root@localhost ~]# df -ht /search/
檔案系統 型別 容量 已用 可用 已用% 掛載點
/dev/sdb1 ext3 64z 64z 91g 100% /search
[root@localhost ~]# ll /dev/sdb1
brw-r----- 1 root disk 8, 17 06-04 18:38 /dev/sdb1
解除安裝檔案系統
[root@localhost ~]# umount /search
[root@localhost ~]# df -h
檔案系統 容量 已用 可用 已用% 掛載點
/dev/sda3 255g 2.6g 240g 2% /
/dev/sda1 99m 18m 77m 19% /boot
tmpfs 16g 0 16g 0% /dev/shm
[root@localhost ~]# mount -t ext3 /dev/sdb1 /search
mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
missing codepage or other error
in some cases useful info is found in syslog - try
dmesg | tail or so
說明superblock已經損壞,如果沒有重要資料可以重建,如下:
[root@localhost ~]# mkfs.ext3 /dev/sdb1
mke2fs 1.39 (29-may-2006)
filesystem label=
os type: linux
block size=4096 (log=2)
fragment size=4096 (log=2)
12140544 inodes, 24280231 blocks
1214011 blocks (5.00%) reserved for the super user
first data block=0
maximum filesystem blocks=4294967296
741 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,
4096000, 7962624, 11239424, 20480000, 23887872
writing inode tables: done
creating journal (32768 blocks): done
writing superblocks and filesystem accounting information: done
this filesystem will be automatically checked every 39 mounts or
180 days, whichever comes first. use tune2fs -c or -i to override.
重新mount檔案系統
[root@localhost ~]# mount -t ext3 /dev/sdb1 /search
[root@localhost ~]# df -h
檔案系統 容量 已用 可用 已用% 掛載點
/dev/sda3 255g 2.6g 240g 2% /
/dev/sda1 99m 18m 77m 19% /boot
tmpfs 16g 0 16g 0% /dev/shm
/dev/sdb1 92g 188m 87g 1% /search
[root@localhost ~]#
ok-----------end------------
Linux 中磁碟容量配額
linux的設計之處就是為了多使用者同時執行不同的任務,但是硬體資源是有限的,不能讓乙個使用者無限制的上傳檔案,如果不加以限制,那麼磁碟最終將會被充滿,對此我們應該使用uquota來加以限制。1.quota分類 1.1 軟限制 當達到限制時,提示使用者,但任然允許使用者在限定的額度內使用磁碟 1.2...
磁碟容量的計算
chs cylinder head sector track,示意圖如下 cylinder柱面數表示硬碟每面盤面上有幾條磁軌,編號是從0開始,最大為1023,表示有1024個磁軌。head磁頭數表示磁碟共有幾個磁頭,也就是幾面盤面,編號從0開始,最大為255,表示有256個磁頭。sector tra...
ubuntu增加磁碟容量
ubuntu14.04硬碟掛載 linux下掛載新硬碟方法 ubuntu進入emergency mode解決 修改虛擬機器linux硬碟的大小 linux中vmware虛擬機器增加磁碟空間的擴容操作 linux下資料夾的建立 複製 剪下 重新命名 清空和刪除命令 ubuntu14.04掛載磁碟許可權...