Categories
- Android (5)
- Cloud Computing (10)
- Development (14)
- Linux (36)
- Uncategorized (38)
- WordPress (5)
Tags
Archives
-
Random Posts
Delicious Bookmarks
- Build a Killer Customized Arch Linux Installation (and Learn All About Linux in the Process) 2012/04/25
- openflow 2012/04/12
- sheepdog(牧羊犬):一种EBS的开源实现 2012/04/05
- HBase vs Cassandra: why we moved 2012/04/04
- High Availability for HDFS 2012/03/16
- Hypertable vs HBase II 2012/02/09
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
Author Archives: Richard Huang
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
OpenVPN 客户端配置之 GNOME Network Manager 篇
主流 Linux 桌面系统之一的 GNOME 默认携带的 Network Manager 支持 OpenVPN。安装非常简单: Fedora: $ sudo yum install NetworkManager-openvpn Debian/Ubuntu: $ sudo apt-get install network-manager-openvpn 以下步骤是在 Fedora 15 中配置 GNOME Network Manager 连接至 HLYY OpenVPN 服务,其他 Linux 分发版应该都是一样一样滴: 1. 下载 HLYY OpenVPN CA 证书: … Continue reading
Install Lotus Notes 8.5.3 on Fedora 15 64bit
Lotus Notes still has no native support for 64bit Linux, but we can have workaround. $ cd /etc/yum.repo.d $ sudo wget http://pokgsa.ibm.com/projects/o/openclient/lotus/notes/beta/8.5.3/notes-8.5.3-ea.repo $ sudo yum clean all $ sudo yum update $ sudo yum install ibm_lotus_notes This is going to … Continue reading
Install ATT Global Network Client on Fedora 15 64bit
ATT Client only provides 32bit package, how can we install and run it on a 64bit Linux, e.g., Fedora 15? 1. Resolve dependencies: $ sudo yum install libcurl.i686 $ cd /lib $ sudo ln -s libcrypto.so.1.0.0d libcrypto.so.4 $ … Continue reading
Flashing Router with DD-WRT Firmware
DD-WRT 官方 wiki 上有详细的刷机指南,不过因为它要照顾到多种可能性、可选项,使得文章的长度很吓人,其实刷机超简单,只有简单的三步。 1,下载一个适用于你的路由器的 firmware build。(如何选择合适的 build?) 2,重置路由器至出厂状态 使用浏览器打开路由器的管理页面,然后切换至 Administration -> Factory Defaults 功能页,在 Restore Factory Defaults 选项中选中 Yes,然后点击 Apply Settings 按钮。重置完成后,在出现的初始化页面上设置一个用户名和密码。 3,刷机 使用浏览器打开路由器的管理页面,然后切换到 Administration -> Firmware Upgrade 功能页,选中 After flashing reset to default settings,并选中你在第一步中下载的固件安装包,然后点击 Upgrade 按钮。等待数分钟,待刷机完成后,在出现的初始化页面上设置一个用户名和密码。
How to Choose DD-WRT Build for Broadcom Based Router
DD-WRT 支持多种路由器设备,其 wiki 上维护有一个 Supported Devices 页面,你可以查找你的路由器是否可以安装 DD-WRT 固件。本文假定你的路由器在支持列表中,且 CPU 是 Broadcom 的。 最简单的选择方式当然是 DD-WRT 官网的下载页面,但其上给出的推荐 build 通常都太老了。在 DD-WRT 的 FTP 中有很多 builds,但很难知道哪个 build 是最合适的,你可以逐个测试… 嘿嘿,工程量浩大、而且容易变砖。还好论坛中有一个专门的 Firmware Recommendations 贴,著名的 redhawk 同学根据测试给出推荐,通常都是很靠谱的,如果你懒得自己动手测试,这是一个很好的选择。 Package Type 根据安装包中的所含功能的不同,DD-WRT 固件安装包有很多不同的类型,比如:micro, mini, std, mega 等等。在 wiki … Continue reading
Getting Started with GitHub
Git 实在太强大了,GitHub 实在太有用了!下面记录的是如何在 Fedora 15 上设置使用 GitHub 服务。 1. 设置 SSH keys GitHub 使用 SSH keys 来确保你的计算机与 GitHub 服务器之间的连接安全,所以我们需要生成 SSH keypair: $ ssh-keygen -t rsa -C “your_email@foobar.com” 这会在 ~/.ssh 目录下生成两个文件 id_rsa 和 id_rsa.pub,前者是你的私钥,后者是对应的公钥。 登陆 github.com 后,进入 Account Settings -> SSH … Continue reading
Enable VNC Server on Fedora 15
Install: $ sudo yum install tigervnc-server Configure: $ sudo vi /etc/sysconfig/vncservers VNCSERVERS=”1:huangys 2:root” VNCSERVERARGS[1]=”-geometry 1024×768″ VNCSERVERARGS[2]=”-geometry 1024×768″ Set password(s) for user(s): According to the above configuration, we need to set passwords for two users: huangys, root. Logged in as huangys, … 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