黑苹果开机慢的解决
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)
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)
whereis sudoers
chmod u+w /etc/sudoers
sudo nano /etc/sudoers
chmod u-w /etc/sudoers
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
Ubuntu 解决语言设置错误的问题,并正常输入输出中文
安装localepurge管理语言文件
sudo apt-get install localepurge
当然也可以使用以下命令再次进行配置:
sudo dpkg-reconfigure localepurg
在本地对fish-shell进行配置:
set -U LANG en_US.UTF-8
set -U LC_ALL en_US.UTF-8
sudo a2enmod rewrite
MySQL user management
enter interactive mode
mysql -u [username] -h [hostname] -p
show all users
select * {host,user,…} from mysql.user
add a user
create user [username]@[hostname] identified by ‘[password]’
delete a user
drop user [username]@[hostname]
give privileges (users not existed will be created)
grant {all privileges,select,usage,…} on *.* to [username]@[hostname] identified ‘[password]’
retrieve privileges
revoke {all privileges,select,usage,…} on *.* from [username]@[hostname] identified ‘[password]’
show privileges
show grants for [username]@[hostname];
Ubuntu Server用户管理
List all
cut -d: -f1 /etc/passwd
Create
sudo useradd [username]
sudo passwd [username]
Delete
sudo userdel [username]
sudo rm -rf /home/[username]
List UIDs
awk -F: ‘//home/ {printf “%s:%s\n”,$1,$3}’ /etc/passwd
Install
sudo apt-get update
sudo apt-get install vsftpd
Configure
sudo nano /etc/vsftpd.conf
Disallow anonymous, unidentified users to access files via FTP; change the anonymous_enable setting to NO:
anonymous_enable=NO
Disallow anonymous, unidentified users to access files via FTP; change the anonymous_enable setting to
Allow local uses to login by changing the local_enable setting to YES:
> local_enable=YES
If you want local user to be able to write to a directory, then change the write_enable setting to YES:
> write_enable=YES
[Solve `530 Login incorrect`](http://askubuntu.com/questions/413677/vsftpd-530-login-incorrect):
> pam_service_name=ftp
[Solve `550 failed to change directory`](http://my.oschina.net/aiguozhe/blog/100161)
> chroot_local_user=NO
- Run
> sudo service vsftpd restart[/start/stop]
readme.html
and go for it,but something in wp-config.php
should be edited to optimize.change language from English to Chinese
/* To be added somewhere appropriate */
define(‘WPLANG’, ‘zh_CN’);
download smoothly without a fuzzy FTP config (resolve the trouble caused by authority)
chmod -R 755 [wordpress-directory]
chown -R www-data [wordpress-directory]
更换系统
再也无法忍受Windows 2008 Server x86
,将其逐出门外为快。
ssh初步
ssh [username]@[IP Address]
scp [filename] [username]@[IP Address]:[directory]
设置默认访问【?】页面
如图所示,将index.php提前,那么访问该目录时将优先转向此页面。
unzip
第一次发日志,就从【应用过PrintService的】校赛以后说起吧;不折腾不舒服。
添加动态日期与时间
起初,只是通过当前页面的php语句+js去现实时间。尽管努力尝试setInterval
与’setTimeout’,但都没能让时间显示“走”起来。
后来观看了别人的开发视频,才换成了调用独立的php文件去获取时间。
从Mac系统中获得字体文件
参见:Mac OS X: Font locations and their purposes
CSS中针对不同字符类型添加字体
参考了:利用 CSS 分別設定中文字、英數、注音、假名的字體:使用 CSS3 @font-face
CSS中正确处理字体格式
刚添加Helvetica字体时,Chrome中返回错误Failed to decode downloaded font
,Firefox中返回错误downloadable font: rejected by sanitizer
.
一方面,Mac系统中常见的ttc
与dfont
格式字体文件(collection,单个文件实际可包含多种字体)不被支持,需要被转换。
另一方面,CSS中引用字体文件时需指明格式。有CSS @font-face syntax.