自由學習的風

幽夢影 張潮 少年讀書,如隙中窺月;中年讀書,如庭中望月;老年讀書,如臺上玩月。皆以閱歷之淺深,為所得之淺深耳。

[Ubuntu] Ubuntu 13.10 以後執行 x86 的程式

2013年11月24日 星期日

之前在 x64 的 Ubuntu 上執行 x86 程式,都是安裝 ia-libs 這個套件,不過,從 13.10 之後,這個套件好像就被移除了。
而最近在學習的 Android 開發工具,不管 Eclipse 或 Android 雖然都有 x64 的版本,但是 Android 模擬器卻只提供在 x86 環境才能完整執行,找了一些方案,目前解決的辦法有二種:
1.
$ sudo dpkg --add-architecture i386
$ apt-get update

2.
# echo "deb http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse" > /etc/apt/source.list.d/ia32-libs-raring.list
# apt-get update
# apt-get install ia-libs

我比較建議用第一種,如果用第二種的話,raring 這個版本如果不再提供 source 的話,就沒有辦法安裝了!

Sublime Text 3 在 Ubuntu 打中文字有解了

2013年11月21日 星期四

Sublime Text 2 在 Ubuntu 打中文本來可以安裝「Input Helper」這個 plugin 來間接輸入中文,不過到了 ST3 就找不到這個 plugin 了,今天剛好心血來潮又找了一次,很驚喜的發現竟然已經有解了,而且更直接,把它記下來,也跟大家推銷一下 Sublimt Text,真的不錯喔!


1.將下列的程式碼存成 sublime-imfix.c 
/*
sublime-imfix.c
Use LD_PRELOAD to interpose some function to fix sublime input method support for linux.
By Cjacker Huang
gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC
LD_PRELOAD=./libsublime-imfix.so subl
*/
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
typedef GdkSegment GdkRegionBox;
struct _GdkRegion
{
  long size;
  long numRects;
  GdkRegionBox *rects;
  GdkRegionBox extents;
};
GtkIMContext *local_context;
void
gdk_region_get_clipbox (const GdkRegion *region,
            GdkRectangle    *rectangle)
{
  g_return_if_fail (region != NULL);
  g_return_if_fail (rectangle != NULL);
  rectangle->x = region->extents.x1;
  rectangle->y = region->extents.y1;
  rectangle->width = region->extents.x2 - region->extents.x1;
  rectangle->height = region->extents.y2 - region->extents.y1;
  GdkRectangle rect;
  rect.x = rectangle->x;
  rect.y = rectangle->y;
  rect.width = 0;
  rect.height = rectangle->height;
  //The caret width is 2;
  //Maybe sometimes we will make a mistake, but for most of the time, it should be the caret.
  if(rectangle->width == 2 && GTK_IS_IM_CONTEXT(local_context)) {
        gtk_im_context_set_cursor_location(local_context, rectangle);
  }
}
//this is needed, for example, if you input something in file dialog and return back the edit area
//context will lost, so here we set it again.
static GdkFilterReturn event_filter (GdkXEvent *xevent, GdkEvent *event, gpointer im_context)
{
    XEvent *xev = (XEvent *)xevent;
    if(xev->type == KeyRelease && GTK_IS_IM_CONTEXT(im_context)) {
       GdkWindow * win = g_object_get_data(G_OBJECT(im_context),"window");
       if(GDK_IS_WINDOW(win))
         gtk_im_context_set_client_window(im_context, win);
    }
    return GDK_FILTER_CONTINUE;
}
void gtk_im_context_set_client_window (GtkIMContext *context,
          GdkWindow    *window)
{
  GtkIMContextClass *klass;
  g_return_if_fail (GTK_IS_IM_CONTEXT (context));
  klass = GTK_IM_CONTEXT_GET_CLASS (context);
  if (klass->set_client_window)
    klass->set_client_window (context, window);
  if(!GDK_IS_WINDOW (window))
    return;
  g_object_set_data(G_OBJECT(context),"window",window);
  int width = gdk_window_get_width(window);
  int height = gdk_window_get_height(window);
  if(width != 0 && height !=0) {
    gtk_im_context_focus_in(context);
    local_context = context;
  }
  gdk_window_add_filter (window, event_filter, context);
}
2.安裝 c/c++ 編譯器和 libgtk2.0-dev
sudo apt-get install build-essentialsudo apt-get install libgtk2.0-dev
3.編譯共用的函式庫 
gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC
4.設定 LD_PRELOAD 變數及執行 Sublime Text
LD_PRELOAD=./libsublime-imfix.so  subl
5.修改 sublime text 3 的啟動捷徑內容 /usr/share/applications/sublime_text.desktop
[Desktop Entry]
[...]Exec=env LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so /opt/sublime_text/sublime_text %F[...] [Desktop Action Window][...]Exec=env LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so /opt/sublime_text/sublime_text -n[...] [Desktop Action Document][...]Exec=env LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so /opt/sublime_text/sublime_text --command new_file[...]
6.把 libsublime-imfix.so 放到 /opt/sublime_text/ 中
sudo cp   libsublime-imfix.so   /opt/sublime_text/
7.修改 /usr/bin/subl
#!/bin/sh export LD_PRELOAD=/opt/sublime_text/libsublime-imfix.soexec /opt/sublime_text/sublime_text "$@"

