黑苹果折腾第三迭代之末

通过不断调换SSDT存档,得出调查结论:
不同于以往的OS X 10.9,现在无论是BIOS还是DSDT或是SSDT屏蔽独显,都会导致核显工作不正常(闪烁、花屏乃至死机)。
独显虽无法参与工作,但也未必是个累赘。
反倒是**sensors.kext系列让机器温度偏高。
睡眠、唤醒顺利,但是蓝牙还是容易停止工作。
USB3.0能轻松驱动。

The 1st anniversary of this WordPress blog!

As can be seen from the 1st post, a magnificant year has passed along with abundant memories and dialogues at this site.
Up till now,there have been 178 articles published.

本站已启用“多说”评论框

“多说”评论框刚刚启用了。。。
方才配置过程中有些设置项目总加载不出,然后发现Chrome拦截了不安全的脚本。。。
接着是部分css样式没有即时显示,是cache的锅。。。

黑苹果开机慢的解决

黑苹果开机慢的解决

process launchctl[2] thread 242 caught burning CPU! It used more than 50% CPU…

Uninstalling the current Wacom drivers (6.3.15-1) and installing the previous version (6.3.11-3a)

【160126】服务器管理记录

  • Add sudoers

    whereis sudoers
    chmod u+w /etc/sudoers
    sudo nano /etc/sudoers
    chmod u-w /etc/sudoers

  • Nginx installing

    • Download

      sudo apt-get install nginx
      sudo apt-get install php5-cli php5-cgi mysql-server php5-mysql
      sudo apt-get install php5-fpm

    • Edit profile

      sudo nano /etc/nginx/sites-available/default

      root /var/www/html; index index.php index.html index.htm;
      location ~ \.php$ { include /etc/nginx/fastcgi_params; #需放在第一行,否则会出错 fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name; }

    • Run

      sudo spawn-fcgi -a 127.0.0.1 -p 9000 -C 10 -u www-data -f /usr/bin/php-cgi
      /etc/init.d/nginx start