1. 挑u盤
使用官方提供的系統起來從u盤讀取**資源的時候發現有的u盤認不出來。
後來發現是u盤分割槽的問題。因為這個系統一定要掛接/dev/sdx1這個分割槽,所以需要採用hdd格式的優盤,zip的是不認的
2. ubuntu上執行o2的圖形前端不能工作
這幅是使用出廠的mmcblock0p2裡的/openpeak 和/lib/intel執行的結果
的mmcblock0p3裡的/openpeak 和/lib/intel執行的結果
開始一直覺得是配置的問題,後來使用了mer-juggler-alpha015.tar.gz裡的/openpeak 和/lib/intel執行正常。
3. 使用jogglerfinal.gho對內建的1gb nand進行寫操作,導致系統無法啟動。
這個避免掉好了。
4. ntp時間更新錯誤
更新時提示no server suitable for synchronization found的錯誤,換成pool.ntp.org後好一點,但也有出錯的概率
最後發現是因為網路不穩定,pool.ntp.org快點所以好點,關掉bt恢復正常。。。
下面是錯誤的log
# ntpdate ntp.ubuntu.com
8 may 22:16:56 ntpdate[2000]: no server suitable for synchronization found
# ntpdate -d ntp.ubuntu.com
8 may 22:17:02 ntpdate[2021]: ntpdate [email protected] tue jan 6 15:51:35 utc 2009 (1)
transmit(91.189.94.4)
transmit(91.189.94.4)
receive(91.189.94.4)
receive: pkt.org and peer.xmt differ
transmit(91.189.94.4)
receive(91.189.94.4)
receive: pkt.org and peer.xmt differ
transmit(91.189.94.4)
receive(91.189.94.4)
receive: pkt.org and peer.xmt differ
receive(91.189.94.4)
transmit(91.189.94.4)
server 91.189.94.4, port 123
stratum 2, precision -20, leap 00, trust 000
refid [91.189.94.4], delay 0.99042, dispersion 56.00000
transmitted 4, in filter 4
reference time: cf8fed1d.378f1fc7 sat, may 8 2010 22:01:01.217
originate timestamp: cf8ff0e2.9d11c7cd sat, may 8 2010 22:17:06.613
transmit timestamp: cf8ff0e2.0cd66f0c sat, may 8 2010 22:17:06.050
filter delay: 0.00000 0.00000 0.00000 0.99042
0.00000 0.00000 0.00000 0.00000
filter offset: 0.000000 0.000000 0.000000 0.080980
0.000000 0.000000 0.000000 0.000000
delay 0.99042, dispersion 56.00000
offset 0.080980
8 may 22:17:07 ntpdate[2021]: adjust time server 91.189.94.4 offset 0.080980 sec
# ntpdate pool.ntp.org
8 may 22:17:37 ntpdate[2069]: no server suitable for synchronization found
# ntpdate pool.ntp.org
8 may 22:18:13 ntpdate[2126]: adjust time server 61.153.197.226 offset -0.091339 sec
# ntpdate pool.ntp.org
8 may 22:18:43 ntpdate[2177]: adjust time server 61.153.197.226 offset 0.021213 sec
# ntpdate pool.ntp.org
8 may 22:18:50 ntpdate[2189]: adjust time server 61.153.197.226 offset -0.035576 sec
# ntpdate ntp.ubuntu.com
8 may 22:19:05 ntpdate[2213]: no server suitable for synchronization found
# ntpdate ntp.ubuntu.com
8 may 22:19:10 ntpdate[2225]: no server suitable for synchronization found
#5. 小技巧[重啟o2前端圖形介面]
在telnet或ssh的命令視窗敲下面命令
killall tango
Git Gerrit 使用中遇到的問題
1.remote rejected release refs for release no new changes 非常惱人的乙個問題。在網上做了些搜尋後,都說是許可權配置問題。但是,事實上我已經有了onwer與push許可權。當然也可能是版本問題,因為gerrit的版本是2.1.0 最終還是把 p...
mysql使用中遇到的問題
問題一 第一次mysql啟動服務失敗,未返回報錯資訊 解決方法 執行 mysqld console命令,檢視error資訊,對症下藥 但一般情況下,主要是因為mysql目錄下的data資料夾中內容不正確,解決方法有以下兩個 1.在開啟服務前執行初始化命令 mysqld initalize 然後啟動服...
matble使用中遇到的問題
大致翻譯一下這個warning 我猜應該不是報錯,只是警告資訊 變數m在每次迴圈時都會改變陣列大小,請考慮提前分配好陣列大小以提高速度。在matlab中,改變陣列大小 或許叫矩陣大小也許更合適 是很耗時間的工作,所以就有了這行警告,樓主應該在 開始時沒有為m變數做合理的初始化。可以在一開始加一行 m...