VirtualBox amd64 AMD-V问题指南

这个话题探讨过几次。之前解决过几次。过程很有意思。
1. 3.1.0好用,安装了3.1.2就不好用了,提示BIOS没有开启AMD-V
2. 卸载了KVM,手工删除,3.1.4好用了,但是内核升级到2.3.31-20又出现了BIOS内AMD-V的开启提示。
3. 一波还未平息,一波却又惊起~~~
按照virtualbox.org上的ticket,这个仍然是由KVM引起的。
确实,运行
lsmod | grep kvm
可以发现仍有两个kvm modules在运行 ,一个是kvm,一个是kvm_amd。因为我用的是AMD的CPU。
于是
sudo rmmod kvm_amd
sudo rmmod kvm

VirtualBox的64终于好用了。重新启动电脑,又不好用了。
再检查,仍然有两个kvm/kvm-amd在做祟。
sudo modprobe -r kvm_amd
sudo modprobe -r kvm
效果是一样的。
考虑ubuntu的启动过程是检索/etc/init.d中的可执行文件,果然发现/etc/init.d/kvm是一个可执行的文件
sudo chmod -x kvm
问题解决。
to disable kvm module, just sudo chmod -x /etc/init.d/kvm, virtualbox amd64 amd-v will be enabled now.
参考文章:
1. Ticket #5639

Share and Enjoy:

Share and Enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Haohao
  • Live
  • MisterWong
  • Slashdot
  • TwitThis
  • Upnews
  • Yahoo! Bookmarks

DBDesigner4 on Ubuntu amd64

有日子没注意这个东西了。本来我整理的软件列表,就是可以在Windows和Ubuntu下使用的软件列表就包含它,因为Kylix是“跨平台”的嘛,好歹也是QT啊。但是解压安装完了之后会提示缺少libborqt-6.9-qt2.3.so文件。这个是Kylix 3的支持文件。可以在http://kylixlibs.sourceforge.net/下载。
我使用的是amd64,所以要复制到:
sudo cp libborqt-6.9.0-qt2.3.so /usr/lib32/
建议软链接:
sudo ln -s /usr/lib32/libborqt-6.9.0-qt2.3.so /usr/lib32/libborqt-6.9-qt2.3.so

Share and Enjoy:

Share and Enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Haohao
  • Live
  • MisterWong
  • Slashdot
  • TwitThis
  • Upnews
  • Yahoo! Bookmarks

How to use gwt on Ubuntu amd64?

准备测试gwt,选错了环境,使用了amd64版本的Linux,结果是自然的。

Environment:
Linux Mint 7(Based on Ubuntu 9.04) amd64
Eclipse 3.5
gwt linux 1.7.1
1. Install JDK 32-bit version
Download the setup file from java.sun.com like: jdk-6u16-linux-i586.bin
$chmod +x jdk-6u16-linux-i586.bin
$sudo ./jdk-6u16-linux-i586.bin
$sudo mv jdk1.6.0_16/ /usr/lib/jvm/

2. Use desired 32-bit jre library in Eclipse project

manually add: tools.jar
3. Install 32bit gtk support
$sudo apt-get install ia32-libs
4. You will get this:

参考:http://blog.foofactory.fi/2008_10_01_archive.html
让gwt在linux 64位机上跑起来
tools.jar not present in ia32-java-6-sun

Share and Enjoy:

Share and Enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Haohao
  • Live
  • MisterWong
  • Slashdot
  • TwitThis
  • Upnews
  • Yahoo! Bookmarks

RealTek 8169 run slowly in Ubuntu 9.04 amd64 version

Ubuntu 9.04中所附之Realtek 8169网卡驱动在amd64版本中会导致网卡速度慢。通过安装主板所附之8168开发版本解决:
<Linux device driver for Realtek Ethernet controllers>
This is the Linux device driver released for RealTek RTL8168B/8111B
and RTL8168C/8111C, Gigabit Ethernet controllers with PCI-Express
interface.
<Requirements>
- Kernel source tree (supported Linux kernel 2.6.x and 2.4.x)
- For linux kernel 2.4.x, this driver supports 2.4.20 and latter.
- Compiler/binutils for kernel compilation
<Quick install with proper kernel settings>
Check whether the built-in [...]

Share and Enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Haohao
  • Live
  • MisterWong
  • Slashdot
  • TwitThis
  • Upnews
  • Yahoo! Bookmarks