How to use usb device in virtualbox ??
In the last post ‘如何在visualbox使用usb device?‘, I mentioned that I need to change to udev rule file in order to use usb device. After some researches, I found that I don’t have to modify this file. But I...
View ArticleBroken usb cable ??
When I am using virtualbox, I have this issue. This is how I fix it. (Not good but acceptable) sudo rmmod ehci_hcd; sudo modprobe ehci-hcd Now I can use this usb device again. Note. You have to...
View Articlemucommander
mucommander is a very good java based file manager software. How to build mucommander ? First, need to install ant and ant version should be >= 1.6.5 , sudo aptitude install ant # version is 1.8.0 ,...
View Articlehow to hold packages not to upgrade ?
怎麼讓 linux 的 packages 不要更新。 有三種方法,這邊我只紀錄我使用的方法. # hold the packages , not to upgrade. sudo aptitude hold package-name # unhold the packages, sudo aptitude unhold package-name 就這樣 ! Reference URL:...
View ArticleHow to transfer files to xoom in linux.
要怎麼在 linux 傳檔案給我的 xoom 呢 ? 首先在 /etc/udev/rules.d 底下建立一個檔案 99-motorola-xoom.rules 內容如下 # 22b8 是 xoom 在正常使用模式下的 id SUBSYSTEM=="usb", ATTR{idVendor}=="22b8", MODE="0666" # 18d1 是在 booloader 的模式下...
View ArticleInstall android sdk in linux
安裝 android sdk 很簡單,但要能使用 android sdk 則必須要先安裝 java sdk 才可以。 如何安裝 java sdk 可以參考 ‘安裝 JDownloader‘。 另外由於我使用 linux x64 原因,而 android sdk 只提供 i386,所以必須額外安裝以下套件。 sudo aptitude install ia32-libs...
View ArticleCrop image by using ImageMagick
怎麼使用 imagemagick 來 crop image。 convert -crop ${width}x${height}+${posX}+${posY} original output # ${width} - image 的寬度 # ${height} - image 的高度 # 兩個結合起來就是只要 crop 多大的區域。 # ${posX} 和 ${posY} 就是要從 image...
View ArticleRemote capture webpage to image.
如何透過遠端抓取網頁並且轉成image檔呢? Google了許久,大多都必須搭配 X server 才有辦法使用。 不過即使是需要 X server 也可以用個虛擬的方法來使用。 下面列出幾個我找到可以用的軟體 1. wkhtmltoimage 2. cutycapt 3. khtml2png 4. Pywebshot 5. python-webkit2png...
View ArticleSoftAP in linux debian
為什麼要這麼麻煩而不使用 adhoc wireless 來 share 網路呢 ? 原因是因為我的 xoom 使用 ics 後,已經不支援 adhoc mode 了,所以只好想辦法達成我想要的目的。 下面就是解決方法: 確定無線網卡是否支援。 lspci -k | grep -A 3 -i "network" 03:00.0 Ethernet controller: Atheros...
View ArticleGet rid of ‘Enter password to unlock your login keyring’ !!
本來沒有出現過這個問題,但是最近當我在輸入密碼的時候卻會有出現此訊息視窗。 Google 一下,原因似乎是我改過我登入的密碼,所以就會產生此問題。 如何解決 ? rm ~/.gnome2/keyrings/login.keyring. 下次當再出現時,只要輸入自己的登入密碼就好了。 參考網址:...
View Article