如何查看warning訊息? - Linux

Madame avatar
By Madame
at 2011-03-14T15:20

Table of Contents

不好意思
新手問個問題
就是我將一群資料,匯入MySQL資料庫
匯入完成後,沒有error也沒有skip
但是卻出現很多的warning
我想要知道這些warning的訊息的話
要去那裡看呢?
感謝!

--
Tags: Linux

All Comments

32bit 升到 64 bit的無痛方式??

Caroline avatar
By Caroline
at 2011-03-14T11:21
※ 引述《monyo (無常)》之銘言: : ※ 引述《Adama (So Say We All.)》之銘言: : : 就是先找一個partition灌好64bit OS : : 那原本的data對新的OS來說就是一堆目錄和檔案,只須重新建立好目錄結構對應 : : 如果原本的data是放在獨立的分割區裡,那可 ...

批次將JPG改成jpg問題

Faithe avatar
By Faithe
at 2011-03-14T01:55
find . -name and#34;*.JPGand#34; |while read LIST do temp=${LIST%%JPG} mv $LIST $tempand#39;jpgand#39; done - ...

批次將JPG改成jpg問題

Odelette avatar
By Odelette
at 2011-03-14T00:58
用python來做的話,開個文字檔貼上下面的code, chmod u+x 之後執行 #! /usr/bin/env python import os, commands stdout = commands.getstatusoutput(and#39;find . -name and#34;*.JPGa ...

32bit 升到 64 bit的無痛方式??

Bethany avatar
By Bethany
at 2011-03-13T23:44
※ 引述《Adama (So Say We All.)》之銘言: : ※ 引述《monyo (無常)》之銘言: : : 目前電腦用的是ubuntu 10.xx 32bit : : 所以需要將系統升級到64bit, 不過有時候還是需要用32bit來編譯 : : 換句話說, 升級後還需要保留原本的環境, 而且想保 ...

批次將JPG改成jpg問題

Anonymous avatar
By Anonymous
at 2011-03-13T21:37
find . -name and#34;*.JPGand#34; -exec bash -c and#34;mv \$1 \`echo \$1 | sed s/JPG/jpg/\`and#34; -- {} \; for i in `find . -name and#34;*.JPGand#34;`; d ...