[Android] Android 模擬器如何直向、橫向

2013年11月7日 星期四

快速鍵:
Ctrl+F11 手機直向
Ctrl+F12 手機橫向

主要按鍵
F2 Left Softkey / Menu / Settings button (or Page up)
Shift+f2 Right Softkey / Star button (or Page down)
Esc Back Button
F3 打電話
F4 掛電話
F5 搜尋按鈕

其它按鍵:
Ctrl+F5 放大音量
Ctrl+F6 減少音量
F7 電源按鍵 
Ctrl+F3 相機
Ctrl+F11 手機直向
Ctrl+F12 手機橫向
F8 網路切換
F9 Toggle code profiling
Alt+Enter 全螢幕切換
F6 Toggle trackball mode

[Android] 錯誤訊息 Android Dex: [Expense] Could not reserve enough space for object heap

Win7 上利用  Android Studio 執行時,發生以下的錯誤
Android Dex: [Expense] Could not reserve enough space for object heap
爬文看了一下,stackoverflow 上有人提出,這是因為 OS 是 32 位元才會發生這個問題,導致 JVM 的記憶體空間不夠用。

不過,我猜真實的情況應該是我開 FreeRapid ,分掉了 JVM 的記憶體空間…

[轉] zenity 的應用範例

2013年11月5日 星期二

嘿! zenity 真的蠻方便,一些比較簡單的工作都可以透過 zenity 來完成!!

Zenity 是一個專門用於指令稿(shell script)或命令列(command)的圖形使用者介面工具,他可以很快速的建立下列簡單的圖形介面對話方塊(dialog):
全文: http://sealmemory.blogspot.tw/2011/07/shell-script.html

[Ubuntu] Nautilus 檔案總管建立的書籤

Nautilus 的書籤都建立在 ~/.gtk-bookmarks 這個檔案中,所以若不便從 GUI  介面加入書籤的話,也可以直接修改這個檔案。

格式:
file:///<Path/to/file/or/folder> <BookmarkName>
範例:
file:///home/student/作業  作業


在 Ubuntu 14.04 x64 上執行 android studio

從 ubuntu 13.10 開始好像不提供 ia32-lib 給 x64 執行,我因為想嚐鮮,所以安裝了 14.04 x64。

android studio 雖然可以執行,但是開啟的新專案就有問題,一直提示 aapt 沒有這個檔案或目錄,後來查了資料才知道,sdk 裡的工具有些只有 32 位元,就造成雖然有程式但是卻執行失敗。一開始還以為是檔案損毀,後來才想到 x64 和 x32 的問題,努力搜尋之後,很好運的在 stackoverflow 找到解法,可惜身邊沒有紅酒,不然真當浮一大"紅"!

sudo dpkg --add-architecture i386
sudo apt-get -qqy update
sudo apt-get -qqy install libncurses5:i386 libstdc++6:i386 zlib1g:i386