Categories
- Android (5)
- Cloud Computing (10)
- Development (14)
- Linux (35)
- Uncategorized (36)
- WordPress (5)
Tags
Archives
-
Random Posts
Delicious Bookmarks
- Labor Efficiency: The Next Great Internet Disruption 24 hours ago
- Apache HBase 0.92.0 has been released 2012/02/04
- Ceph 2012/02/04
- Maximize virtio-net performance with vhost-net 2012/02/03
- Android-x86 - Porting Android to x86 2012/02/01
- 中国电信将成立云计算公司 践行“天翼云计算”战略 2012/02/01
Google Reader Shares
- Hudson vs. Jenkins: Is it too soon to declare a winner?
- Galaxy Nexus 的 Super AMOLED 屏幕多了 HD,但少了 Plus
- Faenza Icon theme for Gnome 3.2 makes Ubuntu a little more eye candy
- Google 在台湾、香港及新加坡兴建自己的数据中心,一到两年后启用
- 既定的秩序是教育的结果
- Amazon S3 - 566 Billion Objects, 370,000 Requests/Second, and Hiring!
Links
Meta
Tag Archives: ubuntu
QEMU-KVM with SPICE Support on Ubuntu 11.10 64-bit
SPICE server requires 64-bit system. Make sure you are running Oneiric x86_64. 1. Remove AppArmor $ sudo invoke-rc.d apparmor stop $ sudo update-rc.d -f apparmor remove $ sudo apt-get autoremove –purge apparmor $ sudo reboot After the machine is rebooted, … Continue reading
iptables in Ubuntu
Since 7.10, Ubuntu uses UFW to manage firewall. Well, UFW is easier than iptables, but I prefer to use iptables directly. Keep it less layers. Stop and remove UFW: $ sudo invoke-rc.d ufw remove $ sudo update-rc.d -f ufw remove … Continue reading
Compile and Install SPICE Client on Ubuntu
Since 11.10 (Oneiric), Ubuntu includes SPICE client in its official repository. But how can we get SPICE client if we still use the old Ubuntu releases prior to Oneiric? The following describes how to compile and install a SPICE client … Continue reading
My Must-Have PPAs
Within a release life cycle, Ubuntu only maintains the minor upgrades of the applications installed in the release. If you want to keep your applications up-to-date and catch their major upgrades, you have to do the upgrades by yourselves, or … Continue reading
Using KVM and libvirt for Virtualization on Ubuntu 10.10
The version of libvirt in Ubuntu 10.10 repository is 0.8.3, it has some known stability issues which are not acceptable for production use. So I have to install a newer libvirt from compiling source. Since the version of qemu in … Continue reading
Setting Up Android SDK on Ubuntu
1. 下载 SDK 你可以从 http://developer.android.com/sdk/ 上找到最新的 SDK。 你可能需要翻墙,因为 developer.android.com 被墙了。 $ wget http://dl.google.com/android/android-sdk_r08-linux_86.tgz $ tar zxvf android-sdk_r08-linux_86.tgz 2. 安装 Platform tools $ cd android-sdk-linux_86 $ tools/android 这时会出现一个图形界面的 Android SDK and AVD Manager,在 Available packages 里选择安装 Android SDK Platform-tools 3. 连接手机 … Continue reading
Ubuntu 9.10 Quick Guide
1. partitioning If you’re using alternative image to install Ubuntu from ISO without CD, you’ll find that the problem of unable partitioning hard disk is solved. That problem exists in both 8.10 and 9.04 releases. In the installation wizard, there … Continue reading
NVIDIA Graphics Driver 180 Not Stable
Everything was fine when my ThinkPad T61p worked with the version 177 or 173 of NVIDIA Graphics Driver. When I got a notification that there was a new version 180 available, I was happy to upgrade it at once. Then … Continue reading
太宽太长?恢复正常!
在 Intrepid Ibex 中最招人烦的问题莫过于浏览器中输入框的尺寸超夸张地宽,单行多行皆如此,而且某些应用程序(比如 Eclipse)的按钮也很宽很宽。难看的恨。 我在 launchpad 上给 Ubuntu 开了个 bug,可惜 Ubuntu 团队的人不细究原因直接把这个 bug 分配到 Firefox 组件下,我就觉得修复无望了,因为该问题并非只是 Firefox 独有,其他浏览器(比如 Epiphany)、以及 Eclipse 这样的桌面应用程序也存在相同或相似的问题。 现在真相大白了,这一问题果然不是由 Firefox 引起的,也非我最初听说和猜测的 cairo,而是 pango. 解决问题的方法很简单,升级 pango 到 1.22.4 或以上。我没有找到编译好的 deb 包,只好从源包编译安装。 $ wget ftp://ftp.gnome.org/pub/gnome/sources/pango/1.22/pango-1.22.4.tar.bz2 $ bunzip pango-1.22.4.tar.bz2 … Continue reading
Ubuntu Font Size Adjustment
现在显示器的分辨率越来越高,屏幕上的字也就相应地越来越小,技术倒是在进步了,可眼睛却是真的越来越辛苦了。直接调低分辨率的话,字就不清楚了、发虚、有毛边。所以,使用默认的最佳分辨率、然后逐一修改系统和应用的字体大小设置是正道。 GTK 打开 系统 – 首选项 – 外观,切换至 字体 标签,将字体调节到合适的大小,比如12。系统默认值是10。 GDM 登录界面的字体在 GDM 当前使用的 主题 中控制。比如,若 GDM 使用的是 Human 主题,那么要修改的文件是 /usr/share/gdm/themes/Human/Human.xml,打开该文件,将所有 font 大小相应地调大,比如都加2。 一些应用程序 很多应用程序并非基于 GTK 开发,或者虽然是基于 GTK,但是又不严格遵循 GTK 全局配置。这样的话,就得辛苦一点,独自设置了。 Lotus Notes 在 Notes 客户端的 preferences 中,只能设置使用的字体,却无法设定字体的大小(怪怪的设计 -_-)。可以通过在 notes.ini 文件中加入参数 … Continue reading