1、修复 CentOS 缺少 SSH 基本命令。
各种基本命令都提示“command not found”,可能是最小安装所致,尝试运行:
yum -y install openssh-clients
2、SSH 修改 root 账户密码。
(组里走了人,服务器环境配置需要各种改。
此前啥也没给交代的我,只好赶鸭子上架。)
passwd root
命令很简单,回车后输入并确认新密码即可。
mysqladmin -u root -p'old' password 'new'
4、SSH 修改 svn 账户密码。
先用 cd 定位到 svn 对应的 repository 中,用 vi/vim 去打开 conf/passwd。
[users] #user_a = password1 注释掉 user_b = password2
5、启用 win7 最近打开的项目。
这个问题曾在多台机上出现,影响小但是的确烦人。
win+r 运行 gpedit.msc(组策略),依次定位到
“用户配置-管理模版-开始菜单和任务栏”。
然后找到“不保留最近打开文档的历史”的项目,设为“已禁用”。
6、CentOS 下安装使用 7Zip。
Linux 下的 7Zip 叫做 p7zip。注意:压缩当前子目录无需加“/”前缀。
#安装 yum install p7zip #解压 7za x [7zfilename] #压缩 7za a -mx=9 7zfilename.7z [filename/directory]
7、简单的返回按钮。
<a href="http://horan.cc/" onclick="window.history.go(-1); return false;">返回 ></a>
8、使 Chrome 能在本地环境加载 AJAX。
启动时增加 --allow-file-access-from-files
的参数即可。
每次都需要,建议放入快捷方式。
.element{ display:inline-block; float:left; }
10、修改 select 右侧三角。
select { appearance:none; -moz-appearance:none; /* Firefox */ -webkit-appearance:none; /* Safari and Chrome */ background: url(caret-down.png) no-repeat right; }
select::-ms-expand { /* for IE 11 */ display: none; }
11、使 input 的 placeholder 靠右显示。
::-webkit-input-placeholder { text-align:right; } /* webkit solution */ input:-moz-placeholder { text-align:right; } /* Firefox 18- */ input::-moz-placeholder { text-align:right; } /* Firefox 19+ */ input:-ms-input-placeholder { text-align:right; } /* IE 10+ */
12、使 360 浏览器强制使用 chrome/webkit 核心渲染该页面。
<meta name="renderer" content="webkit">
【相关资料】
1、10 BEAN BLEND◃chieftainwildrice
2、星尘 – linux下vi命令大全◃cnblogs
3、Setting Up Subversion◃systhread