Tag: Mac预览模式: 普通 | 列表

Sep.4,Make iTunes 10 control buttons horizontal

iTunes 10 provides a different layout for the Close, Minimize and Maximize buttons. Instead of being ordered horizontally, in iTunes 10 they're arranged vertically, like a traffic light.

Reverting the buttons to a horizontal layout can easily be done. With iTunes not running, open Terminal and enter the following code:

defaults write com.apple.iTunes full-window -1

To restore the vertical layout, simply use this command:

defaults write com.apple.iTunes full-window -0

Tags: Mac OSX x86 苹果 iTunes

分类:迈入新年代 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 16

Sep.3,OSx86应用心得四则

仅拥有SSE2 CPU的机器,安装VMware Fusion时,出现KP的原因?

因为vmmon模块不支持SSE2仿真模式。

进一步,不支持SSE3意味着不支持硬件虚拟化,因此Parallels也无法安装,结论就是请选择VirtualBox。

---

无法开启QE/CI时,可以借助Xcode中的OpenGL Profiler。通过它,我们可以让一部分需要QE/CI支持的应用运行起来,尽管速度将较为缓慢。

---

查看更多...

Tags: Mac OSX x86 苹果 VMWare Dock 855GM QE

分类:迈入新年代 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 30

藉由VMware Fusion中的Boot Camp项,我们可以在Mac下直接运行安装于物理硬盘的Windows系统。不过,一般情况下,容易遭遇boot0: error错误,导致运行失败。

究其原因,是由于VMware没有正确识别Windows启动信息所在的分区。通常,我们将引导工具Chameleon安装于Mac所在的HFS+分区。

知其所以然,解决就不难:

1、删除VMware中的Boot Camp项(如果存在),退出VMware程序;
2、将Windows所在的分区标记为活动,此操作可以使用Mac自带的fdisk命令来完成;
3、启动VMware,首页->从Boot Camp分区运行,启动安装于物理硬盘的Windows系统,并完成VMware Tools的安装。而后关闭Windows,退出VMware程序;
4、恢复之前的活动分区设置。

Tags: Mac OSX x86 苹果 VMWare BootCamp

分类:迈入新年代 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 69

Aug.30,TM290 855GM显卡开启QE

100830tm290855gm1041qe

  • 安装10.4.1
  • 从Darwin 8.0.1光盘中拷贝AppleIntel830.kext、AppleIntel830GA.plugin及AppleIntel830GLDriver.bundle至/System/Library/Extensions
  • 编辑AppleIntelIntegratedGraphics.kext/Contents/Info.plist,将IOPCIMatch的值改为0x35828086

或许是由于TM290不支持在BIOS中设置共享显存的缘故?我们需要借助其它系统来预分配显存?读取BIOS中的显存分配信息?(问题的缘由纯属推测,无法肯定的下结论)以XP为例,建立XP/Tiger 10.4.1双系统,开机之后先进入XP,随后重启返回10.4.1,如此便可开启QE ~

Tags: Mac OSX x86 苹果 TM290 Tiger 855GM QE

分类:迈入新年代 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 106

Aug.29,Good command line usage habits and tips

If you use the command line frequently, chances are you may have some bad command line habits. IBM's DeveloperWorks site has posted 10 good UNIX usage habit tips, some of them are just pretty handy tricks in general and if you're new to the Mac OS X Terminal, you'll probably learn something since practically all of them work within the Mac OS X command line. Here's one of my personal favorites since it hit home with my command line activities:

* Change the path to unpack something into rather than moving the archive file itself, in this example by using the -C flag with the tar command:

tar xvf -C path/to/unpack newarc.tar.gz

I'm certainly guilty of moving archives around, but that's partially because I like to keep all of them in a central location. But if you're going to just delete the archive anyway, there's no point in moving the archive file around just to unpack it. Save yourself the keystrokes.

Here's the full list of tips in the IBM DeveloperWorks article:

查看更多...

Tags: Mac OSX x86 苹果 Unix

分类:迈入新年代 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 119

100828tm290tigersystemprofiler

效果见图。大原则很简单,确定字串,搜索替换。

声卡、显卡及内存速度信息,编辑
/System/Library/SystemProfiler/相关模块/Contents/Resources/系统语言.lproj
下的Localizable.strings来实现。

内存类型,则通过十六进制编辑器编辑
/System/Library/Extensions/AppleSMBIOS.kext/Contents/MacOS/AppleSMBIOS

Tags: Mac OSX x86 苹果 TM290 Tiger

分类:迈入新年代 | 固定链接 | 评论: 2 | 引用: 0 | 查看次数: 120

Aug.27,虎牌上网本之Tiger/XP时间同步

TM290安装Leopard并不困难,不过由于硬件限制,产生一些大问题。譬如不经意间的四国,系统运行速度不佳等。思量思量,暂且先退回Tiger。双硬盘呵,无损转换。

Tiger已经十分完善,基本只留下一些优化、微调的余地。今天先来解决Tiger、XP的时间同步问题。

对于这个问题,注册表RealTimeIsUniversal大法依然有效,不过存在局限。运行某些程序,待机、休眠后恢复或是唤醒显示器时,容易导致时间回退。

于此,引入一种较为先进的方案。Tiger下,编辑/etc/rc.local及/etc/rc.shutdown.local,加入:

date `date -u +%m%d%H%M%Y`

~~~

Tags: Mac OSX x86 苹果 Tiger 维护

分类:迈入新年代 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 118