ExtJs 下载地址

ExtJs

阅读全文 »

Install Mac OS X El Capitan on Windows 10 using VMware Workstation 12

从App Store下载 OS X El Capitan

Download OS X El Capitan

阅读全文 »

Windows Server 2012 R2 DataCenter下使用Hyper-V安装CentOS 7常见问题汇总

Hyper-V and CentOS

阅读全文 »

OS X Terminal: -bash: warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory Fix

前言

闲来无事,安装了CentOS虚拟机,然后尝试了下ssh登录,结果就遇到了标题上所遇到的错误,特此进行整理。

现场还原

1
2
3
4
5
6
7
ShaoxueerdeMac:comee.github.io comee$ ssh root@10.0.2.152
root@10.0.2.152's password:
Last login: Wed Dec 16 16:00:59 2015 from 10.0.2.7
-bash: 警告:setlocale: LC_CTYPE: 无法改变区域选项 (UTF-8): 没有那个文件或目录
[root@localhost ~]# ls
anaconda-ks.cfg ?????? ?????? ?????? ?????? ?????? ?????? ?????? ??????
[root@localhost ~]#

可以看到,在浏览中文时已经出现乱码了,修复后的效果如下:

1
2
3
4
5
6
ShaoxueerdeMac:~ comee$ ssh root@10.0.2.152
root@10.0.2.152's password:
Last login: Wed Dec 16 16:08:48 2015 from 10.0.2.7
[root@localhost ~]# ls
anaconda-ks.cfg 公共 模板 视频 图片 文档 下载 音乐 桌面
[root@localhost ~]#

修复后,中文已经可以正常显示了。

这个问题的出现和OpenSSH server以及OS X ssh terminal client都有关系,所以也就有多种修复方法。

阅读全文 »

HTML 大杂烩

Something About Html

阅读全文 »

Git 教程

Git Branching Model

阅读全文 »

使用 Nexus 搭建 Maven 私服

Nexus Deployment Processes

阅读全文 »

偶遇:Java 从 .rft 文件读取生僻字造成乱码


阅读全文 »

Guava Strings.java

Google Guava

阅读全文 »

自动获得管理员权限来运行 Batch 脚本

自动获得管理员权限来运行 Batch 脚本,:main 以下输入要运行的脚本。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@echo off

pushd "%CD%"
CD /D "%~dp0"

cls


::管理员账户
:: whoami /user |find "-500" >nul 2>nul
::if not errorlevel 1 (goto AdministratorAccount) else goto OtherAccount


::管理员权限运行
set TempFile_Name=%SystemRoot%\System32\BatTestUACin_SysRt%Random%.batemp
echo %TempFile_Name% 1>nul

( echo "BAT Test UAC in Temp" >%TempFile_Name% ) 1>nul 2>nul

if exist %TempFile_Name% (
echo use administrator privilege
del /f /q %TempFile_Name%
goto main
) else (
echo not use administrator privilege
goto OtherAccount
)



:OtherAccount
%1 %2
ver|find "5.">nul&&goto :st
mshta vbscript:createobject("shell.application").shellexecute("%~s0","goto :st","","runas",1)(window.close)&goto :eof

:st
copy "%~0" "%windir%\system32\"
goto :main



:main

:: Code Go Here!