目前分類:Centos (3)

瀏覽方式: 標題列表 簡短摘要

Linux 無法正常開機,出現錯誤訊息:

Checking filesystems

/dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
         (i.e., without -a or -p options)
                                                  [FAILED]

*** An error occurred during the file system check.
*** Dropping you to a shell; the system will reboot
*** when you leave the shell.
Give root password for maintenance
(or type Control-D to continue):

錯誤訊息指出 /dev/sda1 分割區有不一致性的問題!!

 

依照指示,先輸入 root 密碼登入,再以 fsck 進行檔案系統的修復 (參數 -y 是為了讓 fsck 在檢測出錯誤時自動修復):

$ fsck -y /dev/sda1
fsck 1.39 (29-May-2006)
e2fsck 1.39 (29-May-2006)
/dev/sda1 contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
...
Pass 2: Checking directory structure
...
Pass 3: Checking directory connectivity
...
Pass 4: Checking reference counts
...
Pass 5: Checking group summary information
...

/dev/sda1: ***** FILE SYSTEM WAS MODIFIED *****
/dev/sda1: ***** REBOOT LINUX *****

修復完畢,輸入 reboot 重新開機即可:

$ reboot

資料來源: 

http://www.vixual.net/blog/archives/213

benson82208 發表在 痞客邦 留言(0) 人氣()

備份整顆硬碟

 /dev/sda 所有的資料寫入 /dev/sdb

sudo dd if=/dev/sda of=/dev/sdb

if 參數指定的是輸入檔案(input file),而 of 參數指定的是輸出檔案(output file),這行指令會將 /dev/sda 這顆硬碟的資料讀出來,然後寫進 /dev/sdb 這顆硬碟。

在整個過程中如果出現讀取錯誤的話,dd 就會停止執行,如果想要讓 dd 在出現讀取錯誤時還是繼續拷貝資料的話,就要加上 conv=noerror 參數,這個選項通常在備份資料時會使用到,另外加上 sync 可以讓 dd 以 synchronized I/O 的方式備份資料:

sudo dd if=/dev/sda of=/dev/sdb conv=noerror,sync

資訊來源: https://blog.gtwang.org/linux/dd-command-examples/  

benson82208 發表在 痞客邦 留言(0) 人氣()

首先通過chkconfig命令看看MySQL在不在可管理的清單中,命令是︰

chkconfig --list如果清單中沒有mysqld這個,需要先用這個命令添加︰

chkconfig add mysqld

然後用這個命令設定開機啟動︰

chkconfig mysqld on

最後確認一下是否設定成功

 

 

 

benson82208 發表在 痞客邦 留言(0) 人氣